diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3fdf016 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM node:20-alpine +WORKDIR /app +# Установка зависимостей +RUN npm install -g @upstash/context7-mcp@1.0.8 +# Запуск сервера при старте контейнера +CMD ["context7-mcp"] \ No newline at end of file diff --git a/README.md b/README.md index ad54d15..3921636 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,9 @@ docker compose up -d # Запуск с логами docker compose up +# Перезапуск контейнеров +docker-compose restart + # Остановка сервисов docker compose down diff --git a/backend/app.js b/backend/app.js index eccb954..b670ff8 100644 --- a/backend/app.js +++ b/backend/app.js @@ -9,6 +9,44 @@ const { errorHandler } = require('./middleware/errorHandler'); // const { version } = require('./package.json'); // Закомментировано, так как не используется const pool = require('./db'); // Добавляем импорт pool const aiAssistant = require('./services/ai-assistant'); // Добавляем импорт aiAssistant +const fs = require('fs'); +const path = require('path'); + +// Проверка и создание директорий для хранения данных контрактов +const ensureDirectoriesExist = () => { + const directories = [ + path.join(__dirname, 'contracts-data'), + path.join(__dirname, 'contracts-data/dles'), + path.join(__dirname, 'temp') + ]; + + for (const dir of directories) { + if (!fs.existsSync(dir)) { + try { + logger.info(`Создание директории: ${dir}`); + fs.mkdirSync(dir, { recursive: true }); + logger.info(`Директория успешно создана: ${dir}`); + } catch (error) { + logger.error(`Ошибка при создании директории ${dir}: ${error.message}`); + } + } else { + logger.info(`Директория существует: ${dir}`); + } + + // Проверка прав на запись + try { + const testFile = path.join(dir, '.write-test'); + fs.writeFileSync(testFile, 'test'); + fs.unlinkSync(testFile); + logger.info(`Директория доступна для записи: ${dir}`); + } catch (error) { + logger.error(`Директория ${dir} недоступна для записи: ${error.message}`); + } + } +}; + +// Вызываем функцию проверки директорий при запуске сервера +ensureDirectoriesExist(); // Импорт маршрутов const authRoutes = require('./routes/auth'); @@ -19,6 +57,8 @@ const adminRoutes = require('./routes/admin'); const tokensRouter = require('./routes/tokens'); const isicRoutes = require('./routes/isic'); // Добавленный импорт const geocodingRoutes = require('./routes/geocoding'); // Добавленный импорт +const dleRoutes = require('./routes/dle'); // Добавляем импорт DLE маршрутов +const settingsRoutes = require('./routes/settings'); // Добавляем импорт маршрутов настроек const app = express(); @@ -118,6 +158,8 @@ app.use('/api/admin', adminRoutes); app.use('/api/tokens', tokensRouter); app.use('/api/isic', isicRoutes); // Добавленное использование роута app.use('/api/geocoding', geocodingRoutes); // Добавленное использование роута +app.use('/api/dle', dleRoutes); // Добавляем маршрут DLE +app.use('/api/settings', settingsRoutes); // Добавляем маршрут настроек const nonceStore = new Map(); // или любая другая реализация хранилища nonce diff --git a/backend/artifacts/@openzeppelin/contracts/access/AccessControl.sol/AccessControl.dbg.json b/backend/artifacts/@openzeppelin/contracts/access/AccessControl.sol/AccessControl.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/access/AccessControl.sol/AccessControl.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/access/AccessControl.sol/AccessControl.json b/backend/artifacts/@openzeppelin/contracts/access/AccessControl.sol/AccessControl.json new file mode 100644 index 0000000..68fb783 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/access/AccessControl.sol/AccessControl.json @@ -0,0 +1,236 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "AccessControl", + "sourceName": "@openzeppelin/contracts/access/AccessControl.sol", + "abi": [ + { + "inputs": [], + "name": "AccessControlBadConfirmation", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "neededRole", + "type": "bytes32" + } + ], + "name": "AccessControlUnauthorizedAccount", + "type": "error" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "previousAdminRole", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "newAdminRole", + "type": "bytes32" + } + ], + "name": "RoleAdminChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleGranted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleRevoked", + "type": "event" + }, + { + "inputs": [], + "name": "DEFAULT_ADMIN_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + } + ], + "name": "getRoleAdmin", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasRole", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "callerConfirmation", + "type": "address" + } + ], + "name": "renounceRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/access/IAccessControl.sol/IAccessControl.dbg.json b/backend/artifacts/@openzeppelin/contracts/access/IAccessControl.sol/IAccessControl.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/access/IAccessControl.sol/IAccessControl.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/access/IAccessControl.sol/IAccessControl.json b/backend/artifacts/@openzeppelin/contracts/access/IAccessControl.sol/IAccessControl.json new file mode 100644 index 0000000..cdd4cba --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/access/IAccessControl.sol/IAccessControl.json @@ -0,0 +1,204 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IAccessControl", + "sourceName": "@openzeppelin/contracts/access/IAccessControl.sol", + "abi": [ + { + "inputs": [], + "name": "AccessControlBadConfirmation", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "neededRole", + "type": "bytes32" + } + ], + "name": "AccessControlUnauthorizedAccount", + "type": "error" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "previousAdminRole", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "newAdminRole", + "type": "bytes32" + } + ], + "name": "RoleAdminChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleGranted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleRevoked", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + } + ], + "name": "getRoleAdmin", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasRole", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "callerConfirmation", + "type": "address" + } + ], + "name": "renounceRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/access/Ownable.sol/Ownable.dbg.json b/backend/artifacts/@openzeppelin/contracts/access/Ownable.sol/Ownable.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/access/Ownable.sol/Ownable.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/access/Ownable.sol/Ownable.json b/backend/artifacts/@openzeppelin/contracts/access/Ownable.sol/Ownable.json new file mode 100644 index 0000000..5345edc --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/access/Ownable.sol/Ownable.json @@ -0,0 +1,85 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "Ownable", + "sourceName": "@openzeppelin/contracts/access/Ownable.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "OwnableInvalidOwner", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "OwnableUnauthorizedAccount", + "type": "error" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/Governor.sol/Governor.dbg.json b/backend/artifacts/@openzeppelin/contracts/governance/Governor.sol/Governor.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/Governor.sol/Governor.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/Governor.sol/Governor.json b/backend/artifacts/@openzeppelin/contracts/governance/Governor.sol/Governor.json new file mode 100644 index 0000000..294b0ef --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/Governor.sol/Governor.json @@ -0,0 +1,1372 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "Governor", + "sourceName": "@openzeppelin/contracts/governance/Governor.sol", + "abi": [ + { + "inputs": [], + "name": "FailedCall", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "GovernorAlreadyCastVote", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorAlreadyQueuedProposal", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorDisabledDeposit", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "proposer", + "type": "address" + }, + { + "internalType": "uint256", + "name": "votes", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "threshold", + "type": "uint256" + } + ], + "name": "GovernorInsufficientProposerVotes", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "targets", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "calldatas", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "values", + "type": "uint256" + } + ], + "name": "GovernorInvalidProposalLength", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "GovernorInvalidSignature", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorInvalidVoteParams", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorInvalidVoteType", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "votingPeriod", + "type": "uint256" + } + ], + "name": "GovernorInvalidVotingPeriod", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorNonexistentProposal", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorNotQueuedProposal", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "GovernorOnlyExecutor", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorQueueNotImplemented", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "proposer", + "type": "address" + } + ], + "name": "GovernorRestrictedProposer", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "GovernorUnableToCancel", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "enum IGovernor.ProposalState", + "name": "current", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "expectedStates", + "type": "bytes32" + } + ], + "name": "GovernorUnexpectedProposalState", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "currentNonce", + "type": "uint256" + } + ], + "name": "InvalidAccountNonce", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidShortString", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint8", + "name": "bits", + "type": "uint8" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "SafeCastOverflowedUintDowncast", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "string", + "name": "str", + "type": "string" + } + ], + "name": "StringTooLong", + "type": "error" + }, + { + "anonymous": false, + "inputs": [], + "name": "EIP712DomainChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "ProposalCanceled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "proposer", + "type": "address" + }, + { + "indexed": false, + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "indexed": false, + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "indexed": false, + "internalType": "string[]", + "name": "signatures", + "type": "string[]" + }, + { + "indexed": false, + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "voteStart", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "voteEnd", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "description", + "type": "string" + } + ], + "name": "ProposalCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "ProposalExecuted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "etaSeconds", + "type": "uint256" + } + ], + "name": "ProposalQueued", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "weight", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "reason", + "type": "string" + } + ], + "name": "VoteCast", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "weight", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "VoteCastWithParams", + "type": "event" + }, + { + "inputs": [], + "name": "BALLOT_TYPEHASH", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "CLOCK_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "COUNTING_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "EXTENDED_BALLOT_TYPEHASH", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "cancel", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + } + ], + "name": "castVote", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "castVoteBySig", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + } + ], + "name": "castVoteWithReason", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "castVoteWithReasonAndParams", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "castVoteWithReasonAndParamsBySig", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "clock", + "outputs": [ + { + "internalType": "uint48", + "name": "", + "type": "uint48" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "eip712Domain", + "outputs": [ + { + "internalType": "bytes1", + "name": "fields", + "type": "bytes1" + }, + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "version", + "type": "string" + }, + { + "internalType": "uint256", + "name": "chainId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "verifyingContract", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + }, + { + "internalType": "uint256[]", + "name": "extensions", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "execute", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "getProposalId", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "getVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "getVotesWithParams", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasVoted", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "hashProposal", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "nonces", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155BatchReceived", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC721Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalDeadline", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalEta", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "proposalNeedsQueuing", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalProposer", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalSnapshot", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "proposalThreshold", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "string", + "name": "description", + "type": "string" + } + ], + "name": "propose", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "queue", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "quorum", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "relay", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "state", + "outputs": [ + { + "internalType": "enum IGovernor.ProposalState", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "version", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "votingDelay", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "votingPeriod", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "stateMutability": "payable", + "type": "receive" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/IGovernor.sol/IGovernor.dbg.json b/backend/artifacts/@openzeppelin/contracts/governance/IGovernor.sol/IGovernor.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/IGovernor.sol/IGovernor.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/IGovernor.sol/IGovernor.json b/backend/artifacts/@openzeppelin/contracts/governance/IGovernor.sol/IGovernor.json new file mode 100644 index 0000000..4069ae7 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/IGovernor.sol/IGovernor.json @@ -0,0 +1,1086 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IGovernor", + "sourceName": "@openzeppelin/contracts/governance/IGovernor.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "GovernorAlreadyCastVote", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorAlreadyQueuedProposal", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorDisabledDeposit", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "proposer", + "type": "address" + }, + { + "internalType": "uint256", + "name": "votes", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "threshold", + "type": "uint256" + } + ], + "name": "GovernorInsufficientProposerVotes", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "targets", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "calldatas", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "values", + "type": "uint256" + } + ], + "name": "GovernorInvalidProposalLength", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "GovernorInvalidSignature", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorInvalidVoteParams", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorInvalidVoteType", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "votingPeriod", + "type": "uint256" + } + ], + "name": "GovernorInvalidVotingPeriod", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorNonexistentProposal", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorNotQueuedProposal", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "GovernorOnlyExecutor", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorQueueNotImplemented", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "proposer", + "type": "address" + } + ], + "name": "GovernorRestrictedProposer", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "GovernorUnableToCancel", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "enum IGovernor.ProposalState", + "name": "current", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "expectedStates", + "type": "bytes32" + } + ], + "name": "GovernorUnexpectedProposalState", + "type": "error" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "ProposalCanceled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "proposer", + "type": "address" + }, + { + "indexed": false, + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "indexed": false, + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "indexed": false, + "internalType": "string[]", + "name": "signatures", + "type": "string[]" + }, + { + "indexed": false, + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "voteStart", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "voteEnd", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "description", + "type": "string" + } + ], + "name": "ProposalCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "ProposalExecuted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "etaSeconds", + "type": "uint256" + } + ], + "name": "ProposalQueued", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "weight", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "reason", + "type": "string" + } + ], + "name": "VoteCast", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "weight", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "VoteCastWithParams", + "type": "event" + }, + { + "inputs": [], + "name": "CLOCK_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "COUNTING_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "cancel", + "outputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + } + ], + "name": "castVote", + "outputs": [ + { + "internalType": "uint256", + "name": "balance", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "castVoteBySig", + "outputs": [ + { + "internalType": "uint256", + "name": "balance", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + } + ], + "name": "castVoteWithReason", + "outputs": [ + { + "internalType": "uint256", + "name": "balance", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "castVoteWithReasonAndParams", + "outputs": [ + { + "internalType": "uint256", + "name": "balance", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "castVoteWithReasonAndParamsBySig", + "outputs": [ + { + "internalType": "uint256", + "name": "balance", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "clock", + "outputs": [ + { + "internalType": "uint48", + "name": "", + "type": "uint48" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "execute", + "outputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "getProposalId", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "getVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "getVotesWithParams", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasVoted", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "hashProposal", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalDeadline", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalEta", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalNeedsQueuing", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalProposer", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalSnapshot", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "proposalThreshold", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "string", + "name": "description", + "type": "string" + } + ], + "name": "propose", + "outputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "queue", + "outputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "quorum", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "state", + "outputs": [ + { + "internalType": "enum IGovernor.ProposalState", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "version", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "votingDelay", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "votingPeriod", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/TimelockController.sol/TimelockController.dbg.json b/backend/artifacts/@openzeppelin/contracts/governance/TimelockController.sol/TimelockController.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/TimelockController.sol/TimelockController.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/TimelockController.sol/TimelockController.json b/backend/artifacts/@openzeppelin/contracts/governance/TimelockController.sol/TimelockController.json new file mode 100644 index 0000000..b6ed54b --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/TimelockController.sol/TimelockController.json @@ -0,0 +1,1007 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "TimelockController", + "sourceName": "@openzeppelin/contracts/governance/TimelockController.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "uint256", + "name": "minDelay", + "type": "uint256" + }, + { + "internalType": "address[]", + "name": "proposers", + "type": "address[]" + }, + { + "internalType": "address[]", + "name": "executors", + "type": "address[]" + }, + { + "internalType": "address", + "name": "admin", + "type": "address" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "inputs": [], + "name": "AccessControlBadConfirmation", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "neededRole", + "type": "bytes32" + } + ], + "name": "AccessControlUnauthorizedAccount", + "type": "error" + }, + { + "inputs": [], + "name": "FailedCall", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "delay", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "minDelay", + "type": "uint256" + } + ], + "name": "TimelockInsufficientDelay", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "targets", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "payloads", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "values", + "type": "uint256" + } + ], + "name": "TimelockInvalidOperationLength", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "caller", + "type": "address" + } + ], + "name": "TimelockUnauthorizedCaller", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "predecessorId", + "type": "bytes32" + } + ], + "name": "TimelockUnexecutedPredecessor", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "operationId", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "expectedStates", + "type": "bytes32" + } + ], + "name": "TimelockUnexpectedOperationState", + "type": "error" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "CallExecuted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + } + ], + "name": "CallSalt", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "data", + "type": "bytes" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "predecessor", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "delay", + "type": "uint256" + } + ], + "name": "CallScheduled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + } + ], + "name": "Cancelled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "oldDuration", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newDuration", + "type": "uint256" + } + ], + "name": "MinDelayChange", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "previousAdminRole", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "newAdminRole", + "type": "bytes32" + } + ], + "name": "RoleAdminChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleGranted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleRevoked", + "type": "event" + }, + { + "inputs": [], + "name": "CANCELLER_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "DEFAULT_ADMIN_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "EXECUTOR_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "PROPOSER_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + } + ], + "name": "cancel", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "payload", + "type": "bytes" + }, + { + "internalType": "bytes32", + "name": "predecessor", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + } + ], + "name": "execute", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "payloads", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "predecessor", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + } + ], + "name": "executeBatch", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [], + "name": "getMinDelay", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + } + ], + "name": "getOperationState", + "outputs": [ + { + "internalType": "enum TimelockController.OperationState", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + } + ], + "name": "getRoleAdmin", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + } + ], + "name": "getTimestamp", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasRole", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + }, + { + "internalType": "bytes32", + "name": "predecessor", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + } + ], + "name": "hashOperation", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "payloads", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "predecessor", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + } + ], + "name": "hashOperationBatch", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + } + ], + "name": "isOperation", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + } + ], + "name": "isOperationDone", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + } + ], + "name": "isOperationPending", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + } + ], + "name": "isOperationReady", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155BatchReceived", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC721Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "callerConfirmation", + "type": "address" + } + ], + "name": "renounceRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + }, + { + "internalType": "bytes32", + "name": "predecessor", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "delay", + "type": "uint256" + } + ], + "name": "schedule", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "payloads", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "predecessor", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "delay", + "type": "uint256" + } + ], + "name": "scheduleBatch", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "newDelay", + "type": "uint256" + } + ], + "name": "updateDelay", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "stateMutability": "payable", + "type": "receive" + } + ], + "bytecode": "0x6080604052346200017c5762001a74803803806200001d8162000181565b9283398101906080818303126200017c57805160208201516001600160401b03908181116200017c578462000054918501620001d2565b9360408401519182116200017c57620000766060916200007e938601620001d2565b9301620001bd565b906200008a3062000295565b506001600160a01b039180831662000169575b5060005b8451811015620000f05780620000c984620000c1620000ea94896200026a565b511662000315565b50620000e384620000db83896200026a565b5116620003b7565b5062000244565b620000a1565b50925060005b8251811015620001245780620000e383620001166200011e94876200026a565b511662000454565b620000f6565b7f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d560408580600255815190600082526020820152a16040516115629081620004f28239f35b620001749062000295565b50386200009d565b600080fd5b6040519190601f01601f191682016001600160401b03811183821017620001a757604052565b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036200017c57565b81601f820112156200017c578051916001600160401b038311620001a7578260051b60209283806200020681850162000181565b8097815201928201019283116200017c578301905b8282106200022a575050505090565b8380916200023884620001bd565b8152019101906200021b565b6000198114620002545760010190565b634e487b7160e01b600052601160045260246000fd5b80518210156200027f5760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b031660008181527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205490919060ff166200031157818052816020526040822081835260205260408220600160ff19825416179055339160008051602062001a548339815191528180a4600190565b5090565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260408120549091907fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff16620003b257808352826020526040832082845260205260408320600160ff1982541617905560008051602062001a54833981519152339380a4600190565b505090565b6001600160a01b031660008181527fc3ad33e20b0c56a223ad5104fff154aa010f8715b9c981fd38fdc60a4d1a52fb60205260408120549091907ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7839060ff16620003b257808352826020526040832082845260205260408320600160ff1982541617905560008051602062001a54833981519152339380a4600190565b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d706960205260408120549091907fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e639060ff16620003b257808352826020526040832082845260205260408320600160ff1982541617905560008051602062001a54833981519152339380a460019056fe60406080815260049081361015610020575b5050361561001e57600080fd5b005b600091823560e01c90816301d5062a14610b0c57816301ffc9a714610a9957816307bd026514610a7057838263134008d3146109c65750816313bc9f20146109a6578163150b7a0214610951578163248a9ca3146109275781632ab0f529146109075781632f2ff15d146108dd57816331d50750146108bd57816336568abe14610877578163584b153e1461084e57816364d62353146107e25781637958004c1461079f5781638065657f1461077d5781638f2a0bb0146105e05781638f61f4f5146105a557816391d148541461055f578163a217fddf14610544578163b08e51c014610509578163b1c5f427146104dd578163bc197c8114610457578163c4d252f514610388578163d45c443514610360578163d547741f1461031b578163e38335e5146101d8578163f23a6e6114610180575063f27a0c9203610011573461017c578160031936011261017c576020906002549051908152f35b5080fd5b8284346101d55760a03660031901126101d55761019b610bea565b506101a4610c05565b50608435906001600160401b0382116101d557506020926101c791369101610ce8565b505163f23a6e6160e01b8152f35b80fd5b90506101e336610d5f565b90989495919392969760008051602061150d8339815191528b528a602052858b208b805260205260ff868c2054161561030d575b838314801590610303575b6102d5575061023a610241918a868a878b888f611158565b988961145b565b885b81811061025757896102548a6114c1565b80f35b80808a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b588a8a6102c86102b08f988c6102a9828e6102a38f6102d09f61029e9185916112f3565b611319565b976112f3565b359561132d565b906102bd82828787611406565b8d51948594856113df565b0390a36112ce565b610243565b85516001624fcdef60e01b031981529081019283526020830185905260408301849052918291506060010390fd5b5084831415610222565b61031633610ea9565b610217565b9190503461035c578060031936011261035c5761035891356103536001610340610c05565b9383875286602052862001543390610efc565b610fab565b5080f35b8280fd5b90503461035c57602036600319011261035c5760209282913581526001845220549051908152f35b9190503461035c57602036600319011261035c578135917ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838085528460205282852033865260205260ff83862054161561043c57506103e68361104d565b156104205750829082825260016020528120557fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb708280a280f35b826044925191635ead8eb560e01b835282015260066024820152fd5b604492519163e2517d3f60e01b835233908301526024820152fd5b8284346101d55760a03660031901126101d557610472610bea565b5061047b610c05565b506001600160401b039060443582811161017c5761049c9036908601610dc0565b5060643582811161017c576104b49036908601610dc0565b506084359182116101d557506020926104cf91369101610ce8565b505163bc197c8160e01b8152f35b50503461017c576020906105026104f336610d5f565b96959095949194939293611158565b9051908152f35b50503461017c578160031936011261017c57602090517ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838152f35b50503461017c578160031936011261017c5751908152602090f35b90503461035c578160031936011261035c578160209360ff92610580610c05565b903582528186528282206001600160a01b039091168252855220549151911615158152f35b50503461017c578160031936011261017c57602090517fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc18152f35b9190503461035c5760c036600319011261035c576001600160401b03908235828111610779576106139036908501610d2f565b936024358481116107755761062b9036908301610d2f565b94604435908111610771576106439036908401610d2f565b606493919335906084359760a4359361065b33610e26565b818b14801590610767575b610739575061067c89848489858f8b908e611158565b99610687858c61136e565b8a8c5b8a8382106106d0578e838e838161069f578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a28180808380f35b610732927f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b6102c88f8c88978f92898f8f8f6107209161071a61029e868094610727996112f3565b9a6112f3565b359861132d565b915196879687611296565b8b9061068a565b88516001624fcdef60e01b031981529081018b81526020810184905260408101929092529081906060010390fd5b50828b1415610666565b8780fd5b8680fd5b8480fd5b50503461017c5760209061050261079336610c48565b94939093929192611103565b83833461017c57602036600319011261017c576107bc83356110a6565b905191838210156107cf57602083838152f35b634e487b7160e01b815260218452602490fd5b9190503461035c57602036600319011261035c5781359130330361083857507f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5906002548151908152836020820152a160025580f35b602491519063e2850c5960e01b82523390820152fd5b8284346101d55760203660031901126101d5575061086e6020923561104d565b90519015158152f35b83833461017c578060031936011261017c57610891610c05565b90336001600160a01b038316036108ae5750610358919235610fab565b5163334bd91960e11b81528390fd5b8284346101d55760203660031901126101d5575061086e60209235611020565b9190503461035c578060031936011261035c5761035891356109026001610340610c05565b610f2d565b8284346101d55760203660031901126101d5575061086e6020923561108e565b90503461035c57602036600319011261035c57816020936001923581528085522001549051908152f35b8284346101d55760803660031901126101d55761096c610bea565b50610975610c05565b50606435906001600160401b0382116101d5575060209261099891369101610ce8565b5051630a85bd0160e11b8152f35b8284346101d55760203660031901126101d5575061086e60209235611076565b610254610a4482610a5a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b58610a3b896109fe36610c48565b60008051602061150d8339815191528b9a9697939598929a528a602052828b208b805260205260ff838c20541615610a62575b8985858a8a611103565b998a988961145b565b610a5083838888611406565b51948594856113df565b0390a36114c1565b610a6b33610ea9565b610a31565b50503461017c578160031936011261017c576020905160008051602061150d8339815191528152f35b90503461035c57602036600319011261035c57359063ffffffff60e01b821680920361035c5760209250630271189760e51b8214918215610ade575b50519015158152f35b909150637965db0b60e01b8114908115610afb575b509038610ad5565b6301ffc9a760e01b14905038610af3565b9190503461035c5760c036600319011261035c57610b28610bea565b90836024356044356001600160401b03811161035c577f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca95610b6c91369101610c1b565b95909160643595610bad6084359760a43590610b8733610e26565b610b958a828d8a8989611103565b9a8b97610ba2848a61136e565b8a5196879687611296565b0390a381610bb9578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a23880808380f35b600435906001600160a01b0382168203610c0057565b600080fd5b602435906001600160a01b0382168203610c0057565b9181601f84011215610c00578235916001600160401b038311610c005760208381860195010111610c0057565b60a0600319820112610c00576004356001600160a01b0381168103610c00579160243591604435906001600160401b038211610c0057610c8a91600401610c1b565b90916064359060843590565b90601f801991011681019081106001600160401b03821117610cb757604052565b634e487b7160e01b600052604160045260246000fd5b6001600160401b038111610cb757601f01601f191660200190565b81601f82011215610c0057803590610cff82610ccd565b92610d0d6040519485610c96565b82845260208383010111610c0057816000926020809301838601378301015290565b9181601f84011215610c00578235916001600160401b038311610c00576020808501948460051b010111610c0057565b9060a0600319830112610c00576001600160401b03600435818111610c005783610d8b91600401610d2f565b93909392602435838111610c005782610da691600401610d2f565b93909392604435918211610c0057610c8a91600401610d2f565b9080601f83011215610c00578135906001600160401b038211610cb7578160051b60405193602093610df485840187610c96565b85528380860192820101928311610c00578301905b828210610e17575050505090565b81358152908301908301610e09565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260409020547fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff1615610e8b575050565b604492506040519163e2517d3f60e01b835260048301526024820152fd5b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d7069602052604090205460008051602061150d8339815191529060ff1615610e8b575050565b80600052600060205260406000209160018060a01b0316918260005260205260ff6040600020541615610e8b575050565b9060009180835282602052604083209160018060a01b03169182845260205260ff60408420541615600014610fa657808352826020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b9060009180835282602052604083209160018060a01b03169182845260205260ff604084205416600014610fa65780835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b611029906110a6565b600481101561103757151590565b634e487b7160e01b600052602160045260246000fd5b611056906110a6565b6004811015611037576001811490811561106e575090565b600291501490565b61107f906110a6565b60048110156110375760021490565b611097906110a6565b60048110156110375760031490565b600052600160205260406000205480156000146110c35750600090565b600181036110d15750600390565b4210156110dd57600190565b600290565b908060209392818452848401376000828201840152601f01601f1916010190565b9461113961115294959293604051968795602087019960018060a01b03168a52604087015260a0606087015260c08601916110e2565b91608084015260a083015203601f198101835282610c96565b51902090565b969294909695919560405196602091828901998060c08b0160a08d525260e08a01919060005b81811061126e57505050601f19898203810160408b0152888252976001600160fb1b038111610c00579089969495939897929160051b80928a830137019380888601878703606089015252604085019460408260051b82010195836000925b848410611205575050505050506111529550608084015260a083015203908101835282610c96565b9193969850919398999496603f198282030184528935601e1984360301811215610c005783018681019190356001600160401b038111610c00578036038313610c0057611257889283926001956110e2565b9b0194019401918b98969394919a9997959a6111dd565b90919283359060018060a01b038216809203610c00579081528501928501919060010161117e565b9290936112c4926080959897969860018060a01b03168552602085015260a0604085015260a08401916110e2565b9460608201520152565b60001981146112dd5760010190565b634e487b7160e01b600052601160045260246000fd5b91908110156113035760051b0190565b634e487b7160e01b600052603260045260246000fd5b356001600160a01b0381168103610c005790565b91908110156113035760051b81013590601e1981360301821215610c005701908135916001600160401b038311610c00576020018236038113610c00579190565b9061137882611020565b6113bf576002548082106113a157504201908142116112dd576000526001602052604060002055565b6044925060405191635433660960e01b835260048301526024820152fd5b604051635ead8eb560e01b81526004810183905260016024820152604490fd5b611403949260609260018060a01b03168252602082015281604082015201916110e2565b90565b61145093600093928493826040519384928337810185815203925af13d15611453573d9061143382610ccd565b916114416040519384610c96565b82523d6000602084013e6114e1565b50565b6060906114e1565b61146481611076565b156114a2575080151580611492575b61147a5750565b6024906040519063121534c360e31b82526004820152fd5b5061149c8161108e565b15611473565b60449060405190635ead8eb560e01b8252600482015260046024820152fd5b6114ca81611076565b156114a25760005260016020526001604060002055565b90919061150a57508051156114f857805190602001fd5b60405163d6bda27560e01b8152600490fd5b56fed8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63a2646970667358221220768a1de682affad2b79f94b3dd93b85212b69ace65421db783abb4407f79eaa364736f6c634300081400332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d", + "deployedBytecode": "0x60406080815260049081361015610020575b5050361561001e57600080fd5b005b600091823560e01c90816301d5062a14610b0c57816301ffc9a714610a9957816307bd026514610a7057838263134008d3146109c65750816313bc9f20146109a6578163150b7a0214610951578163248a9ca3146109275781632ab0f529146109075781632f2ff15d146108dd57816331d50750146108bd57816336568abe14610877578163584b153e1461084e57816364d62353146107e25781637958004c1461079f5781638065657f1461077d5781638f2a0bb0146105e05781638f61f4f5146105a557816391d148541461055f578163a217fddf14610544578163b08e51c014610509578163b1c5f427146104dd578163bc197c8114610457578163c4d252f514610388578163d45c443514610360578163d547741f1461031b578163e38335e5146101d8578163f23a6e6114610180575063f27a0c9203610011573461017c578160031936011261017c576020906002549051908152f35b5080fd5b8284346101d55760a03660031901126101d55761019b610bea565b506101a4610c05565b50608435906001600160401b0382116101d557506020926101c791369101610ce8565b505163f23a6e6160e01b8152f35b80fd5b90506101e336610d5f565b90989495919392969760008051602061150d8339815191528b528a602052858b208b805260205260ff868c2054161561030d575b838314801590610303575b6102d5575061023a610241918a868a878b888f611158565b988961145b565b885b81811061025757896102548a6114c1565b80f35b80808a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b588a8a6102c86102b08f988c6102a9828e6102a38f6102d09f61029e9185916112f3565b611319565b976112f3565b359561132d565b906102bd82828787611406565b8d51948594856113df565b0390a36112ce565b610243565b85516001624fcdef60e01b031981529081019283526020830185905260408301849052918291506060010390fd5b5084831415610222565b61031633610ea9565b610217565b9190503461035c578060031936011261035c5761035891356103536001610340610c05565b9383875286602052862001543390610efc565b610fab565b5080f35b8280fd5b90503461035c57602036600319011261035c5760209282913581526001845220549051908152f35b9190503461035c57602036600319011261035c578135917ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838085528460205282852033865260205260ff83862054161561043c57506103e68361104d565b156104205750829082825260016020528120557fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb708280a280f35b826044925191635ead8eb560e01b835282015260066024820152fd5b604492519163e2517d3f60e01b835233908301526024820152fd5b8284346101d55760a03660031901126101d557610472610bea565b5061047b610c05565b506001600160401b039060443582811161017c5761049c9036908601610dc0565b5060643582811161017c576104b49036908601610dc0565b506084359182116101d557506020926104cf91369101610ce8565b505163bc197c8160e01b8152f35b50503461017c576020906105026104f336610d5f565b96959095949194939293611158565b9051908152f35b50503461017c578160031936011261017c57602090517ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838152f35b50503461017c578160031936011261017c5751908152602090f35b90503461035c578160031936011261035c578160209360ff92610580610c05565b903582528186528282206001600160a01b039091168252855220549151911615158152f35b50503461017c578160031936011261017c57602090517fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc18152f35b9190503461035c5760c036600319011261035c576001600160401b03908235828111610779576106139036908501610d2f565b936024358481116107755761062b9036908301610d2f565b94604435908111610771576106439036908401610d2f565b606493919335906084359760a4359361065b33610e26565b818b14801590610767575b610739575061067c89848489858f8b908e611158565b99610687858c61136e565b8a8c5b8a8382106106d0578e838e838161069f578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a28180808380f35b610732927f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b6102c88f8c88978f92898f8f8f6107209161071a61029e868094610727996112f3565b9a6112f3565b359861132d565b915196879687611296565b8b9061068a565b88516001624fcdef60e01b031981529081018b81526020810184905260408101929092529081906060010390fd5b50828b1415610666565b8780fd5b8680fd5b8480fd5b50503461017c5760209061050261079336610c48565b94939093929192611103565b83833461017c57602036600319011261017c576107bc83356110a6565b905191838210156107cf57602083838152f35b634e487b7160e01b815260218452602490fd5b9190503461035c57602036600319011261035c5781359130330361083857507f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5906002548151908152836020820152a160025580f35b602491519063e2850c5960e01b82523390820152fd5b8284346101d55760203660031901126101d5575061086e6020923561104d565b90519015158152f35b83833461017c578060031936011261017c57610891610c05565b90336001600160a01b038316036108ae5750610358919235610fab565b5163334bd91960e11b81528390fd5b8284346101d55760203660031901126101d5575061086e60209235611020565b9190503461035c578060031936011261035c5761035891356109026001610340610c05565b610f2d565b8284346101d55760203660031901126101d5575061086e6020923561108e565b90503461035c57602036600319011261035c57816020936001923581528085522001549051908152f35b8284346101d55760803660031901126101d55761096c610bea565b50610975610c05565b50606435906001600160401b0382116101d5575060209261099891369101610ce8565b5051630a85bd0160e11b8152f35b8284346101d55760203660031901126101d5575061086e60209235611076565b610254610a4482610a5a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b58610a3b896109fe36610c48565b60008051602061150d8339815191528b9a9697939598929a528a602052828b208b805260205260ff838c20541615610a62575b8985858a8a611103565b998a988961145b565b610a5083838888611406565b51948594856113df565b0390a36114c1565b610a6b33610ea9565b610a31565b50503461017c578160031936011261017c576020905160008051602061150d8339815191528152f35b90503461035c57602036600319011261035c57359063ffffffff60e01b821680920361035c5760209250630271189760e51b8214918215610ade575b50519015158152f35b909150637965db0b60e01b8114908115610afb575b509038610ad5565b6301ffc9a760e01b14905038610af3565b9190503461035c5760c036600319011261035c57610b28610bea565b90836024356044356001600160401b03811161035c577f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca95610b6c91369101610c1b565b95909160643595610bad6084359760a43590610b8733610e26565b610b958a828d8a8989611103565b9a8b97610ba2848a61136e565b8a5196879687611296565b0390a381610bb9578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a23880808380f35b600435906001600160a01b0382168203610c0057565b600080fd5b602435906001600160a01b0382168203610c0057565b9181601f84011215610c00578235916001600160401b038311610c005760208381860195010111610c0057565b60a0600319820112610c00576004356001600160a01b0381168103610c00579160243591604435906001600160401b038211610c0057610c8a91600401610c1b565b90916064359060843590565b90601f801991011681019081106001600160401b03821117610cb757604052565b634e487b7160e01b600052604160045260246000fd5b6001600160401b038111610cb757601f01601f191660200190565b81601f82011215610c0057803590610cff82610ccd565b92610d0d6040519485610c96565b82845260208383010111610c0057816000926020809301838601378301015290565b9181601f84011215610c00578235916001600160401b038311610c00576020808501948460051b010111610c0057565b9060a0600319830112610c00576001600160401b03600435818111610c005783610d8b91600401610d2f565b93909392602435838111610c005782610da691600401610d2f565b93909392604435918211610c0057610c8a91600401610d2f565b9080601f83011215610c00578135906001600160401b038211610cb7578160051b60405193602093610df485840187610c96565b85528380860192820101928311610c00578301905b828210610e17575050505090565b81358152908301908301610e09565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260409020547fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff1615610e8b575050565b604492506040519163e2517d3f60e01b835260048301526024820152fd5b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d7069602052604090205460008051602061150d8339815191529060ff1615610e8b575050565b80600052600060205260406000209160018060a01b0316918260005260205260ff6040600020541615610e8b575050565b9060009180835282602052604083209160018060a01b03169182845260205260ff60408420541615600014610fa657808352826020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b9060009180835282602052604083209160018060a01b03169182845260205260ff604084205416600014610fa65780835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b611029906110a6565b600481101561103757151590565b634e487b7160e01b600052602160045260246000fd5b611056906110a6565b6004811015611037576001811490811561106e575090565b600291501490565b61107f906110a6565b60048110156110375760021490565b611097906110a6565b60048110156110375760031490565b600052600160205260406000205480156000146110c35750600090565b600181036110d15750600390565b4210156110dd57600190565b600290565b908060209392818452848401376000828201840152601f01601f1916010190565b9461113961115294959293604051968795602087019960018060a01b03168a52604087015260a0606087015260c08601916110e2565b91608084015260a083015203601f198101835282610c96565b51902090565b969294909695919560405196602091828901998060c08b0160a08d525260e08a01919060005b81811061126e57505050601f19898203810160408b0152888252976001600160fb1b038111610c00579089969495939897929160051b80928a830137019380888601878703606089015252604085019460408260051b82010195836000925b848410611205575050505050506111529550608084015260a083015203908101835282610c96565b9193969850919398999496603f198282030184528935601e1984360301811215610c005783018681019190356001600160401b038111610c00578036038313610c0057611257889283926001956110e2565b9b0194019401918b98969394919a9997959a6111dd565b90919283359060018060a01b038216809203610c00579081528501928501919060010161117e565b9290936112c4926080959897969860018060a01b03168552602085015260a0604085015260a08401916110e2565b9460608201520152565b60001981146112dd5760010190565b634e487b7160e01b600052601160045260246000fd5b91908110156113035760051b0190565b634e487b7160e01b600052603260045260246000fd5b356001600160a01b0381168103610c005790565b91908110156113035760051b81013590601e1981360301821215610c005701908135916001600160401b038311610c00576020018236038113610c00579190565b9061137882611020565b6113bf576002548082106113a157504201908142116112dd576000526001602052604060002055565b6044925060405191635433660960e01b835260048301526024820152fd5b604051635ead8eb560e01b81526004810183905260016024820152604490fd5b611403949260609260018060a01b03168252602082015281604082015201916110e2565b90565b61145093600093928493826040519384928337810185815203925af13d15611453573d9061143382610ccd565b916114416040519384610c96565b82523d6000602084013e6114e1565b50565b6060906114e1565b61146481611076565b156114a2575080151580611492575b61147a5750565b6024906040519063121534c360e31b82526004820152fd5b5061149c8161108e565b15611473565b60449060405190635ead8eb560e01b8252600482015260046024820152fd5b6114ca81611076565b156114a25760005260016020526001604060002055565b90919061150a57508051156114f857805190602001fd5b60405163d6bda27560e01b8152600490fd5b56fed8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63a2646970667358221220768a1de682affad2b79f94b3dd93b85212b69ace65421db783abb4407f79eaa364736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol/GovernorCountingSimple.dbg.json b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol/GovernorCountingSimple.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol/GovernorCountingSimple.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol/GovernorCountingSimple.json b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol/GovernorCountingSimple.json new file mode 100644 index 0000000..35b2475 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol/GovernorCountingSimple.json @@ -0,0 +1,1401 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "GovernorCountingSimple", + "sourceName": "@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol", + "abi": [ + { + "inputs": [], + "name": "FailedCall", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "GovernorAlreadyCastVote", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorAlreadyQueuedProposal", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorDisabledDeposit", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "proposer", + "type": "address" + }, + { + "internalType": "uint256", + "name": "votes", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "threshold", + "type": "uint256" + } + ], + "name": "GovernorInsufficientProposerVotes", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "targets", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "calldatas", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "values", + "type": "uint256" + } + ], + "name": "GovernorInvalidProposalLength", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "GovernorInvalidSignature", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorInvalidVoteParams", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorInvalidVoteType", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "votingPeriod", + "type": "uint256" + } + ], + "name": "GovernorInvalidVotingPeriod", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorNonexistentProposal", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorNotQueuedProposal", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "GovernorOnlyExecutor", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorQueueNotImplemented", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "proposer", + "type": "address" + } + ], + "name": "GovernorRestrictedProposer", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "GovernorUnableToCancel", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "enum IGovernor.ProposalState", + "name": "current", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "expectedStates", + "type": "bytes32" + } + ], + "name": "GovernorUnexpectedProposalState", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "currentNonce", + "type": "uint256" + } + ], + "name": "InvalidAccountNonce", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidShortString", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint8", + "name": "bits", + "type": "uint8" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "SafeCastOverflowedUintDowncast", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "string", + "name": "str", + "type": "string" + } + ], + "name": "StringTooLong", + "type": "error" + }, + { + "anonymous": false, + "inputs": [], + "name": "EIP712DomainChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "ProposalCanceled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "proposer", + "type": "address" + }, + { + "indexed": false, + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "indexed": false, + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "indexed": false, + "internalType": "string[]", + "name": "signatures", + "type": "string[]" + }, + { + "indexed": false, + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "voteStart", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "voteEnd", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "description", + "type": "string" + } + ], + "name": "ProposalCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "ProposalExecuted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "etaSeconds", + "type": "uint256" + } + ], + "name": "ProposalQueued", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "weight", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "reason", + "type": "string" + } + ], + "name": "VoteCast", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "weight", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "VoteCastWithParams", + "type": "event" + }, + { + "inputs": [], + "name": "BALLOT_TYPEHASH", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "CLOCK_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "COUNTING_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [], + "name": "EXTENDED_BALLOT_TYPEHASH", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "cancel", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + } + ], + "name": "castVote", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "castVoteBySig", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + } + ], + "name": "castVoteWithReason", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "castVoteWithReasonAndParams", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "castVoteWithReasonAndParamsBySig", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "clock", + "outputs": [ + { + "internalType": "uint48", + "name": "", + "type": "uint48" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "eip712Domain", + "outputs": [ + { + "internalType": "bytes1", + "name": "fields", + "type": "bytes1" + }, + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "version", + "type": "string" + }, + { + "internalType": "uint256", + "name": "chainId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "verifyingContract", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + }, + { + "internalType": "uint256[]", + "name": "extensions", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "execute", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "getProposalId", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "getVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "getVotesWithParams", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasVoted", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "hashProposal", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "nonces", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155BatchReceived", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC721Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalDeadline", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalEta", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "proposalNeedsQueuing", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalProposer", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalSnapshot", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "proposalThreshold", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "againstVotes", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "forVotes", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "abstainVotes", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "string", + "name": "description", + "type": "string" + } + ], + "name": "propose", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "queue", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "quorum", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "relay", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "state", + "outputs": [ + { + "internalType": "enum IGovernor.ProposalState", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "version", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "votingDelay", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "votingPeriod", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "stateMutability": "payable", + "type": "receive" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorSettings.sol/GovernorSettings.dbg.json b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorSettings.sol/GovernorSettings.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorSettings.sol/GovernorSettings.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorSettings.sol/GovernorSettings.json b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorSettings.sol/GovernorSettings.json new file mode 100644 index 0000000..0df367b --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorSettings.sol/GovernorSettings.json @@ -0,0 +1,1468 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "GovernorSettings", + "sourceName": "@openzeppelin/contracts/governance/extensions/GovernorSettings.sol", + "abi": [ + { + "inputs": [], + "name": "FailedCall", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "GovernorAlreadyCastVote", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorAlreadyQueuedProposal", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorDisabledDeposit", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "proposer", + "type": "address" + }, + { + "internalType": "uint256", + "name": "votes", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "threshold", + "type": "uint256" + } + ], + "name": "GovernorInsufficientProposerVotes", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "targets", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "calldatas", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "values", + "type": "uint256" + } + ], + "name": "GovernorInvalidProposalLength", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "GovernorInvalidSignature", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorInvalidVoteParams", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorInvalidVoteType", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "votingPeriod", + "type": "uint256" + } + ], + "name": "GovernorInvalidVotingPeriod", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorNonexistentProposal", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorNotQueuedProposal", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "GovernorOnlyExecutor", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorQueueNotImplemented", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "proposer", + "type": "address" + } + ], + "name": "GovernorRestrictedProposer", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "GovernorUnableToCancel", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "enum IGovernor.ProposalState", + "name": "current", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "expectedStates", + "type": "bytes32" + } + ], + "name": "GovernorUnexpectedProposalState", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "currentNonce", + "type": "uint256" + } + ], + "name": "InvalidAccountNonce", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidShortString", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint8", + "name": "bits", + "type": "uint8" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "SafeCastOverflowedUintDowncast", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "string", + "name": "str", + "type": "string" + } + ], + "name": "StringTooLong", + "type": "error" + }, + { + "anonymous": false, + "inputs": [], + "name": "EIP712DomainChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "ProposalCanceled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "proposer", + "type": "address" + }, + { + "indexed": false, + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "indexed": false, + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "indexed": false, + "internalType": "string[]", + "name": "signatures", + "type": "string[]" + }, + { + "indexed": false, + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "voteStart", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "voteEnd", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "description", + "type": "string" + } + ], + "name": "ProposalCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "ProposalExecuted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "etaSeconds", + "type": "uint256" + } + ], + "name": "ProposalQueued", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "oldProposalThreshold", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newProposalThreshold", + "type": "uint256" + } + ], + "name": "ProposalThresholdSet", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "weight", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "reason", + "type": "string" + } + ], + "name": "VoteCast", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "weight", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "VoteCastWithParams", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "oldVotingDelay", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newVotingDelay", + "type": "uint256" + } + ], + "name": "VotingDelaySet", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "oldVotingPeriod", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newVotingPeriod", + "type": "uint256" + } + ], + "name": "VotingPeriodSet", + "type": "event" + }, + { + "inputs": [], + "name": "BALLOT_TYPEHASH", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "CLOCK_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "COUNTING_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "EXTENDED_BALLOT_TYPEHASH", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "cancel", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + } + ], + "name": "castVote", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "castVoteBySig", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + } + ], + "name": "castVoteWithReason", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "castVoteWithReasonAndParams", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "castVoteWithReasonAndParamsBySig", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "clock", + "outputs": [ + { + "internalType": "uint48", + "name": "", + "type": "uint48" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "eip712Domain", + "outputs": [ + { + "internalType": "bytes1", + "name": "fields", + "type": "bytes1" + }, + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "version", + "type": "string" + }, + { + "internalType": "uint256", + "name": "chainId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "verifyingContract", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + }, + { + "internalType": "uint256[]", + "name": "extensions", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "execute", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "getProposalId", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "getVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "getVotesWithParams", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasVoted", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "hashProposal", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "nonces", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155BatchReceived", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC721Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalDeadline", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalEta", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "proposalNeedsQueuing", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalProposer", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalSnapshot", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "proposalThreshold", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "string", + "name": "description", + "type": "string" + } + ], + "name": "propose", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "queue", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "quorum", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "relay", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "newProposalThreshold", + "type": "uint256" + } + ], + "name": "setProposalThreshold", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint48", + "name": "newVotingDelay", + "type": "uint48" + } + ], + "name": "setVotingDelay", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32", + "name": "newVotingPeriod", + "type": "uint32" + } + ], + "name": "setVotingPeriod", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "state", + "outputs": [ + { + "internalType": "enum IGovernor.ProposalState", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "version", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "votingDelay", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "votingPeriod", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "stateMutability": "payable", + "type": "receive" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol/GovernorTimelockControl.dbg.json b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol/GovernorTimelockControl.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol/GovernorTimelockControl.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol/GovernorTimelockControl.json b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol/GovernorTimelockControl.json new file mode 100644 index 0000000..5411b48 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol/GovernorTimelockControl.json @@ -0,0 +1,1417 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "GovernorTimelockControl", + "sourceName": "@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol", + "abi": [ + { + "inputs": [], + "name": "FailedCall", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "GovernorAlreadyCastVote", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorAlreadyQueuedProposal", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorDisabledDeposit", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "proposer", + "type": "address" + }, + { + "internalType": "uint256", + "name": "votes", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "threshold", + "type": "uint256" + } + ], + "name": "GovernorInsufficientProposerVotes", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "targets", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "calldatas", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "values", + "type": "uint256" + } + ], + "name": "GovernorInvalidProposalLength", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "GovernorInvalidSignature", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorInvalidVoteParams", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorInvalidVoteType", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "votingPeriod", + "type": "uint256" + } + ], + "name": "GovernorInvalidVotingPeriod", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorNonexistentProposal", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorNotQueuedProposal", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "GovernorOnlyExecutor", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorQueueNotImplemented", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "proposer", + "type": "address" + } + ], + "name": "GovernorRestrictedProposer", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "GovernorUnableToCancel", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "enum IGovernor.ProposalState", + "name": "current", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "expectedStates", + "type": "bytes32" + } + ], + "name": "GovernorUnexpectedProposalState", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "currentNonce", + "type": "uint256" + } + ], + "name": "InvalidAccountNonce", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidShortString", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint8", + "name": "bits", + "type": "uint8" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "SafeCastOverflowedUintDowncast", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "string", + "name": "str", + "type": "string" + } + ], + "name": "StringTooLong", + "type": "error" + }, + { + "anonymous": false, + "inputs": [], + "name": "EIP712DomainChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "ProposalCanceled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "proposer", + "type": "address" + }, + { + "indexed": false, + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "indexed": false, + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "indexed": false, + "internalType": "string[]", + "name": "signatures", + "type": "string[]" + }, + { + "indexed": false, + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "voteStart", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "voteEnd", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "description", + "type": "string" + } + ], + "name": "ProposalCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "ProposalExecuted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "etaSeconds", + "type": "uint256" + } + ], + "name": "ProposalQueued", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "oldTimelock", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "newTimelock", + "type": "address" + } + ], + "name": "TimelockChange", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "weight", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "reason", + "type": "string" + } + ], + "name": "VoteCast", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "weight", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "VoteCastWithParams", + "type": "event" + }, + { + "inputs": [], + "name": "BALLOT_TYPEHASH", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "CLOCK_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "COUNTING_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "EXTENDED_BALLOT_TYPEHASH", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "cancel", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + } + ], + "name": "castVote", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "castVoteBySig", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + } + ], + "name": "castVoteWithReason", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "castVoteWithReasonAndParams", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "castVoteWithReasonAndParamsBySig", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "clock", + "outputs": [ + { + "internalType": "uint48", + "name": "", + "type": "uint48" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "eip712Domain", + "outputs": [ + { + "internalType": "bytes1", + "name": "fields", + "type": "bytes1" + }, + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "version", + "type": "string" + }, + { + "internalType": "uint256", + "name": "chainId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "verifyingContract", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + }, + { + "internalType": "uint256[]", + "name": "extensions", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "execute", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "getProposalId", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "getVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "getVotesWithParams", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasVoted", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "hashProposal", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "nonces", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155BatchReceived", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC721Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalDeadline", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalEta", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "proposalNeedsQueuing", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalProposer", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalSnapshot", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "proposalThreshold", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "string", + "name": "description", + "type": "string" + } + ], + "name": "propose", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "queue", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "quorum", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "relay", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "state", + "outputs": [ + { + "internalType": "enum IGovernor.ProposalState", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "timelock", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract TimelockController", + "name": "newTimelock", + "type": "address" + } + ], + "name": "updateTimelock", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "version", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "votingDelay", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "votingPeriod", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "stateMutability": "payable", + "type": "receive" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorVotes.sol/GovernorVotes.dbg.json b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorVotes.sol/GovernorVotes.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorVotes.sol/GovernorVotes.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorVotes.sol/GovernorVotes.json b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorVotes.sol/GovernorVotes.json new file mode 100644 index 0000000..5d7fa54 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorVotes.sol/GovernorVotes.json @@ -0,0 +1,1385 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "GovernorVotes", + "sourceName": "@openzeppelin/contracts/governance/extensions/GovernorVotes.sol", + "abi": [ + { + "inputs": [], + "name": "FailedCall", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "GovernorAlreadyCastVote", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorAlreadyQueuedProposal", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorDisabledDeposit", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "proposer", + "type": "address" + }, + { + "internalType": "uint256", + "name": "votes", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "threshold", + "type": "uint256" + } + ], + "name": "GovernorInsufficientProposerVotes", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "targets", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "calldatas", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "values", + "type": "uint256" + } + ], + "name": "GovernorInvalidProposalLength", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "GovernorInvalidSignature", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorInvalidVoteParams", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorInvalidVoteType", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "votingPeriod", + "type": "uint256" + } + ], + "name": "GovernorInvalidVotingPeriod", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorNonexistentProposal", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorNotQueuedProposal", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "GovernorOnlyExecutor", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorQueueNotImplemented", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "proposer", + "type": "address" + } + ], + "name": "GovernorRestrictedProposer", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "GovernorUnableToCancel", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "enum IGovernor.ProposalState", + "name": "current", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "expectedStates", + "type": "bytes32" + } + ], + "name": "GovernorUnexpectedProposalState", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "currentNonce", + "type": "uint256" + } + ], + "name": "InvalidAccountNonce", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidShortString", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint8", + "name": "bits", + "type": "uint8" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "SafeCastOverflowedUintDowncast", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "string", + "name": "str", + "type": "string" + } + ], + "name": "StringTooLong", + "type": "error" + }, + { + "anonymous": false, + "inputs": [], + "name": "EIP712DomainChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "ProposalCanceled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "proposer", + "type": "address" + }, + { + "indexed": false, + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "indexed": false, + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "indexed": false, + "internalType": "string[]", + "name": "signatures", + "type": "string[]" + }, + { + "indexed": false, + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "voteStart", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "voteEnd", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "description", + "type": "string" + } + ], + "name": "ProposalCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "ProposalExecuted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "etaSeconds", + "type": "uint256" + } + ], + "name": "ProposalQueued", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "weight", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "reason", + "type": "string" + } + ], + "name": "VoteCast", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "weight", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "VoteCastWithParams", + "type": "event" + }, + { + "inputs": [], + "name": "BALLOT_TYPEHASH", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "CLOCK_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "COUNTING_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "EXTENDED_BALLOT_TYPEHASH", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "cancel", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + } + ], + "name": "castVote", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "castVoteBySig", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + } + ], + "name": "castVoteWithReason", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "castVoteWithReasonAndParams", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "castVoteWithReasonAndParamsBySig", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "clock", + "outputs": [ + { + "internalType": "uint48", + "name": "", + "type": "uint48" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "eip712Domain", + "outputs": [ + { + "internalType": "bytes1", + "name": "fields", + "type": "bytes1" + }, + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "version", + "type": "string" + }, + { + "internalType": "uint256", + "name": "chainId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "verifyingContract", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + }, + { + "internalType": "uint256[]", + "name": "extensions", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "execute", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "getProposalId", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "getVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "getVotesWithParams", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasVoted", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "hashProposal", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "nonces", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155BatchReceived", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC721Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalDeadline", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalEta", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "proposalNeedsQueuing", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalProposer", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalSnapshot", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "proposalThreshold", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "string", + "name": "description", + "type": "string" + } + ], + "name": "propose", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "queue", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "quorum", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "relay", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "state", + "outputs": [ + { + "internalType": "enum IGovernor.ProposalState", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "token", + "outputs": [ + { + "internalType": "contract IERC5805", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "version", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "votingDelay", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "votingPeriod", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "stateMutability": "payable", + "type": "receive" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol/GovernorVotesQuorumFraction.dbg.json b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol/GovernorVotesQuorumFraction.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol/GovernorVotesQuorumFraction.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol/GovernorVotesQuorumFraction.json b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol/GovernorVotesQuorumFraction.json new file mode 100644 index 0000000..15acc67 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol/GovernorVotesQuorumFraction.json @@ -0,0 +1,1483 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "GovernorVotesQuorumFraction", + "sourceName": "@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol", + "abi": [ + { + "inputs": [], + "name": "CheckpointUnorderedInsertion", + "type": "error" + }, + { + "inputs": [], + "name": "FailedCall", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "GovernorAlreadyCastVote", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorAlreadyQueuedProposal", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorDisabledDeposit", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "proposer", + "type": "address" + }, + { + "internalType": "uint256", + "name": "votes", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "threshold", + "type": "uint256" + } + ], + "name": "GovernorInsufficientProposerVotes", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "targets", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "calldatas", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "values", + "type": "uint256" + } + ], + "name": "GovernorInvalidProposalLength", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "quorumNumerator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "quorumDenominator", + "type": "uint256" + } + ], + "name": "GovernorInvalidQuorumFraction", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "GovernorInvalidSignature", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorInvalidVoteParams", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorInvalidVoteType", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "votingPeriod", + "type": "uint256" + } + ], + "name": "GovernorInvalidVotingPeriod", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorNonexistentProposal", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorNotQueuedProposal", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "GovernorOnlyExecutor", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorQueueNotImplemented", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "proposer", + "type": "address" + } + ], + "name": "GovernorRestrictedProposer", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "GovernorUnableToCancel", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "enum IGovernor.ProposalState", + "name": "current", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "expectedStates", + "type": "bytes32" + } + ], + "name": "GovernorUnexpectedProposalState", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "currentNonce", + "type": "uint256" + } + ], + "name": "InvalidAccountNonce", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidShortString", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint8", + "name": "bits", + "type": "uint8" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "SafeCastOverflowedUintDowncast", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "string", + "name": "str", + "type": "string" + } + ], + "name": "StringTooLong", + "type": "error" + }, + { + "anonymous": false, + "inputs": [], + "name": "EIP712DomainChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "ProposalCanceled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "proposer", + "type": "address" + }, + { + "indexed": false, + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "indexed": false, + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "indexed": false, + "internalType": "string[]", + "name": "signatures", + "type": "string[]" + }, + { + "indexed": false, + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "voteStart", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "voteEnd", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "description", + "type": "string" + } + ], + "name": "ProposalCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "ProposalExecuted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "etaSeconds", + "type": "uint256" + } + ], + "name": "ProposalQueued", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "oldQuorumNumerator", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newQuorumNumerator", + "type": "uint256" + } + ], + "name": "QuorumNumeratorUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "weight", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "reason", + "type": "string" + } + ], + "name": "VoteCast", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "weight", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "VoteCastWithParams", + "type": "event" + }, + { + "inputs": [], + "name": "BALLOT_TYPEHASH", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "CLOCK_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "COUNTING_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "EXTENDED_BALLOT_TYPEHASH", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "cancel", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + } + ], + "name": "castVote", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "castVoteBySig", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + } + ], + "name": "castVoteWithReason", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "castVoteWithReasonAndParams", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "castVoteWithReasonAndParamsBySig", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "clock", + "outputs": [ + { + "internalType": "uint48", + "name": "", + "type": "uint48" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "eip712Domain", + "outputs": [ + { + "internalType": "bytes1", + "name": "fields", + "type": "bytes1" + }, + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "version", + "type": "string" + }, + { + "internalType": "uint256", + "name": "chainId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "verifyingContract", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + }, + { + "internalType": "uint256[]", + "name": "extensions", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "execute", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "getProposalId", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "getVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "getVotesWithParams", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasVoted", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "hashProposal", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "nonces", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155BatchReceived", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC721Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalDeadline", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalEta", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "name": "proposalNeedsQueuing", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalProposer", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalSnapshot", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "proposalThreshold", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "string", + "name": "description", + "type": "string" + } + ], + "name": "propose", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "queue", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "quorum", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "quorumDenominator", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "quorumNumerator", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "quorumNumerator", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "relay", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "state", + "outputs": [ + { + "internalType": "enum IGovernor.ProposalState", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "token", + "outputs": [ + { + "internalType": "contract IERC5805", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "newQuorumNumerator", + "type": "uint256" + } + ], + "name": "updateQuorumNumerator", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "version", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "votingDelay", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "votingPeriod", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "stateMutability": "payable", + "type": "receive" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/utils/IVotes.sol/IVotes.dbg.json b/backend/artifacts/@openzeppelin/contracts/governance/utils/IVotes.sol/IVotes.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/utils/IVotes.sol/IVotes.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/utils/IVotes.sol/IVotes.json b/backend/artifacts/@openzeppelin/contracts/governance/utils/IVotes.sol/IVotes.json new file mode 100644 index 0000000..c092026 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/utils/IVotes.sol/IVotes.json @@ -0,0 +1,204 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IVotes", + "sourceName": "@openzeppelin/contracts/governance/utils/IVotes.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "uint256", + "name": "expiry", + "type": "uint256" + } + ], + "name": "VotesExpiredSignature", + "type": "error" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "delegator", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "fromDelegate", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "toDelegate", + "type": "address" + } + ], + "name": "DelegateChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "delegate", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "previousVotes", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newVotes", + "type": "uint256" + } + ], + "name": "DelegateVotesChanged", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "delegatee", + "type": "address" + } + ], + "name": "delegate", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "delegatee", + "type": "address" + }, + { + "internalType": "uint256", + "name": "nonce", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "expiry", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "v", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "r", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "delegateBySig", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "delegates", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "getPastTotalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "getPastVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "getVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/utils/Votes.sol/Votes.dbg.json b/backend/artifacts/@openzeppelin/contracts/governance/utils/Votes.sol/Votes.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/utils/Votes.sol/Votes.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/governance/utils/Votes.sol/Votes.json b/backend/artifacts/@openzeppelin/contracts/governance/utils/Votes.sol/Votes.json new file mode 100644 index 0000000..d05414b --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/governance/utils/Votes.sol/Votes.json @@ -0,0 +1,399 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "Votes", + "sourceName": "@openzeppelin/contracts/governance/utils/Votes.sol", + "abi": [ + { + "inputs": [], + "name": "CheckpointUnorderedInsertion", + "type": "error" + }, + { + "inputs": [], + "name": "ECDSAInvalidSignature", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "length", + "type": "uint256" + } + ], + "name": "ECDSAInvalidSignatureLength", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "ECDSAInvalidSignatureS", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + }, + { + "internalType": "uint48", + "name": "clock", + "type": "uint48" + } + ], + "name": "ERC5805FutureLookup", + "type": "error" + }, + { + "inputs": [], + "name": "ERC6372InconsistentClock", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "currentNonce", + "type": "uint256" + } + ], + "name": "InvalidAccountNonce", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidShortString", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint8", + "name": "bits", + "type": "uint8" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "SafeCastOverflowedUintDowncast", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "string", + "name": "str", + "type": "string" + } + ], + "name": "StringTooLong", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "expiry", + "type": "uint256" + } + ], + "name": "VotesExpiredSignature", + "type": "error" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "delegator", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "fromDelegate", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "toDelegate", + "type": "address" + } + ], + "name": "DelegateChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "delegate", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "previousVotes", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newVotes", + "type": "uint256" + } + ], + "name": "DelegateVotesChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [], + "name": "EIP712DomainChanged", + "type": "event" + }, + { + "inputs": [], + "name": "CLOCK_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "clock", + "outputs": [ + { + "internalType": "uint48", + "name": "", + "type": "uint48" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "delegatee", + "type": "address" + } + ], + "name": "delegate", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "delegatee", + "type": "address" + }, + { + "internalType": "uint256", + "name": "nonce", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "expiry", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "v", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "r", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "delegateBySig", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "delegates", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "eip712Domain", + "outputs": [ + { + "internalType": "bytes1", + "name": "fields", + "type": "bytes1" + }, + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "version", + "type": "string" + }, + { + "internalType": "uint256", + "name": "chainId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "verifyingContract", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + }, + { + "internalType": "uint256[]", + "name": "extensions", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "getPastTotalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "getPastVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "getVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "nonces", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/interfaces/IERC1271.sol/IERC1271.dbg.json b/backend/artifacts/@openzeppelin/contracts/interfaces/IERC1271.sol/IERC1271.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/interfaces/IERC1271.sol/IERC1271.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/interfaces/IERC1271.sol/IERC1271.json b/backend/artifacts/@openzeppelin/contracts/interfaces/IERC1271.sol/IERC1271.json new file mode 100644 index 0000000..e8fc09c --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/interfaces/IERC1271.sol/IERC1271.json @@ -0,0 +1,35 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IERC1271", + "sourceName": "@openzeppelin/contracts/interfaces/IERC1271.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "bytes32", + "name": "hash", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "isValidSignature", + "outputs": [ + { + "internalType": "bytes4", + "name": "magicValue", + "type": "bytes4" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/interfaces/IERC5267.sol/IERC5267.dbg.json b/backend/artifacts/@openzeppelin/contracts/interfaces/IERC5267.sol/IERC5267.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/interfaces/IERC5267.sol/IERC5267.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/interfaces/IERC5267.sol/IERC5267.json b/backend/artifacts/@openzeppelin/contracts/interfaces/IERC5267.sol/IERC5267.json new file mode 100644 index 0000000..17aa1cd --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/interfaces/IERC5267.sol/IERC5267.json @@ -0,0 +1,60 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IERC5267", + "sourceName": "@openzeppelin/contracts/interfaces/IERC5267.sol", + "abi": [ + { + "anonymous": false, + "inputs": [], + "name": "EIP712DomainChanged", + "type": "event" + }, + { + "inputs": [], + "name": "eip712Domain", + "outputs": [ + { + "internalType": "bytes1", + "name": "fields", + "type": "bytes1" + }, + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "version", + "type": "string" + }, + { + "internalType": "uint256", + "name": "chainId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "verifyingContract", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + }, + { + "internalType": "uint256[]", + "name": "extensions", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/interfaces/IERC5805.sol/IERC5805.dbg.json b/backend/artifacts/@openzeppelin/contracts/interfaces/IERC5805.sol/IERC5805.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/interfaces/IERC5805.sol/IERC5805.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/interfaces/IERC5805.sol/IERC5805.json b/backend/artifacts/@openzeppelin/contracts/interfaces/IERC5805.sol/IERC5805.json new file mode 100644 index 0000000..9da52cf --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/interfaces/IERC5805.sol/IERC5805.json @@ -0,0 +1,230 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IERC5805", + "sourceName": "@openzeppelin/contracts/interfaces/IERC5805.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "uint256", + "name": "expiry", + "type": "uint256" + } + ], + "name": "VotesExpiredSignature", + "type": "error" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "delegator", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "fromDelegate", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "toDelegate", + "type": "address" + } + ], + "name": "DelegateChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "delegate", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "previousVotes", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newVotes", + "type": "uint256" + } + ], + "name": "DelegateVotesChanged", + "type": "event" + }, + { + "inputs": [], + "name": "CLOCK_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "clock", + "outputs": [ + { + "internalType": "uint48", + "name": "", + "type": "uint48" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "delegatee", + "type": "address" + } + ], + "name": "delegate", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "delegatee", + "type": "address" + }, + { + "internalType": "uint256", + "name": "nonce", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "expiry", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "v", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "r", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "delegateBySig", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "delegates", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "getPastTotalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "getPastVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "getVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/interfaces/IERC6372.sol/IERC6372.dbg.json b/backend/artifacts/@openzeppelin/contracts/interfaces/IERC6372.sol/IERC6372.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/interfaces/IERC6372.sol/IERC6372.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/interfaces/IERC6372.sol/IERC6372.json b/backend/artifacts/@openzeppelin/contracts/interfaces/IERC6372.sol/IERC6372.json new file mode 100644 index 0000000..2373d94 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/interfaces/IERC6372.sol/IERC6372.json @@ -0,0 +1,37 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IERC6372", + "sourceName": "@openzeppelin/contracts/interfaces/IERC6372.sol", + "abi": [ + { + "inputs": [], + "name": "CLOCK_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "clock", + "outputs": [ + { + "internalType": "uint48", + "name": "", + "type": "uint48" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.dbg.json b/backend/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.json b/backend/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.json new file mode 100644 index 0000000..107d16f --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.json @@ -0,0 +1,113 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IERC1155Errors", + "sourceName": "@openzeppelin/contracts/interfaces/draft-IERC6093.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "balance", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "needed", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "tokenId", + "type": "uint256" + } + ], + "name": "ERC1155InsufficientBalance", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "approver", + "type": "address" + } + ], + "name": "ERC1155InvalidApprover", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "idsLength", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "valuesLength", + "type": "uint256" + } + ], + "name": "ERC1155InvalidArrayLength", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "operator", + "type": "address" + } + ], + "name": "ERC1155InvalidOperator", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "receiver", + "type": "address" + } + ], + "name": "ERC1155InvalidReceiver", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "ERC1155InvalidSender", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "operator", + "type": "address" + }, + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "ERC1155MissingApprovalForAll", + "type": "error" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.dbg.json b/backend/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.json b/backend/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.json new file mode 100644 index 0000000..f77ad64 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.json @@ -0,0 +1,97 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IERC20Errors", + "sourceName": "@openzeppelin/contracts/interfaces/draft-IERC6093.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "allowance", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "needed", + "type": "uint256" + } + ], + "name": "ERC20InsufficientAllowance", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "balance", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "needed", + "type": "uint256" + } + ], + "name": "ERC20InsufficientBalance", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "approver", + "type": "address" + } + ], + "name": "ERC20InvalidApprover", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "receiver", + "type": "address" + } + ], + "name": "ERC20InvalidReceiver", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "ERC20InvalidSender", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "ERC20InvalidSpender", + "type": "error" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.dbg.json b/backend/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.json b/backend/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.json new file mode 100644 index 0000000..6ccf3a7 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.json @@ -0,0 +1,114 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IERC721Errors", + "sourceName": "@openzeppelin/contracts/interfaces/draft-IERC6093.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "tokenId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "ERC721IncorrectOwner", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "operator", + "type": "address" + }, + { + "internalType": "uint256", + "name": "tokenId", + "type": "uint256" + } + ], + "name": "ERC721InsufficientApproval", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "approver", + "type": "address" + } + ], + "name": "ERC721InvalidApprover", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "operator", + "type": "address" + } + ], + "name": "ERC721InvalidOperator", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "ERC721InvalidOwner", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "receiver", + "type": "address" + } + ], + "name": "ERC721InvalidReceiver", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "ERC721InvalidSender", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "tokenId", + "type": "uint256" + } + ], + "name": "ERC721NonexistentToken", + "type": "error" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol/IERC1155Receiver.dbg.json b/backend/artifacts/@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol/IERC1155Receiver.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol/IERC1155Receiver.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol/IERC1155Receiver.json b/backend/artifacts/@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol/IERC1155Receiver.json new file mode 100644 index 0000000..55daf1e --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol/IERC1155Receiver.json @@ -0,0 +1,108 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IERC1155Receiver", + "sourceName": "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "address", + "name": "operator", + "type": "address" + }, + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "ids", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "onERC1155BatchReceived", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "operator", + "type": "address" + }, + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "uint256", + "name": "id", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "onERC1155Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol/ERC1155Holder.dbg.json b/backend/artifacts/@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol/ERC1155Holder.dbg.json new file mode 100644 index 0000000..10a4b45 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol/ERC1155Holder.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol/ERC1155Holder.json b/backend/artifacts/@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol/ERC1155Holder.json new file mode 100644 index 0000000..d385e13 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol/ERC1155Holder.json @@ -0,0 +1,108 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "ERC1155Holder", + "sourceName": "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155BatchReceived", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.dbg.json b/backend/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.json b/backend/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.json new file mode 100644 index 0000000..81e661f --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC20/ERC20.sol/ERC20.json @@ -0,0 +1,319 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "ERC20", + "sourceName": "@openzeppelin/contracts/token/ERC20/ERC20.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "allowance", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "needed", + "type": "uint256" + } + ], + "name": "ERC20InsufficientAllowance", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "balance", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "needed", + "type": "uint256" + } + ], + "name": "ERC20InsufficientBalance", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "approver", + "type": "address" + } + ], + "name": "ERC20InvalidApprover", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "receiver", + "type": "address" + } + ], + "name": "ERC20InvalidReceiver", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "ERC20InvalidSender", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "ERC20InvalidSpender", + "type": "error" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.dbg.json b/backend/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.json b/backend/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.json new file mode 100644 index 0000000..12e0777 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC20/IERC20.sol/IERC20.json @@ -0,0 +1,194 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IERC20", + "sourceName": "@openzeppelin/contracts/token/ERC20/IERC20.sol", + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol/ERC20Permit.dbg.json b/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol/ERC20Permit.dbg.json new file mode 100644 index 0000000..10a4b45 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol/ERC20Permit.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol/ERC20Permit.json b/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol/ERC20Permit.json new file mode 100644 index 0000000..74f8483 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol/ERC20Permit.json @@ -0,0 +1,529 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "ERC20Permit", + "sourceName": "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol", + "abi": [ + { + "inputs": [], + "name": "ECDSAInvalidSignature", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "length", + "type": "uint256" + } + ], + "name": "ECDSAInvalidSignatureLength", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "ECDSAInvalidSignatureS", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "allowance", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "needed", + "type": "uint256" + } + ], + "name": "ERC20InsufficientAllowance", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "balance", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "needed", + "type": "uint256" + } + ], + "name": "ERC20InsufficientBalance", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "approver", + "type": "address" + } + ], + "name": "ERC20InvalidApprover", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "receiver", + "type": "address" + } + ], + "name": "ERC20InvalidReceiver", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "ERC20InvalidSender", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "ERC20InvalidSpender", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + } + ], + "name": "ERC2612ExpiredSignature", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "signer", + "type": "address" + }, + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "ERC2612InvalidSigner", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "currentNonce", + "type": "uint256" + } + ], + "name": "InvalidAccountNonce", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidShortString", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "string", + "name": "str", + "type": "string" + } + ], + "name": "StringTooLong", + "type": "error" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [], + "name": "EIP712DomainChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [], + "name": "DOMAIN_SEPARATOR", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "eip712Domain", + "outputs": [ + { + "internalType": "bytes1", + "name": "fields", + "type": "bytes1" + }, + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "version", + "type": "string" + }, + { + "internalType": "uint256", + "name": "chainId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "verifyingContract", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + }, + { + "internalType": "uint256[]", + "name": "extensions", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "nonces", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "v", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "r", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "permit", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol/ERC20Votes.dbg.json b/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol/ERC20Votes.dbg.json new file mode 100644 index 0000000..10a4b45 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol/ERC20Votes.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol/ERC20Votes.json b/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol/ERC20Votes.json new file mode 100644 index 0000000..757fffe --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol/ERC20Votes.json @@ -0,0 +1,778 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "ERC20Votes", + "sourceName": "@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol", + "abi": [ + { + "inputs": [], + "name": "CheckpointUnorderedInsertion", + "type": "error" + }, + { + "inputs": [], + "name": "ECDSAInvalidSignature", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "length", + "type": "uint256" + } + ], + "name": "ECDSAInvalidSignatureLength", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "ECDSAInvalidSignatureS", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "increasedSupply", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "cap", + "type": "uint256" + } + ], + "name": "ERC20ExceededSafeSupply", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "allowance", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "needed", + "type": "uint256" + } + ], + "name": "ERC20InsufficientAllowance", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "balance", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "needed", + "type": "uint256" + } + ], + "name": "ERC20InsufficientBalance", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "approver", + "type": "address" + } + ], + "name": "ERC20InvalidApprover", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "receiver", + "type": "address" + } + ], + "name": "ERC20InvalidReceiver", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "ERC20InvalidSender", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "ERC20InvalidSpender", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + }, + { + "internalType": "uint48", + "name": "clock", + "type": "uint48" + } + ], + "name": "ERC5805FutureLookup", + "type": "error" + }, + { + "inputs": [], + "name": "ERC6372InconsistentClock", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "currentNonce", + "type": "uint256" + } + ], + "name": "InvalidAccountNonce", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidShortString", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint8", + "name": "bits", + "type": "uint8" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "SafeCastOverflowedUintDowncast", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "string", + "name": "str", + "type": "string" + } + ], + "name": "StringTooLong", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "expiry", + "type": "uint256" + } + ], + "name": "VotesExpiredSignature", + "type": "error" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "delegator", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "fromDelegate", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "toDelegate", + "type": "address" + } + ], + "name": "DelegateChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "delegate", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "previousVotes", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newVotes", + "type": "uint256" + } + ], + "name": "DelegateVotesChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [], + "name": "EIP712DomainChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [], + "name": "CLOCK_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint32", + "name": "pos", + "type": "uint32" + } + ], + "name": "checkpoints", + "outputs": [ + { + "components": [ + { + "internalType": "uint48", + "name": "_key", + "type": "uint48" + }, + { + "internalType": "uint208", + "name": "_value", + "type": "uint208" + } + ], + "internalType": "struct Checkpoints.Checkpoint208", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "clock", + "outputs": [ + { + "internalType": "uint48", + "name": "", + "type": "uint48" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "delegatee", + "type": "address" + } + ], + "name": "delegate", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "delegatee", + "type": "address" + }, + { + "internalType": "uint256", + "name": "nonce", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "expiry", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "v", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "r", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "delegateBySig", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "delegates", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "eip712Domain", + "outputs": [ + { + "internalType": "bytes1", + "name": "fields", + "type": "bytes1" + }, + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "version", + "type": "string" + }, + { + "internalType": "uint256", + "name": "chainId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "verifyingContract", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + }, + { + "internalType": "uint256[]", + "name": "extensions", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "getPastTotalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "getPastVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "getVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "nonces", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "numCheckpoints", + "outputs": [ + { + "internalType": "uint32", + "name": "", + "type": "uint32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.dbg.json b/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.dbg.json new file mode 100644 index 0000000..10a4b45 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.json b/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.json new file mode 100644 index 0000000..a7d8b6a --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol/IERC20Metadata.json @@ -0,0 +1,233 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IERC20Metadata", + "sourceName": "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol", + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol/IERC20Permit.dbg.json b/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol/IERC20Permit.dbg.json new file mode 100644 index 0000000..10a4b45 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol/IERC20Permit.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol/IERC20Permit.json b/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol/IERC20Permit.json new file mode 100644 index 0000000..aa02bdf --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol/IERC20Permit.json @@ -0,0 +1,86 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IERC20Permit", + "sourceName": "@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol", + "abi": [ + { + "inputs": [], + "name": "DOMAIN_SEPARATOR", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "nonces", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "v", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "r", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "permit", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol/IERC721Receiver.dbg.json b/backend/artifacts/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol/IERC721Receiver.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol/IERC721Receiver.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol/IERC721Receiver.json b/backend/artifacts/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol/IERC721Receiver.json new file mode 100644 index 0000000..e91c7b0 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol/IERC721Receiver.json @@ -0,0 +1,45 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IERC721Receiver", + "sourceName": "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "address", + "name": "operator", + "type": "address" + }, + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "uint256", + "name": "tokenId", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "onERC721Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol/ERC721Holder.dbg.json b/backend/artifacts/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol/ERC721Holder.dbg.json new file mode 100644 index 0000000..10a4b45 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol/ERC721Holder.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol/ERC721Holder.json b/backend/artifacts/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol/ERC721Holder.json new file mode 100644 index 0000000..f7f473e --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol/ERC721Holder.json @@ -0,0 +1,45 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "ERC721Holder", + "sourceName": "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC721Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/Address.sol/Address.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/Address.sol/Address.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/Address.sol/Address.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/Address.sol/Address.json b/backend/artifacts/@openzeppelin/contracts/utils/Address.sol/Address.json new file mode 100644 index 0000000..b26d829 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/Address.sol/Address.json @@ -0,0 +1,22 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "Address", + "sourceName": "@openzeppelin/contracts/utils/Address.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + } + ], + "name": "AddressEmptyCode", + "type": "error" + } + ], + "bytecode": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212201d3ae836a975002216447112ec98c6faf592f9671d271f88896644677de223d764736f6c63430008140033", + "deployedBytecode": "0x600080fdfea26469706673582212201d3ae836a975002216447112ec98c6faf592f9671d271f88896644677de223d764736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.json b/backend/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.json new file mode 100644 index 0000000..8fe86fc --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.json @@ -0,0 +1,10 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "Context", + "sourceName": "@openzeppelin/contracts/utils/Context.sol", + "abi": [], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/Errors.sol/Errors.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/Errors.sol/Errors.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/Errors.sol/Errors.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/Errors.sol/Errors.json b/backend/artifacts/@openzeppelin/contracts/utils/Errors.sol/Errors.json new file mode 100644 index 0000000..e750785 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/Errors.sol/Errors.json @@ -0,0 +1,48 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "Errors", + "sourceName": "@openzeppelin/contracts/utils/Errors.sol", + "abi": [ + { + "inputs": [], + "name": "FailedCall", + "type": "error" + }, + { + "inputs": [], + "name": "FailedDeployment", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "balance", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "needed", + "type": "uint256" + } + ], + "name": "InsufficientBalance", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "MissingPrecompile", + "type": "error" + } + ], + "bytecode": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212201b283e935c822c7731e35bbfd9d8aff275ff943e0d060069d9a4c8a183fb146164736f6c63430008140033", + "deployedBytecode": "0x600080fdfea26469706673582212201b283e935c822c7731e35bbfd9d8aff275ff943e0d060069d9a4c8a183fb146164736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/Nonces.sol/Nonces.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/Nonces.sol/Nonces.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/Nonces.sol/Nonces.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/Nonces.sol/Nonces.json b/backend/artifacts/@openzeppelin/contracts/utils/Nonces.sol/Nonces.json new file mode 100644 index 0000000..5229a3a --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/Nonces.sol/Nonces.json @@ -0,0 +1,46 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "Nonces", + "sourceName": "@openzeppelin/contracts/utils/Nonces.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "currentNonce", + "type": "uint256" + } + ], + "name": "InvalidAccountNonce", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "nonces", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/Panic.sol/Panic.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/Panic.sol/Panic.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/Panic.sol/Panic.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/Panic.sol/Panic.json b/backend/artifacts/@openzeppelin/contracts/utils/Panic.sol/Panic.json new file mode 100644 index 0000000..1f48352 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/Panic.sol/Panic.json @@ -0,0 +1,10 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "Panic", + "sourceName": "@openzeppelin/contracts/utils/Panic.sol", + "abi": [], + "bytecode": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220d3d3dd910cc19267204057e7b98620445f3f33d10c6a1b7d466fb2f1dbaaa3e464736f6c63430008140033", + "deployedBytecode": "0x600080fdfea2646970667358221220d3d3dd910cc19267204057e7b98620445f3f33d10c6a1b7d466fb2f1dbaaa3e464736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/ShortStrings.sol/ShortStrings.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/ShortStrings.sol/ShortStrings.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/ShortStrings.sol/ShortStrings.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/ShortStrings.sol/ShortStrings.json b/backend/artifacts/@openzeppelin/contracts/utils/ShortStrings.sol/ShortStrings.json new file mode 100644 index 0000000..29dd494 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/ShortStrings.sol/ShortStrings.json @@ -0,0 +1,27 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "ShortStrings", + "sourceName": "@openzeppelin/contracts/utils/ShortStrings.sol", + "abi": [ + { + "inputs": [], + "name": "InvalidShortString", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "string", + "name": "str", + "type": "string" + } + ], + "name": "StringTooLong", + "type": "error" + } + ], + "bytecode": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220be38f9d217646f870120140167ee3868bb6453ebeb69dd60ff12eeb686a8166564736f6c63430008140033", + "deployedBytecode": "0x600080fdfea2646970667358221220be38f9d217646f870120140167ee3868bb6453ebeb69dd60ff12eeb686a8166564736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.json b/backend/artifacts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.json new file mode 100644 index 0000000..d4da67b --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.json @@ -0,0 +1,10 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "StorageSlot", + "sourceName": "@openzeppelin/contracts/utils/StorageSlot.sol", + "abi": [], + "bytecode": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220ae25a39ead407bec927c6b9123beab38814d0e8e606e6b51ab70c388ccb21b8f64736f6c63430008140033", + "deployedBytecode": "0x600080fdfea2646970667358221220ae25a39ead407bec927c6b9123beab38814d0e8e606e6b51ab70c388ccb21b8f64736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/Strings.sol/Strings.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/Strings.sol/Strings.dbg.json new file mode 100644 index 0000000..59b0f68 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/Strings.sol/Strings.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/Strings.sol/Strings.json b/backend/artifacts/@openzeppelin/contracts/utils/Strings.sol/Strings.json new file mode 100644 index 0000000..3d49f72 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/Strings.sol/Strings.json @@ -0,0 +1,37 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "Strings", + "sourceName": "@openzeppelin/contracts/utils/Strings.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "length", + "type": "uint256" + } + ], + "name": "StringsInsufficientHexLength", + "type": "error" + }, + { + "inputs": [], + "name": "StringsInvalidAddressFormat", + "type": "error" + }, + { + "inputs": [], + "name": "StringsInvalidChar", + "type": "error" + } + ], + "bytecode": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220d08bc96a8d6dcc6448a3f0db7c13cd229f9ccdca095b3b8c535911fcf74d27b164736f6c63430008140033", + "deployedBytecode": "0x600080fdfea2646970667358221220d08bc96a8d6dcc6448a3f0db7c13cd229f9ccdca095b3b8c535911fcf74d27b164736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/cryptography/ECDSA.sol/ECDSA.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/cryptography/ECDSA.sol/ECDSA.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/cryptography/ECDSA.sol/ECDSA.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/cryptography/ECDSA.sol/ECDSA.json b/backend/artifacts/@openzeppelin/contracts/utils/cryptography/ECDSA.sol/ECDSA.json new file mode 100644 index 0000000..89ed777 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/cryptography/ECDSA.sol/ECDSA.json @@ -0,0 +1,38 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "ECDSA", + "sourceName": "@openzeppelin/contracts/utils/cryptography/ECDSA.sol", + "abi": [ + { + "inputs": [], + "name": "ECDSAInvalidSignature", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "length", + "type": "uint256" + } + ], + "name": "ECDSAInvalidSignatureLength", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "ECDSAInvalidSignatureS", + "type": "error" + } + ], + "bytecode": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220dd83379cd91612060872577f24e4aa198892a5e5275b61c6186bb6de502962a664736f6c63430008140033", + "deployedBytecode": "0x600080fdfea2646970667358221220dd83379cd91612060872577f24e4aa198892a5e5275b61c6186bb6de502962a664736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/cryptography/EIP712.sol/EIP712.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/cryptography/EIP712.sol/EIP712.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/cryptography/EIP712.sol/EIP712.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/cryptography/EIP712.sol/EIP712.json b/backend/artifacts/@openzeppelin/contracts/utils/cryptography/EIP712.sol/EIP712.json new file mode 100644 index 0000000..ee4e070 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/cryptography/EIP712.sol/EIP712.json @@ -0,0 +1,76 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "EIP712", + "sourceName": "@openzeppelin/contracts/utils/cryptography/EIP712.sol", + "abi": [ + { + "inputs": [], + "name": "InvalidShortString", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "string", + "name": "str", + "type": "string" + } + ], + "name": "StringTooLong", + "type": "error" + }, + { + "anonymous": false, + "inputs": [], + "name": "EIP712DomainChanged", + "type": "event" + }, + { + "inputs": [], + "name": "eip712Domain", + "outputs": [ + { + "internalType": "bytes1", + "name": "fields", + "type": "bytes1" + }, + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "version", + "type": "string" + }, + { + "internalType": "uint256", + "name": "chainId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "verifyingContract", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + }, + { + "internalType": "uint256[]", + "name": "extensions", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol/MessageHashUtils.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol/MessageHashUtils.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol/MessageHashUtils.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol/MessageHashUtils.json b/backend/artifacts/@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol/MessageHashUtils.json new file mode 100644 index 0000000..d7aa49a --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol/MessageHashUtils.json @@ -0,0 +1,10 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "MessageHashUtils", + "sourceName": "@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol", + "abi": [], + "bytecode": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220f0207ad9e362a615aa90358e523b6ce04d4e69f6202f53043b8bdd8f730f26b364736f6c63430008140033", + "deployedBytecode": "0x600080fdfea2646970667358221220f0207ad9e362a615aa90358e523b6ce04d4e69f6202f53043b8bdd8f730f26b364736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol/SignatureChecker.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol/SignatureChecker.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol/SignatureChecker.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol/SignatureChecker.json b/backend/artifacts/@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol/SignatureChecker.json new file mode 100644 index 0000000..e6b9813 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol/SignatureChecker.json @@ -0,0 +1,10 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "SignatureChecker", + "sourceName": "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol", + "abi": [], + "bytecode": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220818f5ef0be44b06d125288cdf72179b00d292931ab3f9b703fb58a49e9db41ca64736f6c63430008140033", + "deployedBytecode": "0x600080fdfea2646970667358221220818f5ef0be44b06d125288cdf72179b00d292931ab3f9b703fb58a49e9db41ca64736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/introspection/ERC165.sol/ERC165.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/introspection/ERC165.sol/ERC165.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/introspection/ERC165.sol/ERC165.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/introspection/ERC165.sol/ERC165.json b/backend/artifacts/@openzeppelin/contracts/utils/introspection/ERC165.sol/ERC165.json new file mode 100644 index 0000000..1304472 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/introspection/ERC165.sol/ERC165.json @@ -0,0 +1,30 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "ERC165", + "sourceName": "@openzeppelin/contracts/utils/introspection/ERC165.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/introspection/IERC165.sol/IERC165.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/introspection/IERC165.sol/IERC165.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/introspection/IERC165.sol/IERC165.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/introspection/IERC165.sol/IERC165.json b/backend/artifacts/@openzeppelin/contracts/utils/introspection/IERC165.sol/IERC165.json new file mode 100644 index 0000000..ff87f91 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/introspection/IERC165.sol/IERC165.json @@ -0,0 +1,30 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "IERC165", + "sourceName": "@openzeppelin/contracts/utils/introspection/IERC165.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": "0x", + "deployedBytecode": "0x", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/math/Math.sol/Math.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/math/Math.sol/Math.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/math/Math.sol/Math.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/math/Math.sol/Math.json b/backend/artifacts/@openzeppelin/contracts/utils/math/Math.sol/Math.json new file mode 100644 index 0000000..2e65f0b --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/math/Math.sol/Math.json @@ -0,0 +1,10 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "Math", + "sourceName": "@openzeppelin/contracts/utils/math/Math.sol", + "abi": [], + "bytecode": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220079cd2c71475848145681b815221685650cc081e23cc8b888477ca686a1c397264736f6c63430008140033", + "deployedBytecode": "0x600080fdfea2646970667358221220079cd2c71475848145681b815221685650cc081e23cc8b888477ca686a1c397264736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/math/SafeCast.sol/SafeCast.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/math/SafeCast.sol/SafeCast.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/math/SafeCast.sol/SafeCast.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/math/SafeCast.sol/SafeCast.json b/backend/artifacts/@openzeppelin/contracts/utils/math/SafeCast.sol/SafeCast.json new file mode 100644 index 0000000..ee2aa19 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/math/SafeCast.sol/SafeCast.json @@ -0,0 +1,65 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "SafeCast", + "sourceName": "@openzeppelin/contracts/utils/math/SafeCast.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "uint8", + "name": "bits", + "type": "uint8" + }, + { + "internalType": "int256", + "name": "value", + "type": "int256" + } + ], + "name": "SafeCastOverflowedIntDowncast", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "int256", + "name": "value", + "type": "int256" + } + ], + "name": "SafeCastOverflowedIntToUint", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint8", + "name": "bits", + "type": "uint8" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "SafeCastOverflowedUintDowncast", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "SafeCastOverflowedUintToInt", + "type": "error" + } + ], + "bytecode": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212202c4ad86538ce8a084b7fdb2cd3d42f4c2dabe3fc8415c635d8bb43bd1dd67f0264736f6c63430008140033", + "deployedBytecode": "0x600080fdfea26469706673582212202c4ad86538ce8a084b7fdb2cd3d42f4c2dabe3fc8415c635d8bb43bd1dd67f0264736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/math/SignedMath.sol/SignedMath.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/math/SignedMath.sol/SignedMath.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/math/SignedMath.sol/SignedMath.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/math/SignedMath.sol/SignedMath.json b/backend/artifacts/@openzeppelin/contracts/utils/math/SignedMath.sol/SignedMath.json new file mode 100644 index 0000000..5e786ef --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/math/SignedMath.sol/SignedMath.json @@ -0,0 +1,10 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "SignedMath", + "sourceName": "@openzeppelin/contracts/utils/math/SignedMath.sol", + "abi": [], + "bytecode": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220b18474e30ba46df553fc97b5dbc5e061d13f068480eada5c75b285875d02dfc564736f6c63430008140033", + "deployedBytecode": "0x600080fdfea2646970667358221220b18474e30ba46df553fc97b5dbc5e061d13f068480eada5c75b285875d02dfc564736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/structs/Checkpoints.sol/Checkpoints.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/structs/Checkpoints.sol/Checkpoints.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/structs/Checkpoints.sol/Checkpoints.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/structs/Checkpoints.sol/Checkpoints.json b/backend/artifacts/@openzeppelin/contracts/utils/structs/Checkpoints.sol/Checkpoints.json new file mode 100644 index 0000000..a783708 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/structs/Checkpoints.sol/Checkpoints.json @@ -0,0 +1,16 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "Checkpoints", + "sourceName": "@openzeppelin/contracts/utils/structs/Checkpoints.sol", + "abi": [ + { + "inputs": [], + "name": "CheckpointUnorderedInsertion", + "type": "error" + } + ], + "bytecode": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212209d0763cd8afdfa69a0fd1ead90a10240bb74b5b3f038caee841bbbcd2411c0a064736f6c63430008140033", + "deployedBytecode": "0x600080fdfea26469706673582212209d0763cd8afdfa69a0fd1ead90a10240bb74b5b3f038caee841bbbcd2411c0a064736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol/DoubleEndedQueue.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol/DoubleEndedQueue.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol/DoubleEndedQueue.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol/DoubleEndedQueue.json b/backend/artifacts/@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol/DoubleEndedQueue.json new file mode 100644 index 0000000..be0996e --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol/DoubleEndedQueue.json @@ -0,0 +1,10 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "DoubleEndedQueue", + "sourceName": "@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol", + "abi": [], + "bytecode": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220c59b9fc3d0ea71191ee70988f6d2db4c6dc21b9013d483c913db0ae9fff5cceb64736f6c63430008140033", + "deployedBytecode": "0x600080fdfea2646970667358221220c59b9fc3d0ea71191ee70988f6d2db4c6dc21b9013d483c913db0ae9fff5cceb64736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/types/Time.sol/Time.dbg.json b/backend/artifacts/@openzeppelin/contracts/utils/types/Time.sol/Time.dbg.json new file mode 100644 index 0000000..5577a29 --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/types/Time.sol/Time.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../../../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/@openzeppelin/contracts/utils/types/Time.sol/Time.json b/backend/artifacts/@openzeppelin/contracts/utils/types/Time.sol/Time.json new file mode 100644 index 0000000..652a24c --- /dev/null +++ b/backend/artifacts/@openzeppelin/contracts/utils/types/Time.sol/Time.json @@ -0,0 +1,10 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "Time", + "sourceName": "@openzeppelin/contracts/utils/types/Time.sol", + "abi": [], + "bytecode": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea264697066735822122026ea55de96cee5d1a924579e9c0dae332550bbaa227f60531af5496f738633d264736f6c63430008140033", + "deployedBytecode": "0x600080fdfea264697066735822122026ea55de96cee5d1a924579e9c0dae332550bbaa227f60531af5496f738633d264736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/build-info/f3f069df8eac5bd54bd69f81015dcedb.json b/backend/artifacts/build-info/f3f069df8eac5bd54bd69f81015dcedb.json new file mode 100644 index 0000000..eed0ba7 --- /dev/null +++ b/backend/artifacts/build-info/f3f069df8eac5bd54bd69f81015dcedb.json @@ -0,0 +1 @@ +{"id":"f3f069df8eac5bd54bd69f81015dcedb","_format":"hh-sol-build-info-1","solcVersion":"0.8.20","solcLongVersion":"0.8.20+commit.a1b79de6","input":{"language":"Solidity","sources":{"@openzeppelin/contracts/access/AccessControl.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (access/AccessControl.sol)\n\npragma solidity ^0.8.20;\n\nimport {IAccessControl} from \"./IAccessControl.sol\";\nimport {Context} from \"../utils/Context.sol\";\nimport {ERC165} from \"../utils/introspection/ERC165.sol\";\n\n/**\n * @dev Contract module that allows children to implement role-based access\n * control mechanisms. This is a lightweight version that doesn't allow enumerating role\n * members except through off-chain means by accessing the contract event logs. Some\n * applications may benefit from on-chain enumerability, for those cases see\n * {AccessControlEnumerable}.\n *\n * Roles are referred to by their `bytes32` identifier. These should be exposed\n * in the external API and be unique. The best way to achieve this is by\n * using `public constant` hash digests:\n *\n * ```solidity\n * bytes32 public constant MY_ROLE = keccak256(\"MY_ROLE\");\n * ```\n *\n * Roles can be used to represent a set of permissions. To restrict access to a\n * function call, use {hasRole}:\n *\n * ```solidity\n * function foo() public {\n * require(hasRole(MY_ROLE, msg.sender));\n * ...\n * }\n * ```\n *\n * Roles can be granted and revoked dynamically via the {grantRole} and\n * {revokeRole} functions. Each role has an associated admin role, and only\n * accounts that have a role's admin role can call {grantRole} and {revokeRole}.\n *\n * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means\n * that only accounts with this role will be able to grant or revoke other\n * roles. More complex role relationships can be created by using\n * {_setRoleAdmin}.\n *\n * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to\n * grant and revoke this role. Extra precautions should be taken to secure\n * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}\n * to enforce additional security measures for this role.\n */\nabstract contract AccessControl is Context, IAccessControl, ERC165 {\n struct RoleData {\n mapping(address account => bool) hasRole;\n bytes32 adminRole;\n }\n\n mapping(bytes32 role => RoleData) private _roles;\n\n bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;\n\n /**\n * @dev Modifier that checks that an account has a specific role. Reverts\n * with an {AccessControlUnauthorizedAccount} error including the required role.\n */\n modifier onlyRole(bytes32 role) {\n _checkRole(role);\n _;\n }\n\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);\n }\n\n /**\n * @dev Returns `true` if `account` has been granted `role`.\n */\n function hasRole(bytes32 role, address account) public view virtual returns (bool) {\n return _roles[role].hasRole[account];\n }\n\n /**\n * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`\n * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.\n */\n function _checkRole(bytes32 role) internal view virtual {\n _checkRole(role, _msgSender());\n }\n\n /**\n * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`\n * is missing `role`.\n */\n function _checkRole(bytes32 role, address account) internal view virtual {\n if (!hasRole(role, account)) {\n revert AccessControlUnauthorizedAccount(account, role);\n }\n }\n\n /**\n * @dev Returns the admin role that controls `role`. See {grantRole} and\n * {revokeRole}.\n *\n * To change a role's admin, use {_setRoleAdmin}.\n */\n function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) {\n return _roles[role].adminRole;\n }\n\n /**\n * @dev Grants `role` to `account`.\n *\n * If `account` had not been already granted `role`, emits a {RoleGranted}\n * event.\n *\n * Requirements:\n *\n * - the caller must have ``role``'s admin role.\n *\n * May emit a {RoleGranted} event.\n */\n function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {\n _grantRole(role, account);\n }\n\n /**\n * @dev Revokes `role` from `account`.\n *\n * If `account` had been granted `role`, emits a {RoleRevoked} event.\n *\n * Requirements:\n *\n * - the caller must have ``role``'s admin role.\n *\n * May emit a {RoleRevoked} event.\n */\n function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {\n _revokeRole(role, account);\n }\n\n /**\n * @dev Revokes `role` from the calling account.\n *\n * Roles are often managed via {grantRole} and {revokeRole}: this function's\n * purpose is to provide a mechanism for accounts to lose their privileges\n * if they are compromised (such as when a trusted device is misplaced).\n *\n * If the calling account had been revoked `role`, emits a {RoleRevoked}\n * event.\n *\n * Requirements:\n *\n * - the caller must be `callerConfirmation`.\n *\n * May emit a {RoleRevoked} event.\n */\n function renounceRole(bytes32 role, address callerConfirmation) public virtual {\n if (callerConfirmation != _msgSender()) {\n revert AccessControlBadConfirmation();\n }\n\n _revokeRole(role, callerConfirmation);\n }\n\n /**\n * @dev Sets `adminRole` as ``role``'s admin role.\n *\n * Emits a {RoleAdminChanged} event.\n */\n function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {\n bytes32 previousAdminRole = getRoleAdmin(role);\n _roles[role].adminRole = adminRole;\n emit RoleAdminChanged(role, previousAdminRole, adminRole);\n }\n\n /**\n * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.\n *\n * Internal function without access restriction.\n *\n * May emit a {RoleGranted} event.\n */\n function _grantRole(bytes32 role, address account) internal virtual returns (bool) {\n if (!hasRole(role, account)) {\n _roles[role].hasRole[account] = true;\n emit RoleGranted(role, account, _msgSender());\n return true;\n } else {\n return false;\n }\n }\n\n /**\n * @dev Attempts to revoke `role` from `account` and returns a boolean indicating if `role` was revoked.\n *\n * Internal function without access restriction.\n *\n * May emit a {RoleRevoked} event.\n */\n function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {\n if (hasRole(role, account)) {\n _roles[role].hasRole[account] = false;\n emit RoleRevoked(role, account, _msgSender());\n return true;\n } else {\n return false;\n }\n }\n}\n"},"@openzeppelin/contracts/access/IAccessControl.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (access/IAccessControl.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev External interface of AccessControl declared to support ERC-165 detection.\n */\ninterface IAccessControl {\n /**\n * @dev The `account` is missing a role.\n */\n error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);\n\n /**\n * @dev The caller of a function is not the expected one.\n *\n * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\n */\n error AccessControlBadConfirmation();\n\n /**\n * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`\n *\n * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite\n * {RoleAdminChanged} not being emitted to signal this.\n */\n event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);\n\n /**\n * @dev Emitted when `account` is granted `role`.\n *\n * `sender` is the account that originated the contract call. This account bears the admin role (for the granted role).\n * Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\n */\n event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);\n\n /**\n * @dev Emitted when `account` is revoked `role`.\n *\n * `sender` is the account that originated the contract call:\n * - if using `revokeRole`, it is the admin role bearer\n * - if using `renounceRole`, it is the role bearer (i.e. `account`)\n */\n event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);\n\n /**\n * @dev Returns `true` if `account` has been granted `role`.\n */\n function hasRole(bytes32 role, address account) external view returns (bool);\n\n /**\n * @dev Returns the admin role that controls `role`. See {grantRole} and\n * {revokeRole}.\n *\n * To change a role's admin, use {AccessControl-_setRoleAdmin}.\n */\n function getRoleAdmin(bytes32 role) external view returns (bytes32);\n\n /**\n * @dev Grants `role` to `account`.\n *\n * If `account` had not been already granted `role`, emits a {RoleGranted}\n * event.\n *\n * Requirements:\n *\n * - the caller must have ``role``'s admin role.\n */\n function grantRole(bytes32 role, address account) external;\n\n /**\n * @dev Revokes `role` from `account`.\n *\n * If `account` had been granted `role`, emits a {RoleRevoked} event.\n *\n * Requirements:\n *\n * - the caller must have ``role``'s admin role.\n */\n function revokeRole(bytes32 role, address account) external;\n\n /**\n * @dev Revokes `role` from the calling account.\n *\n * Roles are often managed via {grantRole} and {revokeRole}: this function's\n * purpose is to provide a mechanism for accounts to lose their privileges\n * if they are compromised (such as when a trusted device is misplaced).\n *\n * If the calling account had been granted `role`, emits a {RoleRevoked}\n * event.\n *\n * Requirements:\n *\n * - the caller must be `callerConfirmation`.\n */\n function renounceRole(bytes32 role, address callerConfirmation) external;\n}\n"},"@openzeppelin/contracts/access/Ownable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)\n\npragma solidity ^0.8.20;\n\nimport {Context} from \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * The initial owner is set to the address provided by the deployer. This can\n * later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable is Context {\n address private _owner;\n\n /**\n * @dev The caller account is not authorized to perform an operation.\n */\n error OwnableUnauthorizedAccount(address account);\n\n /**\n * @dev The owner is not a valid owner account. (eg. `address(0)`)\n */\n error OwnableInvalidOwner(address owner);\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the address provided by the deployer as the initial owner.\n */\n constructor(address initialOwner) {\n if (initialOwner == address(0)) {\n revert OwnableInvalidOwner(address(0));\n }\n _transferOwnership(initialOwner);\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n _checkOwner();\n _;\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n return _owner;\n }\n\n /**\n * @dev Throws if the sender is not the owner.\n */\n function _checkOwner() internal view virtual {\n if (owner() != _msgSender()) {\n revert OwnableUnauthorizedAccount(_msgSender());\n }\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby disabling any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _transferOwnership(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n if (newOwner == address(0)) {\n revert OwnableInvalidOwner(address(0));\n }\n _transferOwnership(newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\n }\n}\n"},"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (governance/extensions/GovernorCountingSimple.sol)\n\npragma solidity ^0.8.20;\n\nimport {Governor} from \"../Governor.sol\";\n\n/**\n * @dev Extension of {Governor} for simple, 3 options, vote counting.\n */\nabstract contract GovernorCountingSimple is Governor {\n /**\n * @dev Supported vote types. Matches Governor Bravo ordering.\n */\n enum VoteType {\n Against,\n For,\n Abstain\n }\n\n struct ProposalVote {\n uint256 againstVotes;\n uint256 forVotes;\n uint256 abstainVotes;\n mapping(address voter => bool) hasVoted;\n }\n\n mapping(uint256 proposalId => ProposalVote) private _proposalVotes;\n\n /**\n * @dev See {IGovernor-COUNTING_MODE}.\n */\n // solhint-disable-next-line func-name-mixedcase\n function COUNTING_MODE() public pure virtual override returns (string memory) {\n return \"support=bravo&quorum=for,abstain\";\n }\n\n /**\n * @dev See {IGovernor-hasVoted}.\n */\n function hasVoted(uint256 proposalId, address account) public view virtual override returns (bool) {\n return _proposalVotes[proposalId].hasVoted[account];\n }\n\n /**\n * @dev Accessor to the internal vote counts.\n */\n function proposalVotes(\n uint256 proposalId\n ) public view virtual returns (uint256 againstVotes, uint256 forVotes, uint256 abstainVotes) {\n ProposalVote storage proposalVote = _proposalVotes[proposalId];\n return (proposalVote.againstVotes, proposalVote.forVotes, proposalVote.abstainVotes);\n }\n\n /**\n * @dev See {Governor-_quorumReached}.\n */\n function _quorumReached(uint256 proposalId) internal view virtual override returns (bool) {\n ProposalVote storage proposalVote = _proposalVotes[proposalId];\n\n return quorum(proposalSnapshot(proposalId)) <= proposalVote.forVotes + proposalVote.abstainVotes;\n }\n\n /**\n * @dev See {Governor-_voteSucceeded}. In this module, the forVotes must be strictly over the againstVotes.\n */\n function _voteSucceeded(uint256 proposalId) internal view virtual override returns (bool) {\n ProposalVote storage proposalVote = _proposalVotes[proposalId];\n\n return proposalVote.forVotes > proposalVote.againstVotes;\n }\n\n /**\n * @dev See {Governor-_countVote}. In this module, the support follows the `VoteType` enum (from Governor Bravo).\n */\n function _countVote(\n uint256 proposalId,\n address account,\n uint8 support,\n uint256 totalWeight,\n bytes memory // params\n ) internal virtual override returns (uint256) {\n ProposalVote storage proposalVote = _proposalVotes[proposalId];\n\n if (proposalVote.hasVoted[account]) {\n revert GovernorAlreadyCastVote(account);\n }\n proposalVote.hasVoted[account] = true;\n\n if (support == uint8(VoteType.Against)) {\n proposalVote.againstVotes += totalWeight;\n } else if (support == uint8(VoteType.For)) {\n proposalVote.forVotes += totalWeight;\n } else if (support == uint8(VoteType.Abstain)) {\n proposalVote.abstainVotes += totalWeight;\n } else {\n revert GovernorInvalidVoteType();\n }\n\n return totalWeight;\n }\n}\n"},"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (governance/extensions/GovernorSettings.sol)\n\npragma solidity ^0.8.20;\n\nimport {Governor} from \"../Governor.sol\";\n\n/**\n * @dev Extension of {Governor} for settings updatable through governance.\n */\nabstract contract GovernorSettings is Governor {\n // amount of token\n uint256 private _proposalThreshold;\n // timepoint: limited to uint48 in core (same as clock() type)\n uint48 private _votingDelay;\n // duration: limited to uint32 in core\n uint32 private _votingPeriod;\n\n event VotingDelaySet(uint256 oldVotingDelay, uint256 newVotingDelay);\n event VotingPeriodSet(uint256 oldVotingPeriod, uint256 newVotingPeriod);\n event ProposalThresholdSet(uint256 oldProposalThreshold, uint256 newProposalThreshold);\n\n /**\n * @dev Initialize the governance parameters.\n */\n constructor(uint48 initialVotingDelay, uint32 initialVotingPeriod, uint256 initialProposalThreshold) {\n _setVotingDelay(initialVotingDelay);\n _setVotingPeriod(initialVotingPeriod);\n _setProposalThreshold(initialProposalThreshold);\n }\n\n /**\n * @dev See {IGovernor-votingDelay}.\n */\n function votingDelay() public view virtual override returns (uint256) {\n return _votingDelay;\n }\n\n /**\n * @dev See {IGovernor-votingPeriod}.\n */\n function votingPeriod() public view virtual override returns (uint256) {\n return _votingPeriod;\n }\n\n /**\n * @dev See {Governor-proposalThreshold}.\n */\n function proposalThreshold() public view virtual override returns (uint256) {\n return _proposalThreshold;\n }\n\n /**\n * @dev Update the voting delay. This operation can only be performed through a governance proposal.\n *\n * Emits a {VotingDelaySet} event.\n */\n function setVotingDelay(uint48 newVotingDelay) public virtual onlyGovernance {\n _setVotingDelay(newVotingDelay);\n }\n\n /**\n * @dev Update the voting period. This operation can only be performed through a governance proposal.\n *\n * Emits a {VotingPeriodSet} event.\n */\n function setVotingPeriod(uint32 newVotingPeriod) public virtual onlyGovernance {\n _setVotingPeriod(newVotingPeriod);\n }\n\n /**\n * @dev Update the proposal threshold. This operation can only be performed through a governance proposal.\n *\n * Emits a {ProposalThresholdSet} event.\n */\n function setProposalThreshold(uint256 newProposalThreshold) public virtual onlyGovernance {\n _setProposalThreshold(newProposalThreshold);\n }\n\n /**\n * @dev Internal setter for the voting delay.\n *\n * Emits a {VotingDelaySet} event.\n */\n function _setVotingDelay(uint48 newVotingDelay) internal virtual {\n emit VotingDelaySet(_votingDelay, newVotingDelay);\n _votingDelay = newVotingDelay;\n }\n\n /**\n * @dev Internal setter for the voting period.\n *\n * Emits a {VotingPeriodSet} event.\n */\n function _setVotingPeriod(uint32 newVotingPeriod) internal virtual {\n if (newVotingPeriod == 0) {\n revert GovernorInvalidVotingPeriod(0);\n }\n emit VotingPeriodSet(_votingPeriod, newVotingPeriod);\n _votingPeriod = newVotingPeriod;\n }\n\n /**\n * @dev Internal setter for the proposal threshold.\n *\n * Emits a {ProposalThresholdSet} event.\n */\n function _setProposalThreshold(uint256 newProposalThreshold) internal virtual {\n emit ProposalThresholdSet(_proposalThreshold, newProposalThreshold);\n _proposalThreshold = newProposalThreshold;\n }\n}\n"},"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (governance/extensions/GovernorTimelockControl.sol)\n\npragma solidity ^0.8.20;\n\nimport {IGovernor, Governor} from \"../Governor.sol\";\nimport {TimelockController} from \"../TimelockController.sol\";\nimport {IERC165} from \"../../interfaces/IERC165.sol\";\nimport {SafeCast} from \"../../utils/math/SafeCast.sol\";\n\n/**\n * @dev Extension of {Governor} that binds the execution process to an instance of {TimelockController}. This adds a\n * delay, enforced by the {TimelockController} to all successful proposal (in addition to the voting duration). The\n * {Governor} needs the proposer (and ideally the executor and canceller) roles for the {Governor} to work properly.\n *\n * Using this model means the proposal will be operated by the {TimelockController} and not by the {Governor}. Thus,\n * the assets and permissions must be attached to the {TimelockController}. Any asset sent to the {Governor} will be\n * inaccessible from a proposal, unless executed via {Governor-relay}.\n *\n * WARNING: Setting up the TimelockController to have additional proposers or cancelers besides the governor is very\n * risky, as it grants them the ability to: 1) execute operations as the timelock, and thus possibly performing\n * operations or accessing funds that are expected to only be accessible through a vote, and 2) block governance\n * proposals that have been approved by the voters, effectively executing a Denial of Service attack.\n */\nabstract contract GovernorTimelockControl is Governor {\n TimelockController private _timelock;\n mapping(uint256 proposalId => bytes32) private _timelockIds;\n\n /**\n * @dev Emitted when the timelock controller used for proposal execution is modified.\n */\n event TimelockChange(address oldTimelock, address newTimelock);\n\n /**\n * @dev Set the timelock.\n */\n constructor(TimelockController timelockAddress) {\n _updateTimelock(timelockAddress);\n }\n\n /**\n * @dev Overridden version of the {Governor-state} function that considers the status reported by the timelock.\n */\n function state(uint256 proposalId) public view virtual override returns (ProposalState) {\n ProposalState currentState = super.state(proposalId);\n\n if (currentState != ProposalState.Queued) {\n return currentState;\n }\n\n bytes32 queueid = _timelockIds[proposalId];\n if (_timelock.isOperationPending(queueid)) {\n return ProposalState.Queued;\n } else if (_timelock.isOperationDone(queueid)) {\n // This can happen if the proposal is executed directly on the timelock.\n return ProposalState.Executed;\n } else {\n // This can happen if the proposal is canceled directly on the timelock.\n return ProposalState.Canceled;\n }\n }\n\n /**\n * @dev Public accessor to check the address of the timelock\n */\n function timelock() public view virtual returns (address) {\n return address(_timelock);\n }\n\n /**\n * @dev See {IGovernor-proposalNeedsQueuing}.\n */\n function proposalNeedsQueuing(uint256) public view virtual override returns (bool) {\n return true;\n }\n\n /**\n * @dev Function to queue a proposal to the timelock.\n */\n function _queueOperations(\n uint256 proposalId,\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) internal virtual override returns (uint48) {\n uint256 delay = _timelock.getMinDelay();\n\n bytes32 salt = _timelockSalt(descriptionHash);\n _timelockIds[proposalId] = _timelock.hashOperationBatch(targets, values, calldatas, 0, salt);\n _timelock.scheduleBatch(targets, values, calldatas, 0, salt, delay);\n\n return SafeCast.toUint48(block.timestamp + delay);\n }\n\n /**\n * @dev Overridden version of the {Governor-_executeOperations} function that runs the already queued proposal\n * through the timelock.\n */\n function _executeOperations(\n uint256 proposalId,\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) internal virtual override {\n // execute\n _timelock.executeBatch{value: msg.value}(targets, values, calldatas, 0, _timelockSalt(descriptionHash));\n // cleanup for refund\n delete _timelockIds[proposalId];\n }\n\n /**\n * @dev Overridden version of the {Governor-_cancel} function to cancel the timelocked proposal if it has already\n * been queued.\n */\n // This function can reenter through the external call to the timelock, but we assume the timelock is trusted and\n // well behaved (according to TimelockController) and this will not happen.\n // slither-disable-next-line reentrancy-no-eth\n function _cancel(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) internal virtual override returns (uint256) {\n uint256 proposalId = super._cancel(targets, values, calldatas, descriptionHash);\n\n bytes32 timelockId = _timelockIds[proposalId];\n if (timelockId != 0) {\n // cancel\n _timelock.cancel(timelockId);\n // cleanup\n delete _timelockIds[proposalId];\n }\n\n return proposalId;\n }\n\n /**\n * @dev Address through which the governor executes action. In this case, the timelock.\n */\n function _executor() internal view virtual override returns (address) {\n return address(_timelock);\n }\n\n /**\n * @dev Public endpoint to update the underlying timelock instance. Restricted to the timelock itself, so updates\n * must be proposed, scheduled, and executed through governance proposals.\n *\n * CAUTION: It is not recommended to change the timelock while there are other queued governance proposals.\n */\n function updateTimelock(TimelockController newTimelock) external virtual onlyGovernance {\n _updateTimelock(newTimelock);\n }\n\n function _updateTimelock(TimelockController newTimelock) private {\n emit TimelockChange(address(_timelock), address(newTimelock));\n _timelock = newTimelock;\n }\n\n /**\n * @dev Computes the {TimelockController} operation salt.\n *\n * It is computed with the governor address itself to avoid collisions across governor instances using the\n * same timelock.\n */\n function _timelockSalt(bytes32 descriptionHash) private view returns (bytes32) {\n return bytes20(address(this)) ^ descriptionHash;\n }\n}\n"},"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (governance/extensions/GovernorVotes.sol)\n\npragma solidity ^0.8.20;\n\nimport {Governor} from \"../Governor.sol\";\nimport {IVotes} from \"../utils/IVotes.sol\";\nimport {IERC5805} from \"../../interfaces/IERC5805.sol\";\nimport {SafeCast} from \"../../utils/math/SafeCast.sol\";\nimport {Time} from \"../../utils/types/Time.sol\";\n\n/**\n * @dev Extension of {Governor} for voting weight extraction from an {ERC20Votes} token, or since v4.5 an {ERC721Votes}\n * token.\n */\nabstract contract GovernorVotes is Governor {\n IERC5805 private immutable _token;\n\n constructor(IVotes tokenAddress) {\n _token = IERC5805(address(tokenAddress));\n }\n\n /**\n * @dev The token that voting power is sourced from.\n */\n function token() public view virtual returns (IERC5805) {\n return _token;\n }\n\n /**\n * @dev Clock (as specified in ERC-6372) is set to match the token's clock. Fallback to block numbers if the token\n * does not implement ERC-6372.\n */\n function clock() public view virtual override returns (uint48) {\n try token().clock() returns (uint48 timepoint) {\n return timepoint;\n } catch {\n return Time.blockNumber();\n }\n }\n\n /**\n * @dev Machine-readable description of the clock as specified in ERC-6372.\n */\n // solhint-disable-next-line func-name-mixedcase\n function CLOCK_MODE() public view virtual override returns (string memory) {\n try token().CLOCK_MODE() returns (string memory clockmode) {\n return clockmode;\n } catch {\n return \"mode=blocknumber&from=default\";\n }\n }\n\n /**\n * Read the voting weight from the token's built in snapshot mechanism (see {Governor-_getVotes}).\n */\n function _getVotes(\n address account,\n uint256 timepoint,\n bytes memory /*params*/\n ) internal view virtual override returns (uint256) {\n return token().getPastVotes(account, timepoint);\n }\n}\n"},"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (governance/extensions/GovernorVotesQuorumFraction.sol)\n\npragma solidity ^0.8.20;\n\nimport {GovernorVotes} from \"./GovernorVotes.sol\";\nimport {Math} from \"../../utils/math/Math.sol\";\nimport {SafeCast} from \"../../utils/math/SafeCast.sol\";\nimport {Checkpoints} from \"../../utils/structs/Checkpoints.sol\";\n\n/**\n * @dev Extension of {Governor} for voting weight extraction from an {ERC20Votes} token and a quorum expressed as a\n * fraction of the total supply.\n */\nabstract contract GovernorVotesQuorumFraction is GovernorVotes {\n using Checkpoints for Checkpoints.Trace208;\n\n Checkpoints.Trace208 private _quorumNumeratorHistory;\n\n event QuorumNumeratorUpdated(uint256 oldQuorumNumerator, uint256 newQuorumNumerator);\n\n /**\n * @dev The quorum set is not a valid fraction.\n */\n error GovernorInvalidQuorumFraction(uint256 quorumNumerator, uint256 quorumDenominator);\n\n /**\n * @dev Initialize quorum as a fraction of the token's total supply.\n *\n * The fraction is specified as `numerator / denominator`. By default the denominator is 100, so quorum is\n * specified as a percent: a numerator of 10 corresponds to quorum being 10% of total supply. The denominator can be\n * customized by overriding {quorumDenominator}.\n */\n constructor(uint256 quorumNumeratorValue) {\n _updateQuorumNumerator(quorumNumeratorValue);\n }\n\n /**\n * @dev Returns the current quorum numerator. See {quorumDenominator}.\n */\n function quorumNumerator() public view virtual returns (uint256) {\n return _quorumNumeratorHistory.latest();\n }\n\n /**\n * @dev Returns the quorum numerator at a specific timepoint. See {quorumDenominator}.\n */\n function quorumNumerator(uint256 timepoint) public view virtual returns (uint256) {\n return _optimisticUpperLookupRecent(_quorumNumeratorHistory, timepoint);\n }\n\n /**\n * @dev Returns the quorum denominator. Defaults to 100, but may be overridden.\n */\n function quorumDenominator() public view virtual returns (uint256) {\n return 100;\n }\n\n /**\n * @dev Returns the quorum for a timepoint, in terms of number of votes: `supply * numerator / denominator`.\n */\n function quorum(uint256 timepoint) public view virtual override returns (uint256) {\n return Math.mulDiv(token().getPastTotalSupply(timepoint), quorumNumerator(timepoint), quorumDenominator());\n }\n\n /**\n * @dev Changes the quorum numerator.\n *\n * Emits a {QuorumNumeratorUpdated} event.\n *\n * Requirements:\n *\n * - Must be called through a governance proposal.\n * - New numerator must be smaller or equal to the denominator.\n */\n function updateQuorumNumerator(uint256 newQuorumNumerator) external virtual onlyGovernance {\n _updateQuorumNumerator(newQuorumNumerator);\n }\n\n /**\n * @dev Changes the quorum numerator.\n *\n * Emits a {QuorumNumeratorUpdated} event.\n *\n * Requirements:\n *\n * - New numerator must be smaller or equal to the denominator.\n */\n function _updateQuorumNumerator(uint256 newQuorumNumerator) internal virtual {\n uint256 denominator = quorumDenominator();\n if (newQuorumNumerator > denominator) {\n revert GovernorInvalidQuorumFraction(newQuorumNumerator, denominator);\n }\n\n uint256 oldQuorumNumerator = quorumNumerator();\n _quorumNumeratorHistory.push(clock(), SafeCast.toUint208(newQuorumNumerator));\n\n emit QuorumNumeratorUpdated(oldQuorumNumerator, newQuorumNumerator);\n }\n\n /**\n * @dev Returns the numerator at a specific timepoint.\n */\n function _optimisticUpperLookupRecent(\n Checkpoints.Trace208 storage ckpts,\n uint256 timepoint\n ) internal view returns (uint256) {\n // If trace is empty, key and value are both equal to 0.\n // In that case `key <= timepoint` is true, and it is ok to return 0.\n (, uint48 key, uint208 value) = ckpts.latestCheckpoint();\n return key <= timepoint ? value : ckpts.upperLookupRecent(SafeCast.toUint48(timepoint));\n }\n}\n"},"@openzeppelin/contracts/governance/Governor.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (governance/Governor.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC721Receiver} from \"../token/ERC721/IERC721Receiver.sol\";\nimport {IERC1155Receiver} from \"../token/ERC1155/IERC1155Receiver.sol\";\nimport {EIP712} from \"../utils/cryptography/EIP712.sol\";\nimport {SignatureChecker} from \"../utils/cryptography/SignatureChecker.sol\";\nimport {IERC165, ERC165} from \"../utils/introspection/ERC165.sol\";\nimport {SafeCast} from \"../utils/math/SafeCast.sol\";\nimport {DoubleEndedQueue} from \"../utils/structs/DoubleEndedQueue.sol\";\nimport {Address} from \"../utils/Address.sol\";\nimport {Context} from \"../utils/Context.sol\";\nimport {Nonces} from \"../utils/Nonces.sol\";\nimport {Strings} from \"../utils/Strings.sol\";\nimport {IGovernor, IERC6372} from \"./IGovernor.sol\";\n\n/**\n * @dev Core of the governance system, designed to be extended through various modules.\n *\n * This contract is abstract and requires several functions to be implemented in various modules:\n *\n * - A counting module must implement {_quorumReached}, {_voteSucceeded} and {_countVote}\n * - A voting module must implement {_getVotes}\n * - Additionally, {votingPeriod}, {votingDelay}, and {quorum} must also be implemented\n */\nabstract contract Governor is Context, ERC165, EIP712, Nonces, IGovernor, IERC721Receiver, IERC1155Receiver {\n using DoubleEndedQueue for DoubleEndedQueue.Bytes32Deque;\n\n bytes32 public constant BALLOT_TYPEHASH =\n keccak256(\"Ballot(uint256 proposalId,uint8 support,address voter,uint256 nonce)\");\n bytes32 public constant EXTENDED_BALLOT_TYPEHASH =\n keccak256(\n \"ExtendedBallot(uint256 proposalId,uint8 support,address voter,uint256 nonce,string reason,bytes params)\"\n );\n\n struct ProposalCore {\n address proposer;\n uint48 voteStart;\n uint32 voteDuration;\n bool executed;\n bool canceled;\n uint48 etaSeconds;\n }\n\n bytes32 private constant ALL_PROPOSAL_STATES_BITMAP = bytes32((2 ** (uint8(type(ProposalState).max) + 1)) - 1);\n string private _name;\n\n mapping(uint256 proposalId => ProposalCore) private _proposals;\n\n // This queue keeps track of the governor operating on itself. Calls to functions protected by the {onlyGovernance}\n // modifier needs to be whitelisted in this queue. Whitelisting is set in {execute}, consumed by the\n // {onlyGovernance} modifier and eventually reset after {_executeOperations} completes. This ensures that the\n // execution of {onlyGovernance} protected calls can only be achieved through successful proposals.\n DoubleEndedQueue.Bytes32Deque private _governanceCall;\n\n /**\n * @dev Restricts a function so it can only be executed through governance proposals. For example, governance\n * parameter setters in {GovernorSettings} are protected using this modifier.\n *\n * The governance executing address may be different from the Governor's own address, for example it could be a\n * timelock. This can be customized by modules by overriding {_executor}. The executor is only able to invoke these\n * functions during the execution of the governor's {execute} function, and not under any other circumstances. Thus,\n * for example, additional timelock proposers are not able to change governance parameters without going through the\n * governance protocol (since v4.6).\n */\n modifier onlyGovernance() {\n _checkGovernance();\n _;\n }\n\n /**\n * @dev Sets the value for {name} and {version}\n */\n constructor(string memory name_) EIP712(name_, version()) {\n _name = name_;\n }\n\n /**\n * @dev Function to receive ETH that will be handled by the governor (disabled if executor is a third party contract)\n */\n receive() external payable virtual {\n if (_executor() != address(this)) {\n revert GovernorDisabledDeposit();\n }\n }\n\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {\n return\n interfaceId == type(IGovernor).interfaceId ||\n interfaceId == type(IGovernor).interfaceId ^ IGovernor.getProposalId.selector ||\n interfaceId == type(IERC1155Receiver).interfaceId ||\n super.supportsInterface(interfaceId);\n }\n\n /**\n * @dev See {IGovernor-name}.\n */\n function name() public view virtual returns (string memory) {\n return _name;\n }\n\n /**\n * @dev See {IGovernor-version}.\n */\n function version() public view virtual returns (string memory) {\n return \"1\";\n }\n\n /**\n * @dev See {IGovernor-hashProposal}.\n *\n * The proposal id is produced by hashing the ABI encoded `targets` array, the `values` array, the `calldatas` array\n * and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id\n * can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in\n * advance, before the proposal is submitted.\n *\n * Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the\n * same proposal (with same operation and same description) will have the same id if submitted on multiple governors\n * across multiple networks. This also means that in order to execute the same operation twice (on the same\n * governor) the proposer will have to change the description in order to avoid proposal id conflicts.\n */\n function hashProposal(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) public pure virtual returns (uint256) {\n return uint256(keccak256(abi.encode(targets, values, calldatas, descriptionHash)));\n }\n\n /**\n * @dev See {IGovernor-getProposalId}.\n */\n function getProposalId(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) public view virtual returns (uint256) {\n return hashProposal(targets, values, calldatas, descriptionHash);\n }\n\n /**\n * @dev See {IGovernor-state}.\n */\n function state(uint256 proposalId) public view virtual returns (ProposalState) {\n // We read the struct fields into the stack at once so Solidity emits a single SLOAD\n ProposalCore storage proposal = _proposals[proposalId];\n bool proposalExecuted = proposal.executed;\n bool proposalCanceled = proposal.canceled;\n\n if (proposalExecuted) {\n return ProposalState.Executed;\n }\n\n if (proposalCanceled) {\n return ProposalState.Canceled;\n }\n\n uint256 snapshot = proposalSnapshot(proposalId);\n\n if (snapshot == 0) {\n revert GovernorNonexistentProposal(proposalId);\n }\n\n uint256 currentTimepoint = clock();\n\n if (snapshot >= currentTimepoint) {\n return ProposalState.Pending;\n }\n\n uint256 deadline = proposalDeadline(proposalId);\n\n if (deadline >= currentTimepoint) {\n return ProposalState.Active;\n } else if (!_quorumReached(proposalId) || !_voteSucceeded(proposalId)) {\n return ProposalState.Defeated;\n } else if (proposalEta(proposalId) == 0) {\n return ProposalState.Succeeded;\n } else {\n return ProposalState.Queued;\n }\n }\n\n /**\n * @dev See {IGovernor-proposalThreshold}.\n */\n function proposalThreshold() public view virtual returns (uint256) {\n return 0;\n }\n\n /**\n * @dev See {IGovernor-proposalSnapshot}.\n */\n function proposalSnapshot(uint256 proposalId) public view virtual returns (uint256) {\n return _proposals[proposalId].voteStart;\n }\n\n /**\n * @dev See {IGovernor-proposalDeadline}.\n */\n function proposalDeadline(uint256 proposalId) public view virtual returns (uint256) {\n return _proposals[proposalId].voteStart + _proposals[proposalId].voteDuration;\n }\n\n /**\n * @dev See {IGovernor-proposalProposer}.\n */\n function proposalProposer(uint256 proposalId) public view virtual returns (address) {\n return _proposals[proposalId].proposer;\n }\n\n /**\n * @dev See {IGovernor-proposalEta}.\n */\n function proposalEta(uint256 proposalId) public view virtual returns (uint256) {\n return _proposals[proposalId].etaSeconds;\n }\n\n /**\n * @dev See {IGovernor-proposalNeedsQueuing}.\n */\n function proposalNeedsQueuing(uint256) public view virtual returns (bool) {\n return false;\n }\n\n /**\n * @dev Reverts if the `msg.sender` is not the executor. In case the executor is not this contract\n * itself, the function reverts if `msg.data` is not whitelisted as a result of an {execute}\n * operation. See {onlyGovernance}.\n */\n function _checkGovernance() internal virtual {\n if (_executor() != _msgSender()) {\n revert GovernorOnlyExecutor(_msgSender());\n }\n if (_executor() != address(this)) {\n bytes32 msgDataHash = keccak256(_msgData());\n // loop until popping the expected operation - throw if deque is empty (operation not authorized)\n while (_governanceCall.popFront() != msgDataHash) {}\n }\n }\n\n /**\n * @dev Amount of votes already cast passes the threshold limit.\n */\n function _quorumReached(uint256 proposalId) internal view virtual returns (bool);\n\n /**\n * @dev Is the proposal successful or not.\n */\n function _voteSucceeded(uint256 proposalId) internal view virtual returns (bool);\n\n /**\n * @dev Get the voting weight of `account` at a specific `timepoint`, for a vote as described by `params`.\n */\n function _getVotes(address account, uint256 timepoint, bytes memory params) internal view virtual returns (uint256);\n\n /**\n * @dev Register a vote for `proposalId` by `account` with a given `support`, voting `weight` and voting `params`.\n *\n * Note: Support is generic and can represent various things depending on the voting system used.\n */\n function _countVote(\n uint256 proposalId,\n address account,\n uint8 support,\n uint256 totalWeight,\n bytes memory params\n ) internal virtual returns (uint256);\n\n /**\n * @dev Hook that should be called every time the tally for a proposal is updated.\n *\n * Note: This function must run successfully. Reverts will result in the bricking of governance\n */\n function _tallyUpdated(uint256 proposalId) internal virtual {}\n\n /**\n * @dev Default additional encoded parameters used by castVote methods that don't include them\n *\n * Note: Should be overridden by specific implementations to use an appropriate value, the\n * meaning of the additional params, in the context of that implementation\n */\n function _defaultParams() internal view virtual returns (bytes memory) {\n return \"\";\n }\n\n /**\n * @dev See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}.\n */\n function propose(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n string memory description\n ) public virtual returns (uint256) {\n address proposer = _msgSender();\n\n // check description restriction\n if (!_isValidDescriptionForProposer(proposer, description)) {\n revert GovernorRestrictedProposer(proposer);\n }\n\n // check proposal threshold\n uint256 votesThreshold = proposalThreshold();\n if (votesThreshold > 0) {\n uint256 proposerVotes = getVotes(proposer, clock() - 1);\n if (proposerVotes < votesThreshold) {\n revert GovernorInsufficientProposerVotes(proposer, proposerVotes, votesThreshold);\n }\n }\n\n return _propose(targets, values, calldatas, description, proposer);\n }\n\n /**\n * @dev Internal propose mechanism. Can be overridden to add more logic on proposal creation.\n *\n * Emits a {IGovernor-ProposalCreated} event.\n */\n function _propose(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n string memory description,\n address proposer\n ) internal virtual returns (uint256 proposalId) {\n proposalId = getProposalId(targets, values, calldatas, keccak256(bytes(description)));\n\n if (targets.length != values.length || targets.length != calldatas.length || targets.length == 0) {\n revert GovernorInvalidProposalLength(targets.length, calldatas.length, values.length);\n }\n if (_proposals[proposalId].voteStart != 0) {\n revert GovernorUnexpectedProposalState(proposalId, state(proposalId), bytes32(0));\n }\n\n uint256 snapshot = clock() + votingDelay();\n uint256 duration = votingPeriod();\n\n ProposalCore storage proposal = _proposals[proposalId];\n proposal.proposer = proposer;\n proposal.voteStart = SafeCast.toUint48(snapshot);\n proposal.voteDuration = SafeCast.toUint32(duration);\n\n emit ProposalCreated(\n proposalId,\n proposer,\n targets,\n values,\n new string[](targets.length),\n calldatas,\n snapshot,\n snapshot + duration,\n description\n );\n\n // Using a named return variable to avoid stack too deep errors\n }\n\n /**\n * @dev See {IGovernor-queue}.\n */\n function queue(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) public virtual returns (uint256) {\n uint256 proposalId = getProposalId(targets, values, calldatas, descriptionHash);\n\n _validateStateBitmap(proposalId, _encodeStateBitmap(ProposalState.Succeeded));\n\n uint48 etaSeconds = _queueOperations(proposalId, targets, values, calldatas, descriptionHash);\n\n if (etaSeconds != 0) {\n _proposals[proposalId].etaSeconds = etaSeconds;\n emit ProposalQueued(proposalId, etaSeconds);\n } else {\n revert GovernorQueueNotImplemented();\n }\n\n return proposalId;\n }\n\n /**\n * @dev Internal queuing mechanism. Can be overridden (without a super call) to modify the way queuing is\n * performed (for example adding a vault/timelock).\n *\n * This is empty by default, and must be overridden to implement queuing.\n *\n * This function returns a timestamp that describes the expected ETA for execution. If the returned value is 0\n * (which is the default value), the core will consider queueing did not succeed, and the public {queue} function\n * will revert.\n *\n * NOTE: Calling this function directly will NOT check the current state of the proposal, or emit the\n * `ProposalQueued` event. Queuing a proposal should be done using {queue}.\n */\n function _queueOperations(\n uint256 /*proposalId*/,\n address[] memory /*targets*/,\n uint256[] memory /*values*/,\n bytes[] memory /*calldatas*/,\n bytes32 /*descriptionHash*/\n ) internal virtual returns (uint48) {\n return 0;\n }\n\n /**\n * @dev See {IGovernor-execute}.\n */\n function execute(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) public payable virtual returns (uint256) {\n uint256 proposalId = getProposalId(targets, values, calldatas, descriptionHash);\n\n _validateStateBitmap(\n proposalId,\n _encodeStateBitmap(ProposalState.Succeeded) | _encodeStateBitmap(ProposalState.Queued)\n );\n\n // mark as executed before calls to avoid reentrancy\n _proposals[proposalId].executed = true;\n\n // before execute: register governance call in queue.\n if (_executor() != address(this)) {\n for (uint256 i = 0; i < targets.length; ++i) {\n if (targets[i] == address(this)) {\n _governanceCall.pushBack(keccak256(calldatas[i]));\n }\n }\n }\n\n _executeOperations(proposalId, targets, values, calldatas, descriptionHash);\n\n // after execute: cleanup governance call queue.\n if (_executor() != address(this) && !_governanceCall.empty()) {\n _governanceCall.clear();\n }\n\n emit ProposalExecuted(proposalId);\n\n return proposalId;\n }\n\n /**\n * @dev Internal execution mechanism. Can be overridden (without a super call) to modify the way execution is\n * performed (for example adding a vault/timelock).\n *\n * NOTE: Calling this function directly will NOT check the current state of the proposal, set the executed flag to\n * true or emit the `ProposalExecuted` event. Executing a proposal should be done using {execute}.\n */\n function _executeOperations(\n uint256 /* proposalId */,\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 /*descriptionHash*/\n ) internal virtual {\n for (uint256 i = 0; i < targets.length; ++i) {\n (bool success, bytes memory returndata) = targets[i].call{value: values[i]}(calldatas[i]);\n Address.verifyCallResult(success, returndata);\n }\n }\n\n /**\n * @dev See {IGovernor-cancel}.\n */\n function cancel(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) public virtual returns (uint256) {\n // The proposalId will be recomputed in the `_cancel` call further down. However we need the value before we\n // do the internal call, because we need to check the proposal state BEFORE the internal `_cancel` call\n // changes it. The `getProposalId` duplication has a cost that is limited, and that we accept.\n uint256 proposalId = getProposalId(targets, values, calldatas, descriptionHash);\n\n address caller = _msgSender();\n if (!_validateCancel(proposalId, caller)) revert GovernorUnableToCancel(proposalId, caller);\n\n return _cancel(targets, values, calldatas, descriptionHash);\n }\n\n /**\n * @dev Internal cancel mechanism with minimal restrictions. A proposal can be cancelled in any state other than\n * Canceled, Expired, or Executed. Once cancelled a proposal can't be re-submitted.\n *\n * Emits a {IGovernor-ProposalCanceled} event.\n */\n function _cancel(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) internal virtual returns (uint256) {\n uint256 proposalId = getProposalId(targets, values, calldatas, descriptionHash);\n\n _validateStateBitmap(\n proposalId,\n ALL_PROPOSAL_STATES_BITMAP ^\n _encodeStateBitmap(ProposalState.Canceled) ^\n _encodeStateBitmap(ProposalState.Expired) ^\n _encodeStateBitmap(ProposalState.Executed)\n );\n\n _proposals[proposalId].canceled = true;\n emit ProposalCanceled(proposalId);\n\n return proposalId;\n }\n\n /**\n * @dev See {IGovernor-getVotes}.\n */\n function getVotes(address account, uint256 timepoint) public view virtual returns (uint256) {\n return _getVotes(account, timepoint, _defaultParams());\n }\n\n /**\n * @dev See {IGovernor-getVotesWithParams}.\n */\n function getVotesWithParams(\n address account,\n uint256 timepoint,\n bytes memory params\n ) public view virtual returns (uint256) {\n return _getVotes(account, timepoint, params);\n }\n\n /**\n * @dev See {IGovernor-castVote}.\n */\n function castVote(uint256 proposalId, uint8 support) public virtual returns (uint256) {\n address voter = _msgSender();\n return _castVote(proposalId, voter, support, \"\");\n }\n\n /**\n * @dev See {IGovernor-castVoteWithReason}.\n */\n function castVoteWithReason(\n uint256 proposalId,\n uint8 support,\n string calldata reason\n ) public virtual returns (uint256) {\n address voter = _msgSender();\n return _castVote(proposalId, voter, support, reason);\n }\n\n /**\n * @dev See {IGovernor-castVoteWithReasonAndParams}.\n */\n function castVoteWithReasonAndParams(\n uint256 proposalId,\n uint8 support,\n string calldata reason,\n bytes memory params\n ) public virtual returns (uint256) {\n address voter = _msgSender();\n return _castVote(proposalId, voter, support, reason, params);\n }\n\n /**\n * @dev See {IGovernor-castVoteBySig}.\n */\n function castVoteBySig(\n uint256 proposalId,\n uint8 support,\n address voter,\n bytes memory signature\n ) public virtual returns (uint256) {\n bool valid = SignatureChecker.isValidSignatureNow(\n voter,\n _hashTypedDataV4(keccak256(abi.encode(BALLOT_TYPEHASH, proposalId, support, voter, _useNonce(voter)))),\n signature\n );\n\n if (!valid) {\n revert GovernorInvalidSignature(voter);\n }\n\n return _castVote(proposalId, voter, support, \"\");\n }\n\n /**\n * @dev See {IGovernor-castVoteWithReasonAndParamsBySig}.\n */\n function castVoteWithReasonAndParamsBySig(\n uint256 proposalId,\n uint8 support,\n address voter,\n string calldata reason,\n bytes memory params,\n bytes memory signature\n ) public virtual returns (uint256) {\n bool valid = SignatureChecker.isValidSignatureNow(\n voter,\n _hashTypedDataV4(\n keccak256(\n abi.encode(\n EXTENDED_BALLOT_TYPEHASH,\n proposalId,\n support,\n voter,\n _useNonce(voter),\n keccak256(bytes(reason)),\n keccak256(params)\n )\n )\n ),\n signature\n );\n\n if (!valid) {\n revert GovernorInvalidSignature(voter);\n }\n\n return _castVote(proposalId, voter, support, reason, params);\n }\n\n /**\n * @dev Internal vote casting mechanism: Check that the vote is pending, that it has not been cast yet, retrieve\n * voting weight using {IGovernor-getVotes} and call the {_countVote} internal function. Uses the _defaultParams().\n *\n * Emits a {IGovernor-VoteCast} event.\n */\n function _castVote(\n uint256 proposalId,\n address account,\n uint8 support,\n string memory reason\n ) internal virtual returns (uint256) {\n return _castVote(proposalId, account, support, reason, _defaultParams());\n }\n\n /**\n * @dev Internal vote casting mechanism: Check that the vote is pending, that it has not been cast yet, retrieve\n * voting weight using {IGovernor-getVotes} and call the {_countVote} internal function.\n *\n * Emits a {IGovernor-VoteCast} event.\n */\n function _castVote(\n uint256 proposalId,\n address account,\n uint8 support,\n string memory reason,\n bytes memory params\n ) internal virtual returns (uint256) {\n _validateStateBitmap(proposalId, _encodeStateBitmap(ProposalState.Active));\n\n uint256 totalWeight = _getVotes(account, proposalSnapshot(proposalId), params);\n uint256 votedWeight = _countVote(proposalId, account, support, totalWeight, params);\n\n if (params.length == 0) {\n emit VoteCast(account, proposalId, support, votedWeight, reason);\n } else {\n emit VoteCastWithParams(account, proposalId, support, votedWeight, reason, params);\n }\n\n _tallyUpdated(proposalId);\n\n return votedWeight;\n }\n\n /**\n * @dev Relays a transaction or function call to an arbitrary target. In cases where the governance executor\n * is some contract other than the governor itself, like when using a timelock, this function can be invoked\n * in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake.\n * Note that if the executor is simply the governor itself, use of `relay` is redundant.\n */\n function relay(address target, uint256 value, bytes calldata data) external payable virtual onlyGovernance {\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n Address.verifyCallResult(success, returndata);\n }\n\n /**\n * @dev Address through which the governor executes action. Will be overloaded by module that execute actions\n * through another contract such as a timelock.\n */\n function _executor() internal view virtual returns (address) {\n return address(this);\n }\n\n /**\n * @dev See {IERC721Receiver-onERC721Received}.\n * Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\n */\n function onERC721Received(address, address, uint256, bytes memory) public virtual returns (bytes4) {\n if (_executor() != address(this)) {\n revert GovernorDisabledDeposit();\n }\n return this.onERC721Received.selector;\n }\n\n /**\n * @dev See {IERC1155Receiver-onERC1155Received}.\n * Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\n */\n function onERC1155Received(address, address, uint256, uint256, bytes memory) public virtual returns (bytes4) {\n if (_executor() != address(this)) {\n revert GovernorDisabledDeposit();\n }\n return this.onERC1155Received.selector;\n }\n\n /**\n * @dev See {IERC1155Receiver-onERC1155BatchReceived}.\n * Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\n */\n function onERC1155BatchReceived(\n address,\n address,\n uint256[] memory,\n uint256[] memory,\n bytes memory\n ) public virtual returns (bytes4) {\n if (_executor() != address(this)) {\n revert GovernorDisabledDeposit();\n }\n return this.onERC1155BatchReceived.selector;\n }\n\n /**\n * @dev Encodes a `ProposalState` into a `bytes32` representation where each bit enabled corresponds to\n * the underlying position in the `ProposalState` enum. For example:\n *\n * 0x000...10000\n * ^^^^^^------ ...\n * ^----- Succeeded\n * ^---- Defeated\n * ^--- Canceled\n * ^-- Active\n * ^- Pending\n */\n function _encodeStateBitmap(ProposalState proposalState) internal pure returns (bytes32) {\n return bytes32(1 << uint8(proposalState));\n }\n\n /**\n * @dev Check that the current state of a proposal matches the requirements described by the `allowedStates` bitmap.\n * This bitmap should be built using `_encodeStateBitmap`.\n *\n * If requirements are not met, reverts with a {GovernorUnexpectedProposalState} error.\n */\n function _validateStateBitmap(uint256 proposalId, bytes32 allowedStates) internal view returns (ProposalState) {\n ProposalState currentState = state(proposalId);\n if (_encodeStateBitmap(currentState) & allowedStates == bytes32(0)) {\n revert GovernorUnexpectedProposalState(proposalId, currentState, allowedStates);\n }\n return currentState;\n }\n\n /*\n * @dev Check if the proposer is authorized to submit a proposal with the given description.\n *\n * If the proposal description ends with `#proposer=0x???`, where `0x???` is an address written as a hex string\n * (case insensitive), then the submission of this proposal will only be authorized to said address.\n *\n * This is used for frontrunning protection. By adding this pattern at the end of their proposal, one can ensure\n * that no other address can submit the same proposal. An attacker would have to either remove or change that part,\n * which would result in a different proposal id.\n *\n * If the description does not match this pattern, it is unrestricted and anyone can submit it. This includes:\n * - If the `0x???` part is not a valid hex string.\n * - If the `0x???` part is a valid hex string, but does not contain exactly 40 hex digits.\n * - If it ends with the expected suffix followed by newlines or other whitespace.\n * - If it ends with some other similar suffix, e.g. `#other=abc`.\n * - If it does not end with any such suffix.\n */\n function _isValidDescriptionForProposer(\n address proposer,\n string memory description\n ) internal view virtual returns (bool) {\n unchecked {\n uint256 length = bytes(description).length;\n\n // Length is too short to contain a valid proposer suffix\n if (length < 52) {\n return true;\n }\n\n // Extract what would be the `#proposer=` marker beginning the suffix\n bytes10 marker = bytes10(_unsafeReadBytesOffset(bytes(description), length - 52));\n\n // If the marker is not found, there is no proposer suffix to check\n if (marker != bytes10(\"#proposer=\")) {\n return true;\n }\n\n // Check that the last 42 characters (after the marker) are a properly formatted address.\n (bool success, address recovered) = Strings.tryParseAddress(description, length - 42, length);\n return !success || recovered == proposer;\n }\n }\n\n /**\n * @dev Check if the `caller` can cancel the proposal with the given `proposalId`.\n *\n * The default implementation allows the proposal proposer to cancel the proposal during the pending state.\n */\n function _validateCancel(uint256 proposalId, address caller) internal view virtual returns (bool) {\n return (state(proposalId) == ProposalState.Pending) && caller == proposalProposer(proposalId);\n }\n\n /**\n * @inheritdoc IERC6372\n */\n function clock() public view virtual returns (uint48);\n\n /**\n * @inheritdoc IERC6372\n */\n // solhint-disable-next-line func-name-mixedcase\n function CLOCK_MODE() public view virtual returns (string memory);\n\n /**\n * @inheritdoc IGovernor\n */\n function votingDelay() public view virtual returns (uint256);\n\n /**\n * @inheritdoc IGovernor\n */\n function votingPeriod() public view virtual returns (uint256);\n\n /**\n * @inheritdoc IGovernor\n */\n function quorum(uint256 timepoint) public view virtual returns (uint256);\n\n /**\n * @dev Reads a bytes32 from a bytes array without bounds checking.\n *\n * NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the\n * assembly block as such would prevent some optimizations.\n */\n function _unsafeReadBytesOffset(bytes memory buffer, uint256 offset) private pure returns (bytes32 value) {\n // This is not memory safe in the general case, but all calls to this private function are within bounds.\n assembly (\"memory-safe\") {\n value := mload(add(buffer, add(0x20, offset)))\n }\n }\n}\n"},"@openzeppelin/contracts/governance/IGovernor.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (governance/IGovernor.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"../interfaces/IERC165.sol\";\nimport {IERC6372} from \"../interfaces/IERC6372.sol\";\n\n/**\n * @dev Interface of the {Governor} core.\n *\n * NOTE: Event parameters lack the `indexed` keyword for compatibility with GovernorBravo events.\n * Making event parameters `indexed` affects how events are decoded, potentially breaking existing indexers.\n */\ninterface IGovernor is IERC165, IERC6372 {\n enum ProposalState {\n Pending,\n Active,\n Canceled,\n Defeated,\n Succeeded,\n Queued,\n Expired,\n Executed\n }\n\n /**\n * @dev Empty proposal or a mismatch between the parameters length for a proposal call.\n */\n error GovernorInvalidProposalLength(uint256 targets, uint256 calldatas, uint256 values);\n\n /**\n * @dev The vote was already cast.\n */\n error GovernorAlreadyCastVote(address voter);\n\n /**\n * @dev Token deposits are disabled in this contract.\n */\n error GovernorDisabledDeposit();\n\n /**\n * @dev The `account` is not the governance executor.\n */\n error GovernorOnlyExecutor(address account);\n\n /**\n * @dev The `proposalId` doesn't exist.\n */\n error GovernorNonexistentProposal(uint256 proposalId);\n\n /**\n * @dev The current state of a proposal is not the required for performing an operation.\n * The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position\n * counting from right to left.\n *\n * NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist).\n * This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated).\n *\n * See {Governor-_encodeStateBitmap}.\n */\n error GovernorUnexpectedProposalState(uint256 proposalId, ProposalState current, bytes32 expectedStates);\n\n /**\n * @dev The voting period set is not a valid period.\n */\n error GovernorInvalidVotingPeriod(uint256 votingPeriod);\n\n /**\n * @dev The `proposer` does not have the required votes to create a proposal.\n */\n error GovernorInsufficientProposerVotes(address proposer, uint256 votes, uint256 threshold);\n\n /**\n * @dev The `proposer` is not allowed to create a proposal.\n */\n error GovernorRestrictedProposer(address proposer);\n\n /**\n * @dev The vote type used is not valid for the corresponding counting module.\n */\n error GovernorInvalidVoteType();\n\n /**\n * @dev The provided params buffer is not supported by the counting module.\n */\n error GovernorInvalidVoteParams();\n\n /**\n * @dev Queue operation is not implemented for this governor. Execute should be called directly.\n */\n error GovernorQueueNotImplemented();\n\n /**\n * @dev The proposal hasn't been queued yet.\n */\n error GovernorNotQueuedProposal(uint256 proposalId);\n\n /**\n * @dev The proposal has already been queued.\n */\n error GovernorAlreadyQueuedProposal(uint256 proposalId);\n\n /**\n * @dev The provided signature is not valid for the expected `voter`.\n * If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}.\n */\n error GovernorInvalidSignature(address voter);\n\n /**\n * @dev The given `account` is unable to cancel the proposal with given `proposalId`.\n */\n error GovernorUnableToCancel(uint256 proposalId, address account);\n\n /**\n * @dev Emitted when a proposal is created.\n */\n event ProposalCreated(\n uint256 proposalId,\n address proposer,\n address[] targets,\n uint256[] values,\n string[] signatures,\n bytes[] calldatas,\n uint256 voteStart,\n uint256 voteEnd,\n string description\n );\n\n /**\n * @dev Emitted when a proposal is queued.\n */\n event ProposalQueued(uint256 proposalId, uint256 etaSeconds);\n\n /**\n * @dev Emitted when a proposal is executed.\n */\n event ProposalExecuted(uint256 proposalId);\n\n /**\n * @dev Emitted when a proposal is canceled.\n */\n event ProposalCanceled(uint256 proposalId);\n\n /**\n * @dev Emitted when a vote is cast without params.\n *\n * Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\n */\n event VoteCast(address indexed voter, uint256 proposalId, uint8 support, uint256 weight, string reason);\n\n /**\n * @dev Emitted when a vote is cast with params.\n *\n * Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\n * `params` are additional encoded parameters. Their interpretation also depends on the voting module used.\n */\n event VoteCastWithParams(\n address indexed voter,\n uint256 proposalId,\n uint8 support,\n uint256 weight,\n string reason,\n bytes params\n );\n\n /**\n * @notice module:core\n * @dev Name of the governor instance (used in building the EIP-712 domain separator).\n */\n function name() external view returns (string memory);\n\n /**\n * @notice module:core\n * @dev Version of the governor instance (used in building the EIP-712 domain separator). Default: \"1\"\n */\n function version() external view returns (string memory);\n\n /**\n * @notice module:voting\n * @dev A description of the possible `support` values for {castVote} and the way these votes are counted, meant to\n * be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of\n * key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`.\n *\n * There are 2 standard keys: `support` and `quorum`.\n *\n * - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`.\n * - `quorum=bravo` means that only For votes are counted towards quorum.\n * - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum.\n *\n * If a counting module makes use of encoded `params`, it should include this under a `params` key with a unique\n * name that describes the behavior. For example:\n *\n * - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain.\n * - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote.\n *\n * NOTE: The string can be decoded by the standard\n * https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`]\n * JavaScript class.\n */\n // solhint-disable-next-line func-name-mixedcase\n function COUNTING_MODE() external view returns (string memory);\n\n /**\n * @notice module:core\n * @dev Hashing function used to (re)build the proposal id from the proposal details.\n *\n * NOTE: For all off-chain and external calls, use {getProposalId}.\n */\n function hashProposal(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) external pure returns (uint256);\n\n /**\n * @notice module:core\n * @dev Function used to get the proposal id from the proposal details.\n */\n function getProposalId(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) external view returns (uint256);\n\n /**\n * @notice module:core\n * @dev Current state of a proposal, following Compound's convention\n */\n function state(uint256 proposalId) external view returns (ProposalState);\n\n /**\n * @notice module:core\n * @dev The number of votes required in order for a voter to become a proposer.\n */\n function proposalThreshold() external view returns (uint256);\n\n /**\n * @notice module:core\n * @dev Timepoint used to retrieve user's votes and quorum. If using block number (as per Compound's Comp), the\n * snapshot is performed at the end of this block. Hence, voting for this proposal starts at the beginning of the\n * following block.\n */\n function proposalSnapshot(uint256 proposalId) external view returns (uint256);\n\n /**\n * @notice module:core\n * @dev Timepoint at which votes close. If using block number, votes close at the end of this block, so it is\n * possible to cast a vote during this block.\n */\n function proposalDeadline(uint256 proposalId) external view returns (uint256);\n\n /**\n * @notice module:core\n * @dev The account that created a proposal.\n */\n function proposalProposer(uint256 proposalId) external view returns (address);\n\n /**\n * @notice module:core\n * @dev The time when a queued proposal becomes executable (\"ETA\"). Unlike {proposalSnapshot} and\n * {proposalDeadline}, this doesn't use the governor clock, and instead relies on the executor's clock which may be\n * different. In most cases this will be a timestamp.\n */\n function proposalEta(uint256 proposalId) external view returns (uint256);\n\n /**\n * @notice module:core\n * @dev Whether a proposal needs to be queued before execution.\n */\n function proposalNeedsQueuing(uint256 proposalId) external view returns (bool);\n\n /**\n * @notice module:user-config\n * @dev Delay, between the proposal is created and the vote starts. The unit this duration is expressed in depends\n * on the clock (see ERC-6372) this contract uses.\n *\n * This can be increased to leave time for users to buy voting power, or delegate it, before the voting of a\n * proposal starts.\n *\n * NOTE: While this interface returns a uint256, timepoints are stored as uint48 following the ERC-6372 clock type.\n * Consequently this value must fit in a uint48 (when added to the current clock). See {IERC6372-clock}.\n */\n function votingDelay() external view returns (uint256);\n\n /**\n * @notice module:user-config\n * @dev Delay between the vote start and vote end. The unit this duration is expressed in depends on the clock\n * (see ERC-6372) this contract uses.\n *\n * NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting\n * duration compared to the voting delay.\n *\n * NOTE: This value is stored when the proposal is submitted so that possible changes to the value do not affect\n * proposals that have already been submitted. The type used to save it is a uint32. Consequently, while this\n * interface returns a uint256, the value it returns should fit in a uint32.\n */\n function votingPeriod() external view returns (uint256);\n\n /**\n * @notice module:user-config\n * @dev Minimum number of cast voted required for a proposal to be successful.\n *\n * NOTE: The `timepoint` parameter corresponds to the snapshot used for counting vote. This allows to scale the\n * quorum depending on values such as the totalSupply of a token at this timepoint (see {ERC20Votes}).\n */\n function quorum(uint256 timepoint) external view returns (uint256);\n\n /**\n * @notice module:reputation\n * @dev Voting power of an `account` at a specific `timepoint`.\n *\n * Note: this can be implemented in a number of ways, for example by reading the delegated balance from one (or\n * multiple), {ERC20Votes} tokens.\n */\n function getVotes(address account, uint256 timepoint) external view returns (uint256);\n\n /**\n * @notice module:reputation\n * @dev Voting power of an `account` at a specific `timepoint` given additional encoded parameters.\n */\n function getVotesWithParams(\n address account,\n uint256 timepoint,\n bytes memory params\n ) external view returns (uint256);\n\n /**\n * @notice module:voting\n * @dev Returns whether `account` has cast a vote on `proposalId`.\n */\n function hasVoted(uint256 proposalId, address account) external view returns (bool);\n\n /**\n * @dev Create a new proposal. Vote start after a delay specified by {IGovernor-votingDelay} and lasts for a\n * duration specified by {IGovernor-votingPeriod}.\n *\n * Emits a {ProposalCreated} event.\n *\n * NOTE: The state of the Governor and `targets` may change between the proposal creation and its execution.\n * This may be the result of third party actions on the targeted contracts, or other governor proposals.\n * For example, the balance of this contract could be updated or its access control permissions may be modified,\n * possibly compromising the proposal's ability to execute successfully (e.g. the governor doesn't have enough\n * value to cover a proposal with multiple transfers).\n */\n function propose(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n string memory description\n ) external returns (uint256 proposalId);\n\n /**\n * @dev Queue a proposal. Some governors require this step to be performed before execution can happen. If queuing\n * is not necessary, this function may revert.\n * Queuing a proposal requires the quorum to be reached, the vote to be successful, and the deadline to be reached.\n *\n * Emits a {ProposalQueued} event.\n */\n function queue(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) external returns (uint256 proposalId);\n\n /**\n * @dev Execute a successful proposal. This requires the quorum to be reached, the vote to be successful, and the\n * deadline to be reached. Depending on the governor it might also be required that the proposal was queued and\n * that some delay passed.\n *\n * Emits a {ProposalExecuted} event.\n *\n * NOTE: Some modules can modify the requirements for execution, for example by adding an additional timelock.\n */\n function execute(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) external payable returns (uint256 proposalId);\n\n /**\n * @dev Cancel a proposal. A proposal is cancellable by the proposer, but only while it is Pending state, i.e.\n * before the vote starts.\n *\n * Emits a {ProposalCanceled} event.\n */\n function cancel(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) external returns (uint256 proposalId);\n\n /**\n * @dev Cast a vote\n *\n * Emits a {VoteCast} event.\n */\n function castVote(uint256 proposalId, uint8 support) external returns (uint256 balance);\n\n /**\n * @dev Cast a vote with a reason\n *\n * Emits a {VoteCast} event.\n */\n function castVoteWithReason(\n uint256 proposalId,\n uint8 support,\n string calldata reason\n ) external returns (uint256 balance);\n\n /**\n * @dev Cast a vote with a reason and additional encoded parameters\n *\n * Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params.\n */\n function castVoteWithReasonAndParams(\n uint256 proposalId,\n uint8 support,\n string calldata reason,\n bytes memory params\n ) external returns (uint256 balance);\n\n /**\n * @dev Cast a vote using the voter's signature, including ERC-1271 signature support.\n *\n * Emits a {VoteCast} event.\n */\n function castVoteBySig(\n uint256 proposalId,\n uint8 support,\n address voter,\n bytes memory signature\n ) external returns (uint256 balance);\n\n /**\n * @dev Cast a vote with a reason and additional encoded parameters using the voter's signature,\n * including ERC-1271 signature support.\n *\n * Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params.\n */\n function castVoteWithReasonAndParamsBySig(\n uint256 proposalId,\n uint8 support,\n address voter,\n string calldata reason,\n bytes memory params,\n bytes memory signature\n ) external returns (uint256 balance);\n}\n"},"@openzeppelin/contracts/governance/TimelockController.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (governance/TimelockController.sol)\n\npragma solidity ^0.8.20;\n\nimport {AccessControl} from \"../access/AccessControl.sol\";\nimport {ERC721Holder} from \"../token/ERC721/utils/ERC721Holder.sol\";\nimport {ERC1155Holder} from \"../token/ERC1155/utils/ERC1155Holder.sol\";\nimport {Address} from \"../utils/Address.sol\";\n\n/**\n * @dev Contract module which acts as a timelocked controller. When set as the\n * owner of an `Ownable` smart contract, it enforces a timelock on all\n * `onlyOwner` maintenance operations. This gives time for users of the\n * controlled contract to exit before a potentially dangerous maintenance\n * operation is applied.\n *\n * By default, this contract is self administered, meaning administration tasks\n * have to go through the timelock process. The proposer (resp executor) role\n * is in charge of proposing (resp executing) operations. A common use case is\n * to position this {TimelockController} as the owner of a smart contract, with\n * a multisig or a DAO as the sole proposer.\n */\ncontract TimelockController is AccessControl, ERC721Holder, ERC1155Holder {\n bytes32 public constant PROPOSER_ROLE = keccak256(\"PROPOSER_ROLE\");\n bytes32 public constant EXECUTOR_ROLE = keccak256(\"EXECUTOR_ROLE\");\n bytes32 public constant CANCELLER_ROLE = keccak256(\"CANCELLER_ROLE\");\n uint256 internal constant _DONE_TIMESTAMP = uint256(1);\n\n mapping(bytes32 id => uint256) private _timestamps;\n uint256 private _minDelay;\n\n enum OperationState {\n Unset,\n Waiting,\n Ready,\n Done\n }\n\n /**\n * @dev Mismatch between the parameters length for an operation call.\n */\n error TimelockInvalidOperationLength(uint256 targets, uint256 payloads, uint256 values);\n\n /**\n * @dev The schedule operation doesn't meet the minimum delay.\n */\n error TimelockInsufficientDelay(uint256 delay, uint256 minDelay);\n\n /**\n * @dev The current state of an operation is not as required.\n * The `expectedStates` is a bitmap with the bits enabled for each OperationState enum position\n * counting from right to left.\n *\n * See {_encodeStateBitmap}.\n */\n error TimelockUnexpectedOperationState(bytes32 operationId, bytes32 expectedStates);\n\n /**\n * @dev The predecessor to an operation not yet done.\n */\n error TimelockUnexecutedPredecessor(bytes32 predecessorId);\n\n /**\n * @dev The caller account is not authorized.\n */\n error TimelockUnauthorizedCaller(address caller);\n\n /**\n * @dev Emitted when a call is scheduled as part of operation `id`.\n */\n event CallScheduled(\n bytes32 indexed id,\n uint256 indexed index,\n address target,\n uint256 value,\n bytes data,\n bytes32 predecessor,\n uint256 delay\n );\n\n /**\n * @dev Emitted when a call is performed as part of operation `id`.\n */\n event CallExecuted(bytes32 indexed id, uint256 indexed index, address target, uint256 value, bytes data);\n\n /**\n * @dev Emitted when new proposal is scheduled with non-zero salt.\n */\n event CallSalt(bytes32 indexed id, bytes32 salt);\n\n /**\n * @dev Emitted when operation `id` is cancelled.\n */\n event Cancelled(bytes32 indexed id);\n\n /**\n * @dev Emitted when the minimum delay for future operations is modified.\n */\n event MinDelayChange(uint256 oldDuration, uint256 newDuration);\n\n /**\n * @dev Initializes the contract with the following parameters:\n *\n * - `minDelay`: initial minimum delay in seconds for operations\n * - `proposers`: accounts to be granted proposer and canceller roles\n * - `executors`: accounts to be granted executor role\n * - `admin`: optional account to be granted admin role; disable with zero address\n *\n * IMPORTANT: The optional admin can aid with initial configuration of roles after deployment\n * without being subject to delay, but this role should be subsequently renounced in favor of\n * administration through timelocked proposals. Previous versions of this contract would assign\n * this admin to the deployer automatically and should be renounced as well.\n */\n constructor(uint256 minDelay, address[] memory proposers, address[] memory executors, address admin) {\n // self administration\n _grantRole(DEFAULT_ADMIN_ROLE, address(this));\n\n // optional admin\n if (admin != address(0)) {\n _grantRole(DEFAULT_ADMIN_ROLE, admin);\n }\n\n // register proposers and cancellers\n for (uint256 i = 0; i < proposers.length; ++i) {\n _grantRole(PROPOSER_ROLE, proposers[i]);\n _grantRole(CANCELLER_ROLE, proposers[i]);\n }\n\n // register executors\n for (uint256 i = 0; i < executors.length; ++i) {\n _grantRole(EXECUTOR_ROLE, executors[i]);\n }\n\n _minDelay = minDelay;\n emit MinDelayChange(0, minDelay);\n }\n\n /**\n * @dev Modifier to make a function callable only by a certain role. In\n * addition to checking the sender's role, `address(0)` 's role is also\n * considered. Granting a role to `address(0)` is equivalent to enabling\n * this role for everyone.\n */\n modifier onlyRoleOrOpenRole(bytes32 role) {\n if (!hasRole(role, address(0))) {\n _checkRole(role, _msgSender());\n }\n _;\n }\n\n /**\n * @dev Contract might receive/hold ETH as part of the maintenance process.\n */\n receive() external payable virtual {}\n\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(\n bytes4 interfaceId\n ) public view virtual override(AccessControl, ERC1155Holder) returns (bool) {\n return super.supportsInterface(interfaceId);\n }\n\n /**\n * @dev Returns whether an id corresponds to a registered operation. This\n * includes both Waiting, Ready, and Done operations.\n */\n function isOperation(bytes32 id) public view returns (bool) {\n return getOperationState(id) != OperationState.Unset;\n }\n\n /**\n * @dev Returns whether an operation is pending or not. Note that a \"pending\" operation may also be \"ready\".\n */\n function isOperationPending(bytes32 id) public view returns (bool) {\n OperationState state = getOperationState(id);\n return state == OperationState.Waiting || state == OperationState.Ready;\n }\n\n /**\n * @dev Returns whether an operation is ready for execution. Note that a \"ready\" operation is also \"pending\".\n */\n function isOperationReady(bytes32 id) public view returns (bool) {\n return getOperationState(id) == OperationState.Ready;\n }\n\n /**\n * @dev Returns whether an operation is done or not.\n */\n function isOperationDone(bytes32 id) public view returns (bool) {\n return getOperationState(id) == OperationState.Done;\n }\n\n /**\n * @dev Returns the timestamp at which an operation becomes ready (0 for\n * unset operations, 1 for done operations).\n */\n function getTimestamp(bytes32 id) public view virtual returns (uint256) {\n return _timestamps[id];\n }\n\n /**\n * @dev Returns operation state.\n */\n function getOperationState(bytes32 id) public view virtual returns (OperationState) {\n uint256 timestamp = getTimestamp(id);\n if (timestamp == 0) {\n return OperationState.Unset;\n } else if (timestamp == _DONE_TIMESTAMP) {\n return OperationState.Done;\n } else if (timestamp > block.timestamp) {\n return OperationState.Waiting;\n } else {\n return OperationState.Ready;\n }\n }\n\n /**\n * @dev Returns the minimum delay in seconds for an operation to become valid.\n *\n * This value can be changed by executing an operation that calls `updateDelay`.\n */\n function getMinDelay() public view virtual returns (uint256) {\n return _minDelay;\n }\n\n /**\n * @dev Returns the identifier of an operation containing a single\n * transaction.\n */\n function hashOperation(\n address target,\n uint256 value,\n bytes calldata data,\n bytes32 predecessor,\n bytes32 salt\n ) public pure virtual returns (bytes32) {\n return keccak256(abi.encode(target, value, data, predecessor, salt));\n }\n\n /**\n * @dev Returns the identifier of an operation containing a batch of\n * transactions.\n */\n function hashOperationBatch(\n address[] calldata targets,\n uint256[] calldata values,\n bytes[] calldata payloads,\n bytes32 predecessor,\n bytes32 salt\n ) public pure virtual returns (bytes32) {\n return keccak256(abi.encode(targets, values, payloads, predecessor, salt));\n }\n\n /**\n * @dev Schedule an operation containing a single transaction.\n *\n * Emits {CallSalt} if salt is nonzero, and {CallScheduled}.\n *\n * Requirements:\n *\n * - the caller must have the 'proposer' role.\n */\n function schedule(\n address target,\n uint256 value,\n bytes calldata data,\n bytes32 predecessor,\n bytes32 salt,\n uint256 delay\n ) public virtual onlyRole(PROPOSER_ROLE) {\n bytes32 id = hashOperation(target, value, data, predecessor, salt);\n _schedule(id, delay);\n emit CallScheduled(id, 0, target, value, data, predecessor, delay);\n if (salt != bytes32(0)) {\n emit CallSalt(id, salt);\n }\n }\n\n /**\n * @dev Schedule an operation containing a batch of transactions.\n *\n * Emits {CallSalt} if salt is nonzero, and one {CallScheduled} event per transaction in the batch.\n *\n * Requirements:\n *\n * - the caller must have the 'proposer' role.\n */\n function scheduleBatch(\n address[] calldata targets,\n uint256[] calldata values,\n bytes[] calldata payloads,\n bytes32 predecessor,\n bytes32 salt,\n uint256 delay\n ) public virtual onlyRole(PROPOSER_ROLE) {\n if (targets.length != values.length || targets.length != payloads.length) {\n revert TimelockInvalidOperationLength(targets.length, payloads.length, values.length);\n }\n\n bytes32 id = hashOperationBatch(targets, values, payloads, predecessor, salt);\n _schedule(id, delay);\n for (uint256 i = 0; i < targets.length; ++i) {\n emit CallScheduled(id, i, targets[i], values[i], payloads[i], predecessor, delay);\n }\n if (salt != bytes32(0)) {\n emit CallSalt(id, salt);\n }\n }\n\n /**\n * @dev Schedule an operation that is to become valid after a given delay.\n */\n function _schedule(bytes32 id, uint256 delay) private {\n if (isOperation(id)) {\n revert TimelockUnexpectedOperationState(id, _encodeStateBitmap(OperationState.Unset));\n }\n uint256 minDelay = getMinDelay();\n if (delay < minDelay) {\n revert TimelockInsufficientDelay(delay, minDelay);\n }\n _timestamps[id] = block.timestamp + delay;\n }\n\n /**\n * @dev Cancel an operation.\n *\n * Requirements:\n *\n * - the caller must have the 'canceller' role.\n */\n function cancel(bytes32 id) public virtual onlyRole(CANCELLER_ROLE) {\n if (!isOperationPending(id)) {\n revert TimelockUnexpectedOperationState(\n id,\n _encodeStateBitmap(OperationState.Waiting) | _encodeStateBitmap(OperationState.Ready)\n );\n }\n delete _timestamps[id];\n\n emit Cancelled(id);\n }\n\n /**\n * @dev Execute an (ready) operation containing a single transaction.\n *\n * Emits a {CallExecuted} event.\n *\n * Requirements:\n *\n * - the caller must have the 'executor' role.\n */\n // This function can reenter, but it doesn't pose a risk because _afterCall checks that the proposal is pending,\n // thus any modifications to the operation during reentrancy should be caught.\n // slither-disable-next-line reentrancy-eth\n function execute(\n address target,\n uint256 value,\n bytes calldata payload,\n bytes32 predecessor,\n bytes32 salt\n ) public payable virtual onlyRoleOrOpenRole(EXECUTOR_ROLE) {\n bytes32 id = hashOperation(target, value, payload, predecessor, salt);\n\n _beforeCall(id, predecessor);\n _execute(target, value, payload);\n emit CallExecuted(id, 0, target, value, payload);\n _afterCall(id);\n }\n\n /**\n * @dev Execute an (ready) operation containing a batch of transactions.\n *\n * Emits one {CallExecuted} event per transaction in the batch.\n *\n * Requirements:\n *\n * - the caller must have the 'executor' role.\n */\n // This function can reenter, but it doesn't pose a risk because _afterCall checks that the proposal is pending,\n // thus any modifications to the operation during reentrancy should be caught.\n // slither-disable-next-line reentrancy-eth\n function executeBatch(\n address[] calldata targets,\n uint256[] calldata values,\n bytes[] calldata payloads,\n bytes32 predecessor,\n bytes32 salt\n ) public payable virtual onlyRoleOrOpenRole(EXECUTOR_ROLE) {\n if (targets.length != values.length || targets.length != payloads.length) {\n revert TimelockInvalidOperationLength(targets.length, payloads.length, values.length);\n }\n\n bytes32 id = hashOperationBatch(targets, values, payloads, predecessor, salt);\n\n _beforeCall(id, predecessor);\n for (uint256 i = 0; i < targets.length; ++i) {\n address target = targets[i];\n uint256 value = values[i];\n bytes calldata payload = payloads[i];\n _execute(target, value, payload);\n emit CallExecuted(id, i, target, value, payload);\n }\n _afterCall(id);\n }\n\n /**\n * @dev Execute an operation's call.\n */\n function _execute(address target, uint256 value, bytes calldata data) internal virtual {\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n Address.verifyCallResult(success, returndata);\n }\n\n /**\n * @dev Checks before execution of an operation's calls.\n */\n function _beforeCall(bytes32 id, bytes32 predecessor) private view {\n if (!isOperationReady(id)) {\n revert TimelockUnexpectedOperationState(id, _encodeStateBitmap(OperationState.Ready));\n }\n if (predecessor != bytes32(0) && !isOperationDone(predecessor)) {\n revert TimelockUnexecutedPredecessor(predecessor);\n }\n }\n\n /**\n * @dev Checks after execution of an operation's calls.\n */\n function _afterCall(bytes32 id) private {\n if (!isOperationReady(id)) {\n revert TimelockUnexpectedOperationState(id, _encodeStateBitmap(OperationState.Ready));\n }\n _timestamps[id] = _DONE_TIMESTAMP;\n }\n\n /**\n * @dev Changes the minimum timelock duration for future operations.\n *\n * Emits a {MinDelayChange} event.\n *\n * Requirements:\n *\n * - the caller must be the timelock itself. This can only be achieved by scheduling and later executing\n * an operation where the timelock is the target and the data is the ABI-encoded call to this function.\n */\n function updateDelay(uint256 newDelay) external virtual {\n address sender = _msgSender();\n if (sender != address(this)) {\n revert TimelockUnauthorizedCaller(sender);\n }\n emit MinDelayChange(_minDelay, newDelay);\n _minDelay = newDelay;\n }\n\n /**\n * @dev Encodes a `OperationState` into a `bytes32` representation where each bit enabled corresponds to\n * the underlying position in the `OperationState` enum. For example:\n *\n * 0x000...1000\n * ^^^^^^----- ...\n * ^---- Done\n * ^--- Ready\n * ^-- Waiting\n * ^- Unset\n */\n function _encodeStateBitmap(OperationState operationState) internal pure returns (bytes32) {\n return bytes32(1 << uint8(operationState));\n }\n}\n"},"@openzeppelin/contracts/governance/utils/IVotes.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (governance/utils/IVotes.sol)\npragma solidity ^0.8.20;\n\n/**\n * @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts.\n */\ninterface IVotes {\n /**\n * @dev The signature used has expired.\n */\n error VotesExpiredSignature(uint256 expiry);\n\n /**\n * @dev Emitted when an account changes their delegate.\n */\n event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);\n\n /**\n * @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units.\n */\n event DelegateVotesChanged(address indexed delegate, uint256 previousVotes, uint256 newVotes);\n\n /**\n * @dev Returns the current amount of votes that `account` has.\n */\n function getVotes(address account) external view returns (uint256);\n\n /**\n * @dev Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is\n * configured to use block numbers, this will return the value at the end of the corresponding block.\n */\n function getPastVotes(address account, uint256 timepoint) external view returns (uint256);\n\n /**\n * @dev Returns the total supply of votes available at a specific moment in the past. If the `clock()` is\n * configured to use block numbers, this will return the value at the end of the corresponding block.\n *\n * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.\n * Votes that have not been delegated are still part of total supply, even though they would not participate in a\n * vote.\n */\n function getPastTotalSupply(uint256 timepoint) external view returns (uint256);\n\n /**\n * @dev Returns the delegate that `account` has chosen.\n */\n function delegates(address account) external view returns (address);\n\n /**\n * @dev Delegates votes from the sender to `delegatee`.\n */\n function delegate(address delegatee) external;\n\n /**\n * @dev Delegates votes from signer to `delegatee`.\n */\n function delegateBySig(address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s) external;\n}\n"},"@openzeppelin/contracts/governance/utils/Votes.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (governance/utils/Votes.sol)\npragma solidity ^0.8.20;\n\nimport {IERC5805} from \"../../interfaces/IERC5805.sol\";\nimport {Context} from \"../../utils/Context.sol\";\nimport {Nonces} from \"../../utils/Nonces.sol\";\nimport {EIP712} from \"../../utils/cryptography/EIP712.sol\";\nimport {Checkpoints} from \"../../utils/structs/Checkpoints.sol\";\nimport {SafeCast} from \"../../utils/math/SafeCast.sol\";\nimport {ECDSA} from \"../../utils/cryptography/ECDSA.sol\";\nimport {Time} from \"../../utils/types/Time.sol\";\n\n/**\n * @dev This is a base abstract contract that tracks voting units, which are a measure of voting power that can be\n * transferred, and provides a system of vote delegation, where an account can delegate its voting units to a sort of\n * \"representative\" that will pool delegated voting units from different accounts and can then use it to vote in\n * decisions. In fact, voting units _must_ be delegated in order to count as actual votes, and an account has to\n * delegate those votes to itself if it wishes to participate in decisions and does not have a trusted representative.\n *\n * This contract is often combined with a token contract such that voting units correspond to token units. For an\n * example, see {ERC721Votes}.\n *\n * The full history of delegate votes is tracked on-chain so that governance protocols can consider votes as distributed\n * at a particular block number to protect against flash loans and double voting. The opt-in delegate system makes the\n * cost of this history tracking optional.\n *\n * When using this module the derived contract must implement {_getVotingUnits} (for example, make it return\n * {ERC721-balanceOf}), and can use {_transferVotingUnits} to track a change in the distribution of those units (in the\n * previous example, it would be included in {ERC721-_update}).\n */\nabstract contract Votes is Context, EIP712, Nonces, IERC5805 {\n using Checkpoints for Checkpoints.Trace208;\n\n bytes32 private constant DELEGATION_TYPEHASH =\n keccak256(\"Delegation(address delegatee,uint256 nonce,uint256 expiry)\");\n\n mapping(address account => address) private _delegatee;\n\n mapping(address delegatee => Checkpoints.Trace208) private _delegateCheckpoints;\n\n Checkpoints.Trace208 private _totalCheckpoints;\n\n /**\n * @dev The clock was incorrectly modified.\n */\n error ERC6372InconsistentClock();\n\n /**\n * @dev Lookup to future votes is not available.\n */\n error ERC5805FutureLookup(uint256 timepoint, uint48 clock);\n\n /**\n * @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based\n * checkpoints (and voting), in which case {CLOCK_MODE} should be overridden as well to match.\n */\n function clock() public view virtual returns (uint48) {\n return Time.blockNumber();\n }\n\n /**\n * @dev Machine-readable description of the clock as specified in ERC-6372.\n */\n // solhint-disable-next-line func-name-mixedcase\n function CLOCK_MODE() public view virtual returns (string memory) {\n // Check that the clock was not modified\n if (clock() != Time.blockNumber()) {\n revert ERC6372InconsistentClock();\n }\n return \"mode=blocknumber&from=default\";\n }\n\n /**\n * @dev Validate that a timepoint is in the past, and return it as a uint48.\n */\n function _validateTimepoint(uint256 timepoint) internal view returns (uint48) {\n uint48 currentTimepoint = clock();\n if (timepoint >= currentTimepoint) revert ERC5805FutureLookup(timepoint, currentTimepoint);\n return SafeCast.toUint48(timepoint);\n }\n\n /**\n * @dev Returns the current amount of votes that `account` has.\n */\n function getVotes(address account) public view virtual returns (uint256) {\n return _delegateCheckpoints[account].latest();\n }\n\n /**\n * @dev Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is\n * configured to use block numbers, this will return the value at the end of the corresponding block.\n *\n * Requirements:\n *\n * - `timepoint` must be in the past. If operating using block numbers, the block must be already mined.\n */\n function getPastVotes(address account, uint256 timepoint) public view virtual returns (uint256) {\n return _delegateCheckpoints[account].upperLookupRecent(_validateTimepoint(timepoint));\n }\n\n /**\n * @dev Returns the total supply of votes available at a specific moment in the past. If the `clock()` is\n * configured to use block numbers, this will return the value at the end of the corresponding block.\n *\n * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.\n * Votes that have not been delegated are still part of total supply, even though they would not participate in a\n * vote.\n *\n * Requirements:\n *\n * - `timepoint` must be in the past. If operating using block numbers, the block must be already mined.\n */\n function getPastTotalSupply(uint256 timepoint) public view virtual returns (uint256) {\n return _totalCheckpoints.upperLookupRecent(_validateTimepoint(timepoint));\n }\n\n /**\n * @dev Returns the current total supply of votes.\n */\n function _getTotalSupply() internal view virtual returns (uint256) {\n return _totalCheckpoints.latest();\n }\n\n /**\n * @dev Returns the delegate that `account` has chosen.\n */\n function delegates(address account) public view virtual returns (address) {\n return _delegatee[account];\n }\n\n /**\n * @dev Delegates votes from the sender to `delegatee`.\n */\n function delegate(address delegatee) public virtual {\n address account = _msgSender();\n _delegate(account, delegatee);\n }\n\n /**\n * @dev Delegates votes from signer to `delegatee`.\n */\n function delegateBySig(\n address delegatee,\n uint256 nonce,\n uint256 expiry,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) public virtual {\n if (block.timestamp > expiry) {\n revert VotesExpiredSignature(expiry);\n }\n address signer = ECDSA.recover(\n _hashTypedDataV4(keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry))),\n v,\n r,\n s\n );\n _useCheckedNonce(signer, nonce);\n _delegate(signer, delegatee);\n }\n\n /**\n * @dev Delegate all of `account`'s voting units to `delegatee`.\n *\n * Emits events {IVotes-DelegateChanged} and {IVotes-DelegateVotesChanged}.\n */\n function _delegate(address account, address delegatee) internal virtual {\n address oldDelegate = delegates(account);\n _delegatee[account] = delegatee;\n\n emit DelegateChanged(account, oldDelegate, delegatee);\n _moveDelegateVotes(oldDelegate, delegatee, _getVotingUnits(account));\n }\n\n /**\n * @dev Transfers, mints, or burns voting units. To register a mint, `from` should be zero. To register a burn, `to`\n * should be zero. Total supply of voting units will be adjusted with mints and burns.\n */\n function _transferVotingUnits(address from, address to, uint256 amount) internal virtual {\n if (from == address(0)) {\n _push(_totalCheckpoints, _add, SafeCast.toUint208(amount));\n }\n if (to == address(0)) {\n _push(_totalCheckpoints, _subtract, SafeCast.toUint208(amount));\n }\n _moveDelegateVotes(delegates(from), delegates(to), amount);\n }\n\n /**\n * @dev Moves delegated votes from one delegate to another.\n */\n function _moveDelegateVotes(address from, address to, uint256 amount) internal virtual {\n if (from != to && amount > 0) {\n if (from != address(0)) {\n (uint256 oldValue, uint256 newValue) = _push(\n _delegateCheckpoints[from],\n _subtract,\n SafeCast.toUint208(amount)\n );\n emit DelegateVotesChanged(from, oldValue, newValue);\n }\n if (to != address(0)) {\n (uint256 oldValue, uint256 newValue) = _push(\n _delegateCheckpoints[to],\n _add,\n SafeCast.toUint208(amount)\n );\n emit DelegateVotesChanged(to, oldValue, newValue);\n }\n }\n }\n\n /**\n * @dev Get number of checkpoints for `account`.\n */\n function _numCheckpoints(address account) internal view virtual returns (uint32) {\n return SafeCast.toUint32(_delegateCheckpoints[account].length());\n }\n\n /**\n * @dev Get the `pos`-th checkpoint for `account`.\n */\n function _checkpoints(\n address account,\n uint32 pos\n ) internal view virtual returns (Checkpoints.Checkpoint208 memory) {\n return _delegateCheckpoints[account].at(pos);\n }\n\n function _push(\n Checkpoints.Trace208 storage store,\n function(uint208, uint208) view returns (uint208) op,\n uint208 delta\n ) private returns (uint208 oldValue, uint208 newValue) {\n return store.push(clock(), op(store.latest(), delta));\n }\n\n function _add(uint208 a, uint208 b) private pure returns (uint208) {\n return a + b;\n }\n\n function _subtract(uint208 a, uint208 b) private pure returns (uint208) {\n return a - b;\n }\n\n /**\n * @dev Must return the voting units held by an account.\n */\n function _getVotingUnits(address) internal view virtual returns (uint256);\n}\n"},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)\npragma solidity ^0.8.20;\n\n/**\n * @dev Standard ERC-20 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.\n */\ninterface IERC20Errors {\n /**\n * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n * @param balance Current balance for the interacting account.\n * @param needed Minimum amount required to perform a transfer.\n */\n error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);\n\n /**\n * @dev Indicates a failure with the token `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n */\n error ERC20InvalidSender(address sender);\n\n /**\n * @dev Indicates a failure with the token `receiver`. Used in transfers.\n * @param receiver Address to which tokens are being transferred.\n */\n error ERC20InvalidReceiver(address receiver);\n\n /**\n * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.\n * @param spender Address that may be allowed to operate on tokens without being their owner.\n * @param allowance Amount of tokens a `spender` is allowed to operate with.\n * @param needed Minimum amount required to perform a transfer.\n */\n error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);\n\n /**\n * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n * @param approver Address initiating an approval operation.\n */\n error ERC20InvalidApprover(address approver);\n\n /**\n * @dev Indicates a failure with the `spender` to be approved. Used in approvals.\n * @param spender Address that may be allowed to operate on tokens without being their owner.\n */\n error ERC20InvalidSpender(address spender);\n}\n\n/**\n * @dev Standard ERC-721 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.\n */\ninterface IERC721Errors {\n /**\n * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.\n * Used in balance queries.\n * @param owner Address of the current owner of a token.\n */\n error ERC721InvalidOwner(address owner);\n\n /**\n * @dev Indicates a `tokenId` whose `owner` is the zero address.\n * @param tokenId Identifier number of a token.\n */\n error ERC721NonexistentToken(uint256 tokenId);\n\n /**\n * @dev Indicates an error related to the ownership over a particular token. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n * @param tokenId Identifier number of a token.\n * @param owner Address of the current owner of a token.\n */\n error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);\n\n /**\n * @dev Indicates a failure with the token `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n */\n error ERC721InvalidSender(address sender);\n\n /**\n * @dev Indicates a failure with the token `receiver`. Used in transfers.\n * @param receiver Address to which tokens are being transferred.\n */\n error ERC721InvalidReceiver(address receiver);\n\n /**\n * @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n * @param tokenId Identifier number of a token.\n */\n error ERC721InsufficientApproval(address operator, uint256 tokenId);\n\n /**\n * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n * @param approver Address initiating an approval operation.\n */\n error ERC721InvalidApprover(address approver);\n\n /**\n * @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n */\n error ERC721InvalidOperator(address operator);\n}\n\n/**\n * @dev Standard ERC-1155 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.\n */\ninterface IERC1155Errors {\n /**\n * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n * @param balance Current balance for the interacting account.\n * @param needed Minimum amount required to perform a transfer.\n * @param tokenId Identifier number of a token.\n */\n error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);\n\n /**\n * @dev Indicates a failure with the token `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n */\n error ERC1155InvalidSender(address sender);\n\n /**\n * @dev Indicates a failure with the token `receiver`. Used in transfers.\n * @param receiver Address to which tokens are being transferred.\n */\n error ERC1155InvalidReceiver(address receiver);\n\n /**\n * @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n * @param owner Address of the current owner of a token.\n */\n error ERC1155MissingApprovalForAll(address operator, address owner);\n\n /**\n * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n * @param approver Address initiating an approval operation.\n */\n error ERC1155InvalidApprover(address approver);\n\n /**\n * @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n */\n error ERC1155InvalidOperator(address operator);\n\n /**\n * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.\n * Used in batch transfers.\n * @param idsLength Length of the array of token identifiers\n * @param valuesLength Length of the array of token amounts\n */\n error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);\n}\n"},"@openzeppelin/contracts/interfaces/IERC1271.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (interfaces/IERC1271.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Interface of the ERC-1271 standard signature validation method for\n * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271].\n */\ninterface IERC1271 {\n /**\n * @dev Should return whether the signature provided is valid for the provided data\n * @param hash Hash of the data to be signed\n * @param signature Signature byte array associated with `hash`\n */\n function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue);\n}\n"},"@openzeppelin/contracts/interfaces/IERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"../utils/introspection/IERC165.sol\";\n"},"@openzeppelin/contracts/interfaces/IERC5267.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol)\n\npragma solidity ^0.8.20;\n\ninterface IERC5267 {\n /**\n * @dev MAY be emitted to signal that the domain could have changed.\n */\n event EIP712DomainChanged();\n\n /**\n * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712\n * signature.\n */\n function eip712Domain()\n external\n view\n returns (\n bytes1 fields,\n string memory name,\n string memory version,\n uint256 chainId,\n address verifyingContract,\n bytes32 salt,\n uint256[] memory extensions\n );\n}\n"},"@openzeppelin/contracts/interfaces/IERC5805.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5805.sol)\n\npragma solidity ^0.8.20;\n\nimport {IVotes} from \"../governance/utils/IVotes.sol\";\nimport {IERC6372} from \"./IERC6372.sol\";\n\ninterface IERC5805 is IERC6372, IVotes {}\n"},"@openzeppelin/contracts/interfaces/IERC6372.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC6372.sol)\n\npragma solidity ^0.8.20;\n\ninterface IERC6372 {\n /**\n * @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).\n */\n function clock() external view returns (uint48);\n\n /**\n * @dev Description of the clock\n */\n // solhint-disable-next-line func-name-mixedcase\n function CLOCK_MODE() external view returns (string memory);\n}\n"},"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC1155/IERC1155Receiver.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Interface that must be implemented by smart contracts in order to receive\n * ERC-1155 token transfers.\n */\ninterface IERC1155Receiver is IERC165 {\n /**\n * @dev Handles the receipt of a single ERC-1155 token type. This function is\n * called at the end of a `safeTransferFrom` after the balance has been updated.\n *\n * NOTE: To accept the transfer, this must return\n * `bytes4(keccak256(\"onERC1155Received(address,address,uint256,uint256,bytes)\"))`\n * (i.e. 0xf23a6e61, or its own function selector).\n *\n * @param operator The address which initiated the transfer (i.e. msg.sender)\n * @param from The address which previously owned the token\n * @param id The ID of the token being transferred\n * @param value The amount of tokens being transferred\n * @param data Additional data with no specified format\n * @return `bytes4(keccak256(\"onERC1155Received(address,address,uint256,uint256,bytes)\"))` if transfer is allowed\n */\n function onERC1155Received(\n address operator,\n address from,\n uint256 id,\n uint256 value,\n bytes calldata data\n ) external returns (bytes4);\n\n /**\n * @dev Handles the receipt of a multiple ERC-1155 token types. This function\n * is called at the end of a `safeBatchTransferFrom` after the balances have\n * been updated.\n *\n * NOTE: To accept the transfer(s), this must return\n * `bytes4(keccak256(\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\"))`\n * (i.e. 0xbc197c81, or its own function selector).\n *\n * @param operator The address which initiated the batch transfer (i.e. msg.sender)\n * @param from The address which previously owned the token\n * @param ids An array containing ids of each token being transferred (order and length must match values array)\n * @param values An array containing amounts of each token being transferred (order and length must match ids array)\n * @param data Additional data with no specified format\n * @return `bytes4(keccak256(\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\"))` if transfer is allowed\n */\n function onERC1155BatchReceived(\n address operator,\n address from,\n uint256[] calldata ids,\n uint256[] calldata values,\n bytes calldata data\n ) external returns (bytes4);\n}\n"},"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC1155/utils/ERC1155Holder.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165, ERC165} from \"../../../utils/introspection/ERC165.sol\";\nimport {IERC1155Receiver} from \"../IERC1155Receiver.sol\";\n\n/**\n * @dev Simple implementation of `IERC1155Receiver` that will allow a contract to hold ERC-1155 tokens.\n *\n * IMPORTANT: When inheriting this contract, you must include a way to use the received tokens, otherwise they will be\n * stuck.\n */\nabstract contract ERC1155Holder is ERC165, IERC1155Receiver {\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {\n return interfaceId == type(IERC1155Receiver).interfaceId || super.supportsInterface(interfaceId);\n }\n\n function onERC1155Received(\n address,\n address,\n uint256,\n uint256,\n bytes memory\n ) public virtual override returns (bytes4) {\n return this.onERC1155Received.selector;\n }\n\n function onERC1155BatchReceived(\n address,\n address,\n uint256[] memory,\n uint256[] memory,\n bytes memory\n ) public virtual override returns (bytes4) {\n return this.onERC1155BatchReceived.selector;\n }\n}\n"},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"./IERC20.sol\";\nimport {IERC20Metadata} from \"./extensions/IERC20Metadata.sol\";\nimport {Context} from \"../../utils/Context.sol\";\nimport {IERC20Errors} from \"../../interfaces/draft-IERC6093.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * The default value of {decimals} is 18. To change this, you should override\n * this function so it returns a different value.\n *\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\n * instead returning `false` on failure. This behavior is nonetheless\n * conventional and does not conflict with the expectations of ERC-20\n * applications.\n */\nabstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {\n mapping(address account => uint256) private _balances;\n\n mapping(address account => mapping(address spender => uint256)) private _allowances;\n\n uint256 private _totalSupply;\n\n string private _name;\n string private _symbol;\n\n /**\n * @dev Sets the values for {name} and {symbol}.\n *\n * Both values are immutable: they can only be set once during construction.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev Returns the name of the token.\n */\n function name() public view virtual returns (string memory) {\n return _name;\n }\n\n /**\n * @dev Returns the symbol of the token, usually a shorter version of the\n * name.\n */\n function symbol() public view virtual returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev Returns the number of decimals used to get its user representation.\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n *\n * Tokens usually opt for a value of 18, imitating the relationship between\n * Ether and Wei. This is the default value returned by this function, unless\n * it's overridden.\n *\n * NOTE: This information is only used for _display_ purposes: it in\n * no way affects any of the arithmetic of the contract, including\n * {IERC20-balanceOf} and {IERC20-transfer}.\n */\n function decimals() public view virtual returns (uint8) {\n return 18;\n }\n\n /**\n * @dev See {IERC20-totalSupply}.\n */\n function totalSupply() public view virtual returns (uint256) {\n return _totalSupply;\n }\n\n /**\n * @dev See {IERC20-balanceOf}.\n */\n function balanceOf(address account) public view virtual returns (uint256) {\n return _balances[account];\n }\n\n /**\n * @dev See {IERC20-transfer}.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - the caller must have a balance of at least `value`.\n */\n function transfer(address to, uint256 value) public virtual returns (bool) {\n address owner = _msgSender();\n _transfer(owner, to, value);\n return true;\n }\n\n /**\n * @dev See {IERC20-allowance}.\n */\n function allowance(address owner, address spender) public view virtual returns (uint256) {\n return _allowances[owner][spender];\n }\n\n /**\n * @dev See {IERC20-approve}.\n *\n * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on\n * `transferFrom`. This is semantically equivalent to an infinite approval.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function approve(address spender, uint256 value) public virtual returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, value);\n return true;\n }\n\n /**\n * @dev See {IERC20-transferFrom}.\n *\n * Skips emitting an {Approval} event indicating an allowance update. This is not\n * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].\n *\n * NOTE: Does not update the allowance if the current allowance\n * is the maximum `uint256`.\n *\n * Requirements:\n *\n * - `from` and `to` cannot be the zero address.\n * - `from` must have a balance of at least `value`.\n * - the caller must have allowance for ``from``'s tokens of at least\n * `value`.\n */\n function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {\n address spender = _msgSender();\n _spendAllowance(from, spender, value);\n _transfer(from, to, value);\n return true;\n }\n\n /**\n * @dev Moves a `value` amount of tokens from `from` to `to`.\n *\n * This internal function is equivalent to {transfer}, and can be used to\n * e.g. implement automatic token fees, slashing mechanisms, etc.\n *\n * Emits a {Transfer} event.\n *\n * NOTE: This function is not virtual, {_update} should be overridden instead.\n */\n function _transfer(address from, address to, uint256 value) internal {\n if (from == address(0)) {\n revert ERC20InvalidSender(address(0));\n }\n if (to == address(0)) {\n revert ERC20InvalidReceiver(address(0));\n }\n _update(from, to, value);\n }\n\n /**\n * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`\n * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding\n * this function.\n *\n * Emits a {Transfer} event.\n */\n function _update(address from, address to, uint256 value) internal virtual {\n if (from == address(0)) {\n // Overflow check required: The rest of the code assumes that totalSupply never overflows\n _totalSupply += value;\n } else {\n uint256 fromBalance = _balances[from];\n if (fromBalance < value) {\n revert ERC20InsufficientBalance(from, fromBalance, value);\n }\n unchecked {\n // Overflow not possible: value <= fromBalance <= totalSupply.\n _balances[from] = fromBalance - value;\n }\n }\n\n if (to == address(0)) {\n unchecked {\n // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.\n _totalSupply -= value;\n }\n } else {\n unchecked {\n // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.\n _balances[to] += value;\n }\n }\n\n emit Transfer(from, to, value);\n }\n\n /**\n * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).\n * Relies on the `_update` mechanism\n *\n * Emits a {Transfer} event with `from` set to the zero address.\n *\n * NOTE: This function is not virtual, {_update} should be overridden instead.\n */\n function _mint(address account, uint256 value) internal {\n if (account == address(0)) {\n revert ERC20InvalidReceiver(address(0));\n }\n _update(address(0), account, value);\n }\n\n /**\n * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.\n * Relies on the `_update` mechanism.\n *\n * Emits a {Transfer} event with `to` set to the zero address.\n *\n * NOTE: This function is not virtual, {_update} should be overridden instead\n */\n function _burn(address account, uint256 value) internal {\n if (account == address(0)) {\n revert ERC20InvalidSender(address(0));\n }\n _update(account, address(0), value);\n }\n\n /**\n * @dev Sets `value` as the allowance of `spender` over the `owner`'s tokens.\n *\n * This internal function is equivalent to `approve`, and can be used to\n * e.g. set automatic allowances for certain subsystems, etc.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `owner` cannot be the zero address.\n * - `spender` cannot be the zero address.\n *\n * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.\n */\n function _approve(address owner, address spender, uint256 value) internal {\n _approve(owner, spender, value, true);\n }\n\n /**\n * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.\n *\n * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by\n * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any\n * `Approval` event during `transferFrom` operations.\n *\n * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to\n * true using the following override:\n *\n * ```solidity\n * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {\n * super._approve(owner, spender, value, true);\n * }\n * ```\n *\n * Requirements are the same as {_approve}.\n */\n function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {\n if (owner == address(0)) {\n revert ERC20InvalidApprover(address(0));\n }\n if (spender == address(0)) {\n revert ERC20InvalidSpender(address(0));\n }\n _allowances[owner][spender] = value;\n if (emitEvent) {\n emit Approval(owner, spender, value);\n }\n }\n\n /**\n * @dev Updates `owner`'s allowance for `spender` based on spent `value`.\n *\n * Does not update the allowance value in case of infinite allowance.\n * Revert if not enough allowance is available.\n *\n * Does not emit an {Approval} event.\n */\n function _spendAllowance(address owner, address spender, uint256 value) internal virtual {\n uint256 currentAllowance = allowance(owner, spender);\n if (currentAllowance < type(uint256).max) {\n if (currentAllowance < value) {\n revert ERC20InsufficientAllowance(spender, currentAllowance, value);\n }\n unchecked {\n _approve(owner, spender, currentAllowance - value, false);\n }\n }\n }\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/ERC20Permit.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20Permit} from \"./IERC20Permit.sol\";\nimport {ERC20} from \"../ERC20.sol\";\nimport {ECDSA} from \"../../../utils/cryptography/ECDSA.sol\";\nimport {EIP712} from \"../../../utils/cryptography/EIP712.sol\";\nimport {Nonces} from \"../../../utils/Nonces.sol\";\n\n/**\n * @dev Implementation of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n */\nabstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces {\n bytes32 private constant PERMIT_TYPEHASH =\n keccak256(\"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\");\n\n /**\n * @dev Permit deadline has expired.\n */\n error ERC2612ExpiredSignature(uint256 deadline);\n\n /**\n * @dev Mismatched signature.\n */\n error ERC2612InvalidSigner(address signer, address owner);\n\n /**\n * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\"1\"`.\n *\n * It's a good idea to use the same `name` that is defined as the ERC-20 token name.\n */\n constructor(string memory name) EIP712(name, \"1\") {}\n\n /**\n * @inheritdoc IERC20Permit\n */\n function permit(\n address owner,\n address spender,\n uint256 value,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) public virtual {\n if (block.timestamp > deadline) {\n revert ERC2612ExpiredSignature(deadline);\n }\n\n bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));\n\n bytes32 hash = _hashTypedDataV4(structHash);\n\n address signer = ECDSA.recover(hash, v, r, s);\n if (signer != owner) {\n revert ERC2612InvalidSigner(signer, owner);\n }\n\n _approve(owner, spender, value);\n }\n\n /**\n * @inheritdoc IERC20Permit\n */\n function nonces(address owner) public view virtual override(IERC20Permit, Nonces) returns (uint256) {\n return super.nonces(owner);\n }\n\n /**\n * @inheritdoc IERC20Permit\n */\n // solhint-disable-next-line func-name-mixedcase\n function DOMAIN_SEPARATOR() external view virtual returns (bytes32) {\n return _domainSeparatorV4();\n }\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/ERC20Votes.sol)\n\npragma solidity ^0.8.20;\n\nimport {ERC20} from \"../ERC20.sol\";\nimport {Votes} from \"../../../governance/utils/Votes.sol\";\nimport {Checkpoints} from \"../../../utils/structs/Checkpoints.sol\";\n\n/**\n * @dev Extension of ERC-20 to support Compound-like voting and delegation. This version is more generic than Compound's,\n * and supports token supply up to 2^208^ - 1, while COMP is limited to 2^96^ - 1.\n *\n * NOTE: This contract does not provide interface compatibility with Compound's COMP token.\n *\n * This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either\n * by calling the {Votes-delegate} function directly, or by providing a signature to be used with {Votes-delegateBySig}. Voting\n * power can be queried through the public accessors {Votes-getVotes} and {Votes-getPastVotes}.\n *\n * By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it\n * requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked.\n */\nabstract contract ERC20Votes is ERC20, Votes {\n /**\n * @dev Total supply cap has been exceeded, introducing a risk of votes overflowing.\n */\n error ERC20ExceededSafeSupply(uint256 increasedSupply, uint256 cap);\n\n /**\n * @dev Maximum token supply. Defaults to `type(uint208).max` (2^208^ - 1).\n *\n * This maximum is enforced in {_update}. It limits the total supply of the token, which is otherwise a uint256,\n * so that checkpoints can be stored in the Trace208 structure used by {Votes}. Increasing this value will not\n * remove the underlying limitation, and will cause {_update} to fail because of a math overflow in\n * {Votes-_transferVotingUnits}. An override could be used to further restrict the total supply (to a lower value) if\n * additional logic requires it. When resolving override conflicts on this function, the minimum should be\n * returned.\n */\n function _maxSupply() internal view virtual returns (uint256) {\n return type(uint208).max;\n }\n\n /**\n * @dev Move voting power when tokens are transferred.\n *\n * Emits a {IVotes-DelegateVotesChanged} event.\n */\n function _update(address from, address to, uint256 value) internal virtual override {\n super._update(from, to, value);\n if (from == address(0)) {\n uint256 supply = totalSupply();\n uint256 cap = _maxSupply();\n if (supply > cap) {\n revert ERC20ExceededSafeSupply(supply, cap);\n }\n }\n _transferVotingUnits(from, to, value);\n }\n\n /**\n * @dev Returns the voting units of an `account`.\n *\n * WARNING: Overriding this function may compromise the internal vote accounting.\n * `ERC20Votes` assumes tokens map to voting units 1:1 and this is not easy to change.\n */\n function _getVotingUnits(address account) internal view virtual override returns (uint256) {\n return balanceOf(account);\n }\n\n /**\n * @dev Get number of checkpoints for `account`.\n */\n function numCheckpoints(address account) public view virtual returns (uint32) {\n return _numCheckpoints(account);\n }\n\n /**\n * @dev Get the `pos`-th checkpoint for `account`.\n */\n function checkpoints(address account, uint32 pos) public view virtual returns (Checkpoints.Checkpoint208 memory) {\n return _checkpoints(account, pos);\n }\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC-20 standard.\n */\ninterface IERC20Metadata is IERC20 {\n /**\n * @dev Returns the name of the token.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the symbol of the token.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the decimals places of the token.\n */\n function decimals() external view returns (uint8);\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Permit.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n *\n * ==== Security Considerations\n *\n * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\n * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\n * considered as an intention to spend the allowance in any specific way. The second is that because permits have\n * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\n * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\n * generally recommended is:\n *\n * ```solidity\n * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\n * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\n * doThing(..., value);\n * }\n *\n * function doThing(..., uint256 value) public {\n * token.safeTransferFrom(msg.sender, address(this), value);\n * ...\n * }\n * ```\n *\n * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\n * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\n * {SafeERC20-safeTransferFrom}).\n *\n * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\n * contracts should have entry points that don't rely on permit.\n */\ninterface IERC20Permit {\n /**\n * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n * given ``owner``'s signed approval.\n *\n * IMPORTANT: The same issues {IERC20-approve} has related to transaction\n * ordering also apply here.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `deadline` must be a timestamp in the future.\n * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n * over the EIP712-formatted function arguments.\n * - the signature must use ``owner``'s current nonce (see {nonces}).\n *\n * For more information on the signature format, see the\n * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n * section].\n *\n * CAUTION: See Security Considerations above.\n */\n function permit(\n address owner,\n address spender,\n uint256 value,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) external;\n\n /**\n * @dev Returns the current nonce for `owner`. This value must be\n * included whenever a signature is generated for {permit}.\n *\n * Every successful call to {permit} increases ``owner``'s nonce by one. This\n * prevents a signature from being used multiple times.\n */\n function nonces(address owner) external view returns (uint256);\n\n /**\n * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\n */\n // solhint-disable-next-line func-name-mixedcase\n function DOMAIN_SEPARATOR() external view returns (bytes32);\n}\n"},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Interface of the ERC-20 standard as defined in the ERC.\n */\ninterface IERC20 {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the value of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the value of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves a `value` amount of tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 value) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n * caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 value) external returns (bool);\n\n /**\n * @dev Moves a `value` amount of tokens from `from` to `to` using the\n * allowance mechanism. `value` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 value) external returns (bool);\n}\n"},"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721Receiver.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @title ERC-721 token receiver interface\n * @dev Interface for any contract that wants to support safeTransfers\n * from ERC-721 asset contracts.\n */\ninterface IERC721Receiver {\n /**\n * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n * by `operator` from `from`, this function is called.\n *\n * It must return its Solidity selector to confirm the token transfer.\n * If any other value is returned or the interface is not implemented by the recipient, the transfer will be\n * reverted.\n *\n * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\n */\n function onERC721Received(\n address operator,\n address from,\n uint256 tokenId,\n bytes calldata data\n ) external returns (bytes4);\n}\n"},"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/utils/ERC721Holder.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC721Receiver} from \"../IERC721Receiver.sol\";\n\n/**\n * @dev Implementation of the {IERC721Receiver} interface.\n *\n * Accepts all token transfers.\n * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or\n * {IERC721-setApprovalForAll}.\n */\nabstract contract ERC721Holder is IERC721Receiver {\n /**\n * @dev See {IERC721Receiver-onERC721Received}.\n *\n * Always returns `IERC721Receiver.onERC721Received.selector`.\n */\n function onERC721Received(address, address, uint256, bytes memory) public virtual returns (bytes4) {\n return this.onERC721Received.selector;\n }\n}\n"},"@openzeppelin/contracts/utils/Address.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (utils/Address.sol)\n\npragma solidity ^0.8.20;\n\nimport {Errors} from \"./Errors.sol\";\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev There's no code at `target` (it is not a contract).\n */\n error AddressEmptyCode(address target);\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n if (address(this).balance < amount) {\n revert Errors.InsufficientBalance(address(this).balance, amount);\n }\n\n (bool success, bytes memory returndata) = recipient.call{value: amount}(\"\");\n if (!success) {\n _revert(returndata);\n }\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason or custom error, it is bubbled\n * up by this function (like regular Solidity function calls). However, if\n * the call reverted with no returned reason, this function reverts with a\n * {Errors.FailedCall} error.\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n if (address(this).balance < value) {\n revert Errors.InsufficientBalance(address(this).balance, value);\n }\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, success, returndata);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target\n * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case\n * of an unsuccessful call.\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata\n ) internal view returns (bytes memory) {\n if (!success) {\n _revert(returndata);\n } else {\n // only check if target is a contract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n if (returndata.length == 0 && target.code.length == 0) {\n revert AddressEmptyCode(target);\n }\n return returndata;\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the\n * revert reason or with a default {Errors.FailedCall} error.\n */\n function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {\n if (!success) {\n _revert(returndata);\n } else {\n return returndata;\n }\n }\n\n /**\n * @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}.\n */\n function _revert(bytes memory returndata) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n assembly (\"memory-safe\") {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert Errors.FailedCall();\n }\n }\n}\n"},"@openzeppelin/contracts/utils/Context.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n\n function _contextSuffixLength() internal view virtual returns (uint256) {\n return 0;\n }\n}\n"},"@openzeppelin/contracts/utils/cryptography/ECDSA.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/ECDSA.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\n *\n * These functions can be used to verify that a message was signed by the holder\n * of the private keys of a given address.\n */\nlibrary ECDSA {\n enum RecoverError {\n NoError,\n InvalidSignature,\n InvalidSignatureLength,\n InvalidSignatureS\n }\n\n /**\n * @dev The signature derives the `address(0)`.\n */\n error ECDSAInvalidSignature();\n\n /**\n * @dev The signature has an invalid length.\n */\n error ECDSAInvalidSignatureLength(uint256 length);\n\n /**\n * @dev The signature has an S value that is in the upper half order.\n */\n error ECDSAInvalidSignatureS(bytes32 s);\n\n /**\n * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not\n * return address(0) without also returning an error description. Errors are documented using an enum (error type)\n * and a bytes32 providing additional information about the error.\n *\n * If no error is returned, then the address can be used for verification purposes.\n *\n * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n * this function rejects them by requiring the `s` value to be in the lower\n * half order, and the `v` value to be either 27 or 28.\n *\n * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n * verification to be secure: it is possible to craft signatures that\n * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n * this is by receiving a hash of the original message (which may otherwise\n * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.\n *\n * Documentation for signature generation:\n * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\n */\n function tryRecover(\n bytes32 hash,\n bytes memory signature\n ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {\n if (signature.length == 65) {\n bytes32 r;\n bytes32 s;\n uint8 v;\n // ecrecover takes the signature parameters, and the only way to get them\n // currently is to use assembly.\n assembly (\"memory-safe\") {\n r := mload(add(signature, 0x20))\n s := mload(add(signature, 0x40))\n v := byte(0, mload(add(signature, 0x60)))\n }\n return tryRecover(hash, v, r, s);\n } else {\n return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));\n }\n }\n\n /**\n * @dev Returns the address that signed a hashed message (`hash`) with\n * `signature`. This address can then be used for verification purposes.\n *\n * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n * this function rejects them by requiring the `s` value to be in the lower\n * half order, and the `v` value to be either 27 or 28.\n *\n * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n * verification to be secure: it is possible to craft signatures that\n * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n * this is by receiving a hash of the original message (which may otherwise\n * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.\n */\n function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\n (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);\n _throwError(error, errorArg);\n return recovered;\n }\n\n /**\n * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n *\n * See https://eips.ethereum.org/EIPS/eip-2098[ERC-2098 short signatures]\n */\n function tryRecover(\n bytes32 hash,\n bytes32 r,\n bytes32 vs\n ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {\n unchecked {\n bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);\n // We do not check for an overflow here since the shift operation results in 0 or 1.\n uint8 v = uint8((uint256(vs) >> 255) + 27);\n return tryRecover(hash, v, r, s);\n }\n }\n\n /**\n * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\n */\n function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {\n (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);\n _throwError(error, errorArg);\n return recovered;\n }\n\n /**\n * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n * `r` and `s` signature fields separately.\n */\n function tryRecover(\n bytes32 hash,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {\n // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\n // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\n // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most\n // signatures from current libraries generate a unique signature with an s-value in the lower half order.\n //\n // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\n // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\n // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\n // these malleable signatures as well.\n if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\n return (address(0), RecoverError.InvalidSignatureS, s);\n }\n\n // If the signature is valid (and not malleable), return the signer address\n address signer = ecrecover(hash, v, r, s);\n if (signer == address(0)) {\n return (address(0), RecoverError.InvalidSignature, bytes32(0));\n }\n\n return (signer, RecoverError.NoError, bytes32(0));\n }\n\n /**\n * @dev Overload of {ECDSA-recover} that receives the `v`,\n * `r` and `s` signature fields separately.\n */\n function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {\n (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s);\n _throwError(error, errorArg);\n return recovered;\n }\n\n /**\n * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.\n */\n function _throwError(RecoverError error, bytes32 errorArg) private pure {\n if (error == RecoverError.NoError) {\n return; // no error: do nothing\n } else if (error == RecoverError.InvalidSignature) {\n revert ECDSAInvalidSignature();\n } else if (error == RecoverError.InvalidSignatureLength) {\n revert ECDSAInvalidSignatureLength(uint256(errorArg));\n } else if (error == RecoverError.InvalidSignatureS) {\n revert ECDSAInvalidSignatureS(errorArg);\n }\n }\n}\n"},"@openzeppelin/contracts/utils/cryptography/EIP712.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (utils/cryptography/EIP712.sol)\n\npragma solidity ^0.8.20;\n\nimport {MessageHashUtils} from \"./MessageHashUtils.sol\";\nimport {ShortStrings, ShortString} from \"../ShortStrings.sol\";\nimport {IERC5267} from \"../../interfaces/IERC5267.sol\";\n\n/**\n * @dev https://eips.ethereum.org/EIPS/eip-712[EIP-712] is a standard for hashing and signing of typed structured data.\n *\n * The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose\n * encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract\n * does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to\n * produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.\n *\n * This contract implements the EIP-712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\n * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\n * ({_hashTypedDataV4}).\n *\n * The implementation of the domain separator was designed to be as efficient as possible while still properly updating\n * the chain id to protect against replay attacks on an eventual fork of the chain.\n *\n * NOTE: This contract implements the version of the encoding known as \"v4\", as implemented by the JSON RPC method\n * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\n *\n * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain\n * separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the\n * separator from the immutable values, which is cheaper than accessing a cached version in cold storage.\n *\n * @custom:oz-upgrades-unsafe-allow state-variable-immutable\n */\nabstract contract EIP712 is IERC5267 {\n using ShortStrings for *;\n\n bytes32 private constant TYPE_HASH =\n keccak256(\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\");\n\n // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to\n // invalidate the cached domain separator if the chain id changes.\n bytes32 private immutable _cachedDomainSeparator;\n uint256 private immutable _cachedChainId;\n address private immutable _cachedThis;\n\n bytes32 private immutable _hashedName;\n bytes32 private immutable _hashedVersion;\n\n ShortString private immutable _name;\n ShortString private immutable _version;\n // slither-disable-next-line constable-states\n string private _nameFallback;\n // slither-disable-next-line constable-states\n string private _versionFallback;\n\n /**\n * @dev Initializes the domain separator and parameter caches.\n *\n * The meaning of `name` and `version` is specified in\n * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP-712]:\n *\n * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\n * - `version`: the current major version of the signing domain.\n *\n * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\n * contract upgrade].\n */\n constructor(string memory name, string memory version) {\n _name = name.toShortStringWithFallback(_nameFallback);\n _version = version.toShortStringWithFallback(_versionFallback);\n _hashedName = keccak256(bytes(name));\n _hashedVersion = keccak256(bytes(version));\n\n _cachedChainId = block.chainid;\n _cachedDomainSeparator = _buildDomainSeparator();\n _cachedThis = address(this);\n }\n\n /**\n * @dev Returns the domain separator for the current chain.\n */\n function _domainSeparatorV4() internal view returns (bytes32) {\n if (address(this) == _cachedThis && block.chainid == _cachedChainId) {\n return _cachedDomainSeparator;\n } else {\n return _buildDomainSeparator();\n }\n }\n\n function _buildDomainSeparator() private view returns (bytes32) {\n return keccak256(abi.encode(TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this)));\n }\n\n /**\n * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\n * function returns the hash of the fully encoded EIP712 message for this domain.\n *\n * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\n *\n * ```solidity\n * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\n * keccak256(\"Mail(address to,string contents)\"),\n * mailTo,\n * keccak256(bytes(mailContents))\n * )));\n * address signer = ECDSA.recover(digest, signature);\n * ```\n */\n function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {\n return MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash);\n }\n\n /**\n * @inheritdoc IERC5267\n */\n function eip712Domain()\n public\n view\n virtual\n returns (\n bytes1 fields,\n string memory name,\n string memory version,\n uint256 chainId,\n address verifyingContract,\n bytes32 salt,\n uint256[] memory extensions\n )\n {\n return (\n hex\"0f\", // 01111\n _EIP712Name(),\n _EIP712Version(),\n block.chainid,\n address(this),\n bytes32(0),\n new uint256[](0)\n );\n }\n\n /**\n * @dev The name parameter for the EIP712 domain.\n *\n * NOTE: By default this function reads _name which is an immutable value.\n * It only reads from storage if necessary (in case the value is too large to fit in a ShortString).\n */\n // solhint-disable-next-line func-name-mixedcase\n function _EIP712Name() internal view returns (string memory) {\n return _name.toStringWithFallback(_nameFallback);\n }\n\n /**\n * @dev The version parameter for the EIP712 domain.\n *\n * NOTE: By default this function reads _version which is an immutable value.\n * It only reads from storage if necessary (in case the value is too large to fit in a ShortString).\n */\n // solhint-disable-next-line func-name-mixedcase\n function _EIP712Version() internal view returns (string memory) {\n return _version.toStringWithFallback(_versionFallback);\n }\n}\n"},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (utils/cryptography/MessageHashUtils.sol)\n\npragma solidity ^0.8.20;\n\nimport {Strings} from \"../Strings.sol\";\n\n/**\n * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.\n *\n * The library provides methods for generating a hash of a message that conforms to the\n * https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]\n * specifications.\n */\nlibrary MessageHashUtils {\n /**\n * @dev Returns the keccak256 digest of an ERC-191 signed data with version\n * `0x45` (`personal_sign` messages).\n *\n * The digest is calculated by prefixing a bytes32 `messageHash` with\n * `\"\\x19Ethereum Signed Message:\\n32\"` and hashing the result. It corresponds with the\n * hash signed when using the https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_sign[`eth_sign`] JSON-RPC method.\n *\n * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with\n * keccak256, although any bytes32 value can be safely used because the final digest will\n * be re-hashed.\n *\n * See {ECDSA-recover}.\n */\n function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) {\n assembly (\"memory-safe\") {\n mstore(0x00, \"\\x19Ethereum Signed Message:\\n32\") // 32 is the bytes-length of messageHash\n mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix\n digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20)\n }\n }\n\n /**\n * @dev Returns the keccak256 digest of an ERC-191 signed data with version\n * `0x45` (`personal_sign` messages).\n *\n * The digest is calculated by prefixing an arbitrary `message` with\n * `\"\\x19Ethereum Signed Message:\\n\" + len(message)` and hashing the result. It corresponds with the\n * hash signed when using the https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_sign[`eth_sign`] JSON-RPC method.\n *\n * See {ECDSA-recover}.\n */\n function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) {\n return\n keccak256(bytes.concat(\"\\x19Ethereum Signed Message:\\n\", bytes(Strings.toString(message.length)), message));\n }\n\n /**\n * @dev Returns the keccak256 digest of an ERC-191 signed data with version\n * `0x00` (data with intended validator).\n *\n * The digest is calculated by prefixing an arbitrary `data` with `\"\\x19\\x00\"` and the intended\n * `validator` address. Then hashing the result.\n *\n * See {ECDSA-recover}.\n */\n function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {\n return keccak256(abi.encodePacked(hex\"19_00\", validator, data));\n }\n\n /**\n * @dev Variant of {toDataWithIntendedValidatorHash-address-bytes} optimized for cases where `data` is a bytes32.\n */\n function toDataWithIntendedValidatorHash(\n address validator,\n bytes32 messageHash\n ) internal pure returns (bytes32 digest) {\n assembly (\"memory-safe\") {\n mstore(0x00, hex\"19_00\")\n mstore(0x02, shl(96, validator))\n mstore(0x16, messageHash)\n digest := keccak256(0x00, 0x36)\n }\n }\n\n /**\n * @dev Returns the keccak256 digest of an EIP-712 typed data (ERC-191 version `0x01`).\n *\n * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with\n * `\\x19\\x01` and hashing the result. It corresponds to the hash signed by the\n * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.\n *\n * See {ECDSA-recover}.\n */\n function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) {\n assembly (\"memory-safe\") {\n let ptr := mload(0x40)\n mstore(ptr, hex\"19_01\")\n mstore(add(ptr, 0x02), domainSeparator)\n mstore(add(ptr, 0x22), structHash)\n digest := keccak256(ptr, 0x42)\n }\n }\n}\n"},"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/SignatureChecker.sol)\n\npragma solidity ^0.8.20;\n\nimport {ECDSA} from \"./ECDSA.sol\";\nimport {IERC1271} from \"../../interfaces/IERC1271.sol\";\n\n/**\n * @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA\n * signatures from externally owned accounts (EOAs) as well as ERC-1271 signatures from smart contract wallets like\n * Argent and Safe Wallet (previously Gnosis Safe).\n */\nlibrary SignatureChecker {\n /**\n * @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the\n * signature is validated against that smart contract using ERC-1271, otherwise it's validated using `ECDSA.recover`.\n *\n * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus\n * change through time. It could return true at block N and false at block N+1 (or the opposite).\n */\n function isValidSignatureNow(address signer, bytes32 hash, bytes memory signature) internal view returns (bool) {\n if (signer.code.length == 0) {\n (address recovered, ECDSA.RecoverError err, ) = ECDSA.tryRecover(hash, signature);\n return err == ECDSA.RecoverError.NoError && recovered == signer;\n } else {\n return isValidERC1271SignatureNow(signer, hash, signature);\n }\n }\n\n /**\n * @dev Checks if a signature is valid for a given signer and data hash. The signature is validated\n * against the signer smart contract using ERC-1271.\n *\n * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus\n * change through time. It could return true at block N and false at block N+1 (or the opposite).\n */\n function isValidERC1271SignatureNow(\n address signer,\n bytes32 hash,\n bytes memory signature\n ) internal view returns (bool) {\n (bool success, bytes memory result) = signer.staticcall(\n abi.encodeCall(IERC1271.isValidSignature, (hash, signature))\n );\n return (success &&\n result.length >= 32 &&\n abi.decode(result, (bytes32)) == bytes32(IERC1271.isValidSignature.selector));\n }\n}\n"},"@openzeppelin/contracts/utils/Errors.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Collection of common custom errors used in multiple contracts\n *\n * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.\n * It is recommended to avoid relying on the error API for critical functionality.\n *\n * _Available since v5.1._\n */\nlibrary Errors {\n /**\n * @dev The ETH balance of the account is not enough to perform the operation.\n */\n error InsufficientBalance(uint256 balance, uint256 needed);\n\n /**\n * @dev A call to an address target failed. The target may have reverted.\n */\n error FailedCall();\n\n /**\n * @dev The deployment failed.\n */\n error FailedDeployment();\n\n /**\n * @dev A necessary precompile is missing.\n */\n error MissingPrecompile(address);\n}\n"},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"./IERC165.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n */\nabstract contract ERC165 is IERC165 {\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {\n return interfaceId == type(IERC165).interfaceId;\n }\n}\n"},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Interface of the ERC-165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[ERC].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n /**\n * @dev Returns true if this contract implements the interface defined by\n * `interfaceId`. See the corresponding\n * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]\n * to learn more about how these ids are created.\n *\n * This function call must use less than 30 000 gas.\n */\n function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"},"@openzeppelin/contracts/utils/math/Math.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (utils/math/Math.sol)\n\npragma solidity ^0.8.20;\n\nimport {Panic} from \"../Panic.sol\";\nimport {SafeCast} from \"./SafeCast.sol\";\n\n/**\n * @dev Standard math utilities missing in the Solidity language.\n */\nlibrary Math {\n enum Rounding {\n Floor, // Toward negative infinity\n Ceil, // Toward positive infinity\n Trunc, // Toward zero\n Expand // Away from zero\n }\n\n /**\n * @dev Return the 512-bit addition of two uint256.\n *\n * The result is stored in two 256 variables such that sum = high * 2²⁵⁶ + low.\n */\n function add512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) {\n assembly (\"memory-safe\") {\n low := add(a, b)\n high := lt(low, a)\n }\n }\n\n /**\n * @dev Return the 512-bit multiplication of two uint256.\n *\n * The result is stored in two 256 variables such that product = high * 2²⁵⁶ + low.\n */\n function mul512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) {\n // 512-bit multiply [high low] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use\n // the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256\n // variables such that product = high * 2²⁵⁶ + low.\n assembly (\"memory-safe\") {\n let mm := mulmod(a, b, not(0))\n low := mul(a, b)\n high := sub(sub(mm, low), lt(mm, low))\n }\n }\n\n /**\n * @dev Returns the addition of two unsigned integers, with a success flag (no overflow).\n */\n function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n unchecked {\n uint256 c = a + b;\n success = c >= a;\n result = c * SafeCast.toUint(success);\n }\n }\n\n /**\n * @dev Returns the subtraction of two unsigned integers, with a success flag (no overflow).\n */\n function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n unchecked {\n uint256 c = a - b;\n success = c <= a;\n result = c * SafeCast.toUint(success);\n }\n }\n\n /**\n * @dev Returns the multiplication of two unsigned integers, with a success flag (no overflow).\n */\n function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n unchecked {\n uint256 c = a * b;\n assembly (\"memory-safe\") {\n // Only true when the multiplication doesn't overflow\n // (c / a == b) || (a == 0)\n success := or(eq(div(c, a), b), iszero(a))\n }\n // equivalent to: success ? c : 0\n result = c * SafeCast.toUint(success);\n }\n }\n\n /**\n * @dev Returns the division of two unsigned integers, with a success flag (no division by zero).\n */\n function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n unchecked {\n success = b > 0;\n assembly (\"memory-safe\") {\n // The `DIV` opcode returns zero when the denominator is 0.\n result := div(a, b)\n }\n }\n }\n\n /**\n * @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero).\n */\n function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n unchecked {\n success = b > 0;\n assembly (\"memory-safe\") {\n // The `MOD` opcode returns zero when the denominator is 0.\n result := mod(a, b)\n }\n }\n }\n\n /**\n * @dev Unsigned saturating addition, bounds to `2²⁵⁶ - 1` instead of overflowing.\n */\n function saturatingAdd(uint256 a, uint256 b) internal pure returns (uint256) {\n (bool success, uint256 result) = tryAdd(a, b);\n return ternary(success, result, type(uint256).max);\n }\n\n /**\n * @dev Unsigned saturating subtraction, bounds to zero instead of overflowing.\n */\n function saturatingSub(uint256 a, uint256 b) internal pure returns (uint256) {\n (, uint256 result) = trySub(a, b);\n return result;\n }\n\n /**\n * @dev Unsigned saturating multiplication, bounds to `2²⁵⁶ - 1` instead of overflowing.\n */\n function saturatingMul(uint256 a, uint256 b) internal pure returns (uint256) {\n (bool success, uint256 result) = tryMul(a, b);\n return ternary(success, result, type(uint256).max);\n }\n\n /**\n * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n *\n * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n * one branch when needed, making this function more expensive.\n */\n function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) {\n unchecked {\n // branchless ternary works because:\n // b ^ (a ^ b) == a\n // b ^ 0 == b\n return b ^ ((a ^ b) * SafeCast.toUint(condition));\n }\n }\n\n /**\n * @dev Returns the largest of two numbers.\n */\n function max(uint256 a, uint256 b) internal pure returns (uint256) {\n return ternary(a > b, a, b);\n }\n\n /**\n * @dev Returns the smallest of two numbers.\n */\n function min(uint256 a, uint256 b) internal pure returns (uint256) {\n return ternary(a < b, a, b);\n }\n\n /**\n * @dev Returns the average of two numbers. The result is rounded towards\n * zero.\n */\n function average(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b) / 2 can overflow.\n return (a & b) + (a ^ b) / 2;\n }\n\n /**\n * @dev Returns the ceiling of the division of two numbers.\n *\n * This differs from standard division with `/` in that it rounds towards infinity instead\n * of rounding towards zero.\n */\n function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {\n if (b == 0) {\n // Guarantee the same behavior as in a regular Solidity division.\n Panic.panic(Panic.DIVISION_BY_ZERO);\n }\n\n // The following calculation ensures accurate ceiling division without overflow.\n // Since a is non-zero, (a - 1) / b will not overflow.\n // The largest possible result occurs when (a - 1) / b is type(uint256).max,\n // but the largest value we can obtain is type(uint256).max - 1, which happens\n // when a = type(uint256).max and b = 1.\n unchecked {\n return SafeCast.toUint(a > 0) * ((a - 1) / b + 1);\n }\n }\n\n /**\n * @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or\n * denominator == 0.\n *\n * Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by\n * Uniswap Labs also under MIT license.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {\n unchecked {\n (uint256 high, uint256 low) = mul512(x, y);\n\n // Handle non-overflow cases, 256 by 256 division.\n if (high == 0) {\n // Solidity will revert if denominator == 0, unlike the div opcode on its own.\n // The surrounding unchecked block does not change this fact.\n // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.\n return low / denominator;\n }\n\n // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0.\n if (denominator <= high) {\n Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW));\n }\n\n ///////////////////////////////////////////////\n // 512 by 256 division.\n ///////////////////////////////////////////////\n\n // Make division exact by subtracting the remainder from [high low].\n uint256 remainder;\n assembly (\"memory-safe\") {\n // Compute remainder using mulmod.\n remainder := mulmod(x, y, denominator)\n\n // Subtract 256 bit number from 512 bit number.\n high := sub(high, gt(remainder, low))\n low := sub(low, remainder)\n }\n\n // Factor powers of two out of denominator and compute largest power of two divisor of denominator.\n // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.\n\n uint256 twos = denominator & (0 - denominator);\n assembly (\"memory-safe\") {\n // Divide denominator by twos.\n denominator := div(denominator, twos)\n\n // Divide [high low] by twos.\n low := div(low, twos)\n\n // Flip twos such that it is 2²⁵⁶ / twos. If twos is zero, then it becomes one.\n twos := add(div(sub(0, twos), twos), 1)\n }\n\n // Shift in bits from high into low.\n low |= high * twos;\n\n // Invert denominator mod 2²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such\n // that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for\n // four bits. That is, denominator * inv ≡ 1 mod 2⁴.\n uint256 inverse = (3 * denominator) ^ 2;\n\n // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also\n // works in modular arithmetic, doubling the correct bits in each step.\n inverse *= 2 - denominator * inverse; // inverse mod 2⁸\n inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶\n inverse *= 2 - denominator * inverse; // inverse mod 2³²\n inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴\n inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸\n inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶\n\n // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.\n // This will give us the correct result modulo 2²⁵⁶. Since the preconditions guarantee that the outcome is\n // less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and high\n // is no longer required.\n result = low * inverse;\n return result;\n }\n }\n\n /**\n * @dev Calculates x * y / denominator with full precision, following the selected rounding direction.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {\n return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0);\n }\n\n /**\n * @dev Calculates floor(x * y >> n) with full precision. Throws if result overflows a uint256.\n */\n function mulShr(uint256 x, uint256 y, uint8 n) internal pure returns (uint256 result) {\n unchecked {\n (uint256 high, uint256 low) = mul512(x, y);\n if (high >= 1 << n) {\n Panic.panic(Panic.UNDER_OVERFLOW);\n }\n return (high << (256 - n)) | (low >> n);\n }\n }\n\n /**\n * @dev Calculates x * y >> n with full precision, following the selected rounding direction.\n */\n function mulShr(uint256 x, uint256 y, uint8 n, Rounding rounding) internal pure returns (uint256) {\n return mulShr(x, y, n) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, 1 << n) > 0);\n }\n\n /**\n * @dev Calculate the modular multiplicative inverse of a number in Z/nZ.\n *\n * If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0.\n * If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.\n *\n * If the input value is not inversible, 0 is returned.\n *\n * NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the\n * inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}.\n */\n function invMod(uint256 a, uint256 n) internal pure returns (uint256) {\n unchecked {\n if (n == 0) return 0;\n\n // The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version)\n // Used to compute integers x and y such that: ax + ny = gcd(a, n).\n // When the gcd is 1, then the inverse of a modulo n exists and it's x.\n // ax + ny = 1\n // ax = 1 + (-y)n\n // ax ≡ 1 (mod n) # x is the inverse of a modulo n\n\n // If the remainder is 0 the gcd is n right away.\n uint256 remainder = a % n;\n uint256 gcd = n;\n\n // Therefore the initial coefficients are:\n // ax + ny = gcd(a, n) = n\n // 0a + 1n = n\n int256 x = 0;\n int256 y = 1;\n\n while (remainder != 0) {\n uint256 quotient = gcd / remainder;\n\n (gcd, remainder) = (\n // The old remainder is the next gcd to try.\n remainder,\n // Compute the next remainder.\n // Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd\n // where gcd is at most n (capped to type(uint256).max)\n gcd - remainder * quotient\n );\n\n (x, y) = (\n // Increment the coefficient of a.\n y,\n // Decrement the coefficient of n.\n // Can overflow, but the result is casted to uint256 so that the\n // next value of y is \"wrapped around\" to a value between 0 and n - 1.\n x - y * int256(quotient)\n );\n }\n\n if (gcd != 1) return 0; // No inverse exists.\n return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative.\n }\n }\n\n /**\n * @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`.\n *\n * From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is\n * prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that\n * `a**(p-2)` is the modular multiplicative inverse of a in Fp.\n *\n * NOTE: this function does NOT check that `p` is a prime greater than `2`.\n */\n function invModPrime(uint256 a, uint256 p) internal view returns (uint256) {\n unchecked {\n return Math.modExp(a, p - 2, p);\n }\n }\n\n /**\n * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)\n *\n * Requirements:\n * - modulus can't be zero\n * - underlying staticcall to precompile must succeed\n *\n * IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make\n * sure the chain you're using it on supports the precompiled contract for modular exponentiation\n * at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,\n * the underlying function will succeed given the lack of a revert, but the result may be incorrectly\n * interpreted as 0.\n */\n function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) {\n (bool success, uint256 result) = tryModExp(b, e, m);\n if (!success) {\n Panic.panic(Panic.DIVISION_BY_ZERO);\n }\n return result;\n }\n\n /**\n * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).\n * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying\n * to operate modulo 0 or if the underlying precompile reverted.\n *\n * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain\n * you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in\n * https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack\n * of a revert, but the result may be incorrectly interpreted as 0.\n */\n function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) {\n if (m == 0) return (false, 0);\n assembly (\"memory-safe\") {\n let ptr := mload(0x40)\n // | Offset | Content | Content (Hex) |\n // |-----------|------------|--------------------------------------------------------------------|\n // | 0x00:0x1f | size of b | 0x0000000000000000000000000000000000000000000000000000000000000020 |\n // | 0x20:0x3f | size of e | 0x0000000000000000000000000000000000000000000000000000000000000020 |\n // | 0x40:0x5f | size of m | 0x0000000000000000000000000000000000000000000000000000000000000020 |\n // | 0x60:0x7f | value of b | 0x<.............................................................b> |\n // | 0x80:0x9f | value of e | 0x<.............................................................e> |\n // | 0xa0:0xbf | value of m | 0x<.............................................................m> |\n mstore(ptr, 0x20)\n mstore(add(ptr, 0x20), 0x20)\n mstore(add(ptr, 0x40), 0x20)\n mstore(add(ptr, 0x60), b)\n mstore(add(ptr, 0x80), e)\n mstore(add(ptr, 0xa0), m)\n\n // Given the result < m, it's guaranteed to fit in 32 bytes,\n // so we can use the memory scratch space located at offset 0.\n success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20)\n result := mload(0x00)\n }\n }\n\n /**\n * @dev Variant of {modExp} that supports inputs of arbitrary length.\n */\n function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) {\n (bool success, bytes memory result) = tryModExp(b, e, m);\n if (!success) {\n Panic.panic(Panic.DIVISION_BY_ZERO);\n }\n return result;\n }\n\n /**\n * @dev Variant of {tryModExp} that supports inputs of arbitrary length.\n */\n function tryModExp(\n bytes memory b,\n bytes memory e,\n bytes memory m\n ) internal view returns (bool success, bytes memory result) {\n if (_zeroBytes(m)) return (false, new bytes(0));\n\n uint256 mLen = m.length;\n\n // Encode call args in result and move the free memory pointer\n result = abi.encodePacked(b.length, e.length, mLen, b, e, m);\n\n assembly (\"memory-safe\") {\n let dataPtr := add(result, 0x20)\n // Write result on top of args to avoid allocating extra memory.\n success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen)\n // Overwrite the length.\n // result.length > returndatasize() is guaranteed because returndatasize() == m.length\n mstore(result, mLen)\n // Set the memory pointer after the returned data.\n mstore(0x40, add(dataPtr, mLen))\n }\n }\n\n /**\n * @dev Returns whether the provided byte array is zero.\n */\n function _zeroBytes(bytes memory byteArray) private pure returns (bool) {\n for (uint256 i = 0; i < byteArray.length; ++i) {\n if (byteArray[i] != 0) {\n return false;\n }\n }\n return true;\n }\n\n /**\n * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded\n * towards zero.\n *\n * This method is based on Newton's method for computing square roots; the algorithm is restricted to only\n * using integer operations.\n */\n function sqrt(uint256 a) internal pure returns (uint256) {\n unchecked {\n // Take care of easy edge cases when a == 0 or a == 1\n if (a <= 1) {\n return a;\n }\n\n // In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a\n // sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between\n // the current value as `ε_n = | x_n - sqrt(a) |`.\n //\n // For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root\n // of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is\n // bigger than any uint256.\n //\n // By noticing that\n // `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)`\n // we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar\n // to the msb function.\n uint256 aa = a;\n uint256 xn = 1;\n\n if (aa >= (1 << 128)) {\n aa >>= 128;\n xn <<= 64;\n }\n if (aa >= (1 << 64)) {\n aa >>= 64;\n xn <<= 32;\n }\n if (aa >= (1 << 32)) {\n aa >>= 32;\n xn <<= 16;\n }\n if (aa >= (1 << 16)) {\n aa >>= 16;\n xn <<= 8;\n }\n if (aa >= (1 << 8)) {\n aa >>= 8;\n xn <<= 4;\n }\n if (aa >= (1 << 4)) {\n aa >>= 4;\n xn <<= 2;\n }\n if (aa >= (1 << 2)) {\n xn <<= 1;\n }\n\n // We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1).\n //\n // We can refine our estimation by noticing that the middle of that interval minimizes the error.\n // If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2).\n // This is going to be our x_0 (and ε_0)\n xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2)\n\n // From here, Newton's method give us:\n // x_{n+1} = (x_n + a / x_n) / 2\n //\n // One should note that:\n // x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a\n // = ((x_n² + a) / (2 * x_n))² - a\n // = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a\n // = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²)\n // = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²)\n // = (x_n² - a)² / (2 * x_n)²\n // = ((x_n² - a) / (2 * x_n))²\n // ≥ 0\n // Which proves that for all n ≥ 1, sqrt(a) ≤ x_n\n //\n // This gives us the proof of quadratic convergence of the sequence:\n // ε_{n+1} = | x_{n+1} - sqrt(a) |\n // = | (x_n + a / x_n) / 2 - sqrt(a) |\n // = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) |\n // = | (x_n - sqrt(a))² / (2 * x_n) |\n // = | ε_n² / (2 * x_n) |\n // = ε_n² / | (2 * x_n) |\n //\n // For the first iteration, we have a special case where x_0 is known:\n // ε_1 = ε_0² / | (2 * x_0) |\n // ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2)))\n // ≤ 2**(2*e-4) / (3 * 2**(e-1))\n // ≤ 2**(e-3) / 3\n // ≤ 2**(e-3-log2(3))\n // ≤ 2**(e-4.5)\n //\n // For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n:\n // ε_{n+1} = ε_n² / | (2 * x_n) |\n // ≤ (2**(e-k))² / (2 * 2**(e-1))\n // ≤ 2**(2*e-2*k) / 2**e\n // ≤ 2**(e-2*k)\n xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5) -- special case, see above\n xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9) -- general case with k = 4.5\n xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18) -- general case with k = 9\n xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36) -- general case with k = 18\n xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72) -- general case with k = 36\n xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144) -- general case with k = 72\n\n // Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision\n // ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either\n // sqrt(a) or sqrt(a) + 1.\n return xn - SafeCast.toUint(xn > a / xn);\n }\n }\n\n /**\n * @dev Calculates sqrt(a), following the selected rounding direction.\n */\n function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = sqrt(a);\n return result + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a);\n }\n }\n\n /**\n * @dev Return the log in base 2 of a positive value rounded towards zero.\n * Returns 0 if given 0.\n */\n function log2(uint256 x) internal pure returns (uint256 r) {\n // If value has upper 128 bits set, log2 result is at least 128\n r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7;\n // If upper 64 bits of 128-bit half set, add 64 to result\n r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6;\n // If upper 32 bits of 64-bit half set, add 32 to result\n r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5;\n // If upper 16 bits of 32-bit half set, add 16 to result\n r |= SafeCast.toUint((x >> r) > 0xffff) << 4;\n // If upper 8 bits of 16-bit half set, add 8 to result\n r |= SafeCast.toUint((x >> r) > 0xff) << 3;\n // If upper 4 bits of 8-bit half set, add 4 to result\n r |= SafeCast.toUint((x >> r) > 0xf) << 2;\n\n // Shifts value right by the current result and use it as an index into this lookup table:\n //\n // | x (4 bits) | index | table[index] = MSB position |\n // |------------|---------|-----------------------------|\n // | 0000 | 0 | table[0] = 0 |\n // | 0001 | 1 | table[1] = 0 |\n // | 0010 | 2 | table[2] = 1 |\n // | 0011 | 3 | table[3] = 1 |\n // | 0100 | 4 | table[4] = 2 |\n // | 0101 | 5 | table[5] = 2 |\n // | 0110 | 6 | table[6] = 2 |\n // | 0111 | 7 | table[7] = 2 |\n // | 1000 | 8 | table[8] = 3 |\n // | 1001 | 9 | table[9] = 3 |\n // | 1010 | 10 | table[10] = 3 |\n // | 1011 | 11 | table[11] = 3 |\n // | 1100 | 12 | table[12] = 3 |\n // | 1101 | 13 | table[13] = 3 |\n // | 1110 | 14 | table[14] = 3 |\n // | 1111 | 15 | table[15] = 3 |\n //\n // The lookup table is represented as a 32-byte value with the MSB positions for 0-15 in the last 16 bytes.\n assembly (\"memory-safe\") {\n r := or(r, byte(shr(r, x), 0x0000010102020202030303030303030300000000000000000000000000000000))\n }\n }\n\n /**\n * @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log2(value);\n return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value);\n }\n }\n\n /**\n * @dev Return the log in base 10 of a positive value rounded towards zero.\n * Returns 0 if given 0.\n */\n function log10(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >= 10 ** 64) {\n value /= 10 ** 64;\n result += 64;\n }\n if (value >= 10 ** 32) {\n value /= 10 ** 32;\n result += 32;\n }\n if (value >= 10 ** 16) {\n value /= 10 ** 16;\n result += 16;\n }\n if (value >= 10 ** 8) {\n value /= 10 ** 8;\n result += 8;\n }\n if (value >= 10 ** 4) {\n value /= 10 ** 4;\n result += 4;\n }\n if (value >= 10 ** 2) {\n value /= 10 ** 2;\n result += 2;\n }\n if (value >= 10 ** 1) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log10(value);\n return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value);\n }\n }\n\n /**\n * @dev Return the log in base 256 of a positive value rounded towards zero.\n * Returns 0 if given 0.\n *\n * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.\n */\n function log256(uint256 x) internal pure returns (uint256 r) {\n // If value has upper 128 bits set, log2 result is at least 128\n r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7;\n // If upper 64 bits of 128-bit half set, add 64 to result\n r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6;\n // If upper 32 bits of 64-bit half set, add 32 to result\n r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5;\n // If upper 16 bits of 32-bit half set, add 16 to result\n r |= SafeCast.toUint((x >> r) > 0xffff) << 4;\n // Add 1 if upper 8 bits of 16-bit half set, and divide accumulated result by 8\n return (r >> 3) | SafeCast.toUint((x >> r) > 0xff);\n }\n\n /**\n * @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log256(value);\n return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value);\n }\n }\n\n /**\n * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.\n */\n function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {\n return uint8(rounding) % 2 == 1;\n }\n}\n"},"@openzeppelin/contracts/utils/math/SafeCast.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)\n// This file was procedurally generated from scripts/generate/templates/SafeCast.js.\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow\n * checks.\n *\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\n * easily result in undesired exploitation or bugs, since developers usually\n * assume that overflows raise errors. `SafeCast` restores this intuition by\n * reverting the transaction when such an operation overflows.\n *\n * Using this library instead of the unchecked operations eliminates an entire\n * class of bugs, so it's recommended to use it always.\n */\nlibrary SafeCast {\n /**\n * @dev Value doesn't fit in an uint of `bits` size.\n */\n error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);\n\n /**\n * @dev An int value doesn't fit in an uint of `bits` size.\n */\n error SafeCastOverflowedIntToUint(int256 value);\n\n /**\n * @dev Value doesn't fit in an int of `bits` size.\n */\n error SafeCastOverflowedIntDowncast(uint8 bits, int256 value);\n\n /**\n * @dev An uint value doesn't fit in an int of `bits` size.\n */\n error SafeCastOverflowedUintToInt(uint256 value);\n\n /**\n * @dev Returns the downcasted uint248 from uint256, reverting on\n * overflow (when the input is greater than largest uint248).\n *\n * Counterpart to Solidity's `uint248` operator.\n *\n * Requirements:\n *\n * - input must fit into 248 bits\n */\n function toUint248(uint256 value) internal pure returns (uint248) {\n if (value > type(uint248).max) {\n revert SafeCastOverflowedUintDowncast(248, value);\n }\n return uint248(value);\n }\n\n /**\n * @dev Returns the downcasted uint240 from uint256, reverting on\n * overflow (when the input is greater than largest uint240).\n *\n * Counterpart to Solidity's `uint240` operator.\n *\n * Requirements:\n *\n * - input must fit into 240 bits\n */\n function toUint240(uint256 value) internal pure returns (uint240) {\n if (value > type(uint240).max) {\n revert SafeCastOverflowedUintDowncast(240, value);\n }\n return uint240(value);\n }\n\n /**\n * @dev Returns the downcasted uint232 from uint256, reverting on\n * overflow (when the input is greater than largest uint232).\n *\n * Counterpart to Solidity's `uint232` operator.\n *\n * Requirements:\n *\n * - input must fit into 232 bits\n */\n function toUint232(uint256 value) internal pure returns (uint232) {\n if (value > type(uint232).max) {\n revert SafeCastOverflowedUintDowncast(232, value);\n }\n return uint232(value);\n }\n\n /**\n * @dev Returns the downcasted uint224 from uint256, reverting on\n * overflow (when the input is greater than largest uint224).\n *\n * Counterpart to Solidity's `uint224` operator.\n *\n * Requirements:\n *\n * - input must fit into 224 bits\n */\n function toUint224(uint256 value) internal pure returns (uint224) {\n if (value > type(uint224).max) {\n revert SafeCastOverflowedUintDowncast(224, value);\n }\n return uint224(value);\n }\n\n /**\n * @dev Returns the downcasted uint216 from uint256, reverting on\n * overflow (when the input is greater than largest uint216).\n *\n * Counterpart to Solidity's `uint216` operator.\n *\n * Requirements:\n *\n * - input must fit into 216 bits\n */\n function toUint216(uint256 value) internal pure returns (uint216) {\n if (value > type(uint216).max) {\n revert SafeCastOverflowedUintDowncast(216, value);\n }\n return uint216(value);\n }\n\n /**\n * @dev Returns the downcasted uint208 from uint256, reverting on\n * overflow (when the input is greater than largest uint208).\n *\n * Counterpart to Solidity's `uint208` operator.\n *\n * Requirements:\n *\n * - input must fit into 208 bits\n */\n function toUint208(uint256 value) internal pure returns (uint208) {\n if (value > type(uint208).max) {\n revert SafeCastOverflowedUintDowncast(208, value);\n }\n return uint208(value);\n }\n\n /**\n * @dev Returns the downcasted uint200 from uint256, reverting on\n * overflow (when the input is greater than largest uint200).\n *\n * Counterpart to Solidity's `uint200` operator.\n *\n * Requirements:\n *\n * - input must fit into 200 bits\n */\n function toUint200(uint256 value) internal pure returns (uint200) {\n if (value > type(uint200).max) {\n revert SafeCastOverflowedUintDowncast(200, value);\n }\n return uint200(value);\n }\n\n /**\n * @dev Returns the downcasted uint192 from uint256, reverting on\n * overflow (when the input is greater than largest uint192).\n *\n * Counterpart to Solidity's `uint192` operator.\n *\n * Requirements:\n *\n * - input must fit into 192 bits\n */\n function toUint192(uint256 value) internal pure returns (uint192) {\n if (value > type(uint192).max) {\n revert SafeCastOverflowedUintDowncast(192, value);\n }\n return uint192(value);\n }\n\n /**\n * @dev Returns the downcasted uint184 from uint256, reverting on\n * overflow (when the input is greater than largest uint184).\n *\n * Counterpart to Solidity's `uint184` operator.\n *\n * Requirements:\n *\n * - input must fit into 184 bits\n */\n function toUint184(uint256 value) internal pure returns (uint184) {\n if (value > type(uint184).max) {\n revert SafeCastOverflowedUintDowncast(184, value);\n }\n return uint184(value);\n }\n\n /**\n * @dev Returns the downcasted uint176 from uint256, reverting on\n * overflow (when the input is greater than largest uint176).\n *\n * Counterpart to Solidity's `uint176` operator.\n *\n * Requirements:\n *\n * - input must fit into 176 bits\n */\n function toUint176(uint256 value) internal pure returns (uint176) {\n if (value > type(uint176).max) {\n revert SafeCastOverflowedUintDowncast(176, value);\n }\n return uint176(value);\n }\n\n /**\n * @dev Returns the downcasted uint168 from uint256, reverting on\n * overflow (when the input is greater than largest uint168).\n *\n * Counterpart to Solidity's `uint168` operator.\n *\n * Requirements:\n *\n * - input must fit into 168 bits\n */\n function toUint168(uint256 value) internal pure returns (uint168) {\n if (value > type(uint168).max) {\n revert SafeCastOverflowedUintDowncast(168, value);\n }\n return uint168(value);\n }\n\n /**\n * @dev Returns the downcasted uint160 from uint256, reverting on\n * overflow (when the input is greater than largest uint160).\n *\n * Counterpart to Solidity's `uint160` operator.\n *\n * Requirements:\n *\n * - input must fit into 160 bits\n */\n function toUint160(uint256 value) internal pure returns (uint160) {\n if (value > type(uint160).max) {\n revert SafeCastOverflowedUintDowncast(160, value);\n }\n return uint160(value);\n }\n\n /**\n * @dev Returns the downcasted uint152 from uint256, reverting on\n * overflow (when the input is greater than largest uint152).\n *\n * Counterpart to Solidity's `uint152` operator.\n *\n * Requirements:\n *\n * - input must fit into 152 bits\n */\n function toUint152(uint256 value) internal pure returns (uint152) {\n if (value > type(uint152).max) {\n revert SafeCastOverflowedUintDowncast(152, value);\n }\n return uint152(value);\n }\n\n /**\n * @dev Returns the downcasted uint144 from uint256, reverting on\n * overflow (when the input is greater than largest uint144).\n *\n * Counterpart to Solidity's `uint144` operator.\n *\n * Requirements:\n *\n * - input must fit into 144 bits\n */\n function toUint144(uint256 value) internal pure returns (uint144) {\n if (value > type(uint144).max) {\n revert SafeCastOverflowedUintDowncast(144, value);\n }\n return uint144(value);\n }\n\n /**\n * @dev Returns the downcasted uint136 from uint256, reverting on\n * overflow (when the input is greater than largest uint136).\n *\n * Counterpart to Solidity's `uint136` operator.\n *\n * Requirements:\n *\n * - input must fit into 136 bits\n */\n function toUint136(uint256 value) internal pure returns (uint136) {\n if (value > type(uint136).max) {\n revert SafeCastOverflowedUintDowncast(136, value);\n }\n return uint136(value);\n }\n\n /**\n * @dev Returns the downcasted uint128 from uint256, reverting on\n * overflow (when the input is greater than largest uint128).\n *\n * Counterpart to Solidity's `uint128` operator.\n *\n * Requirements:\n *\n * - input must fit into 128 bits\n */\n function toUint128(uint256 value) internal pure returns (uint128) {\n if (value > type(uint128).max) {\n revert SafeCastOverflowedUintDowncast(128, value);\n }\n return uint128(value);\n }\n\n /**\n * @dev Returns the downcasted uint120 from uint256, reverting on\n * overflow (when the input is greater than largest uint120).\n *\n * Counterpart to Solidity's `uint120` operator.\n *\n * Requirements:\n *\n * - input must fit into 120 bits\n */\n function toUint120(uint256 value) internal pure returns (uint120) {\n if (value > type(uint120).max) {\n revert SafeCastOverflowedUintDowncast(120, value);\n }\n return uint120(value);\n }\n\n /**\n * @dev Returns the downcasted uint112 from uint256, reverting on\n * overflow (when the input is greater than largest uint112).\n *\n * Counterpart to Solidity's `uint112` operator.\n *\n * Requirements:\n *\n * - input must fit into 112 bits\n */\n function toUint112(uint256 value) internal pure returns (uint112) {\n if (value > type(uint112).max) {\n revert SafeCastOverflowedUintDowncast(112, value);\n }\n return uint112(value);\n }\n\n /**\n * @dev Returns the downcasted uint104 from uint256, reverting on\n * overflow (when the input is greater than largest uint104).\n *\n * Counterpart to Solidity's `uint104` operator.\n *\n * Requirements:\n *\n * - input must fit into 104 bits\n */\n function toUint104(uint256 value) internal pure returns (uint104) {\n if (value > type(uint104).max) {\n revert SafeCastOverflowedUintDowncast(104, value);\n }\n return uint104(value);\n }\n\n /**\n * @dev Returns the downcasted uint96 from uint256, reverting on\n * overflow (when the input is greater than largest uint96).\n *\n * Counterpart to Solidity's `uint96` operator.\n *\n * Requirements:\n *\n * - input must fit into 96 bits\n */\n function toUint96(uint256 value) internal pure returns (uint96) {\n if (value > type(uint96).max) {\n revert SafeCastOverflowedUintDowncast(96, value);\n }\n return uint96(value);\n }\n\n /**\n * @dev Returns the downcasted uint88 from uint256, reverting on\n * overflow (when the input is greater than largest uint88).\n *\n * Counterpart to Solidity's `uint88` operator.\n *\n * Requirements:\n *\n * - input must fit into 88 bits\n */\n function toUint88(uint256 value) internal pure returns (uint88) {\n if (value > type(uint88).max) {\n revert SafeCastOverflowedUintDowncast(88, value);\n }\n return uint88(value);\n }\n\n /**\n * @dev Returns the downcasted uint80 from uint256, reverting on\n * overflow (when the input is greater than largest uint80).\n *\n * Counterpart to Solidity's `uint80` operator.\n *\n * Requirements:\n *\n * - input must fit into 80 bits\n */\n function toUint80(uint256 value) internal pure returns (uint80) {\n if (value > type(uint80).max) {\n revert SafeCastOverflowedUintDowncast(80, value);\n }\n return uint80(value);\n }\n\n /**\n * @dev Returns the downcasted uint72 from uint256, reverting on\n * overflow (when the input is greater than largest uint72).\n *\n * Counterpart to Solidity's `uint72` operator.\n *\n * Requirements:\n *\n * - input must fit into 72 bits\n */\n function toUint72(uint256 value) internal pure returns (uint72) {\n if (value > type(uint72).max) {\n revert SafeCastOverflowedUintDowncast(72, value);\n }\n return uint72(value);\n }\n\n /**\n * @dev Returns the downcasted uint64 from uint256, reverting on\n * overflow (when the input is greater than largest uint64).\n *\n * Counterpart to Solidity's `uint64` operator.\n *\n * Requirements:\n *\n * - input must fit into 64 bits\n */\n function toUint64(uint256 value) internal pure returns (uint64) {\n if (value > type(uint64).max) {\n revert SafeCastOverflowedUintDowncast(64, value);\n }\n return uint64(value);\n }\n\n /**\n * @dev Returns the downcasted uint56 from uint256, reverting on\n * overflow (when the input is greater than largest uint56).\n *\n * Counterpart to Solidity's `uint56` operator.\n *\n * Requirements:\n *\n * - input must fit into 56 bits\n */\n function toUint56(uint256 value) internal pure returns (uint56) {\n if (value > type(uint56).max) {\n revert SafeCastOverflowedUintDowncast(56, value);\n }\n return uint56(value);\n }\n\n /**\n * @dev Returns the downcasted uint48 from uint256, reverting on\n * overflow (when the input is greater than largest uint48).\n *\n * Counterpart to Solidity's `uint48` operator.\n *\n * Requirements:\n *\n * - input must fit into 48 bits\n */\n function toUint48(uint256 value) internal pure returns (uint48) {\n if (value > type(uint48).max) {\n revert SafeCastOverflowedUintDowncast(48, value);\n }\n return uint48(value);\n }\n\n /**\n * @dev Returns the downcasted uint40 from uint256, reverting on\n * overflow (when the input is greater than largest uint40).\n *\n * Counterpart to Solidity's `uint40` operator.\n *\n * Requirements:\n *\n * - input must fit into 40 bits\n */\n function toUint40(uint256 value) internal pure returns (uint40) {\n if (value > type(uint40).max) {\n revert SafeCastOverflowedUintDowncast(40, value);\n }\n return uint40(value);\n }\n\n /**\n * @dev Returns the downcasted uint32 from uint256, reverting on\n * overflow (when the input is greater than largest uint32).\n *\n * Counterpart to Solidity's `uint32` operator.\n *\n * Requirements:\n *\n * - input must fit into 32 bits\n */\n function toUint32(uint256 value) internal pure returns (uint32) {\n if (value > type(uint32).max) {\n revert SafeCastOverflowedUintDowncast(32, value);\n }\n return uint32(value);\n }\n\n /**\n * @dev Returns the downcasted uint24 from uint256, reverting on\n * overflow (when the input is greater than largest uint24).\n *\n * Counterpart to Solidity's `uint24` operator.\n *\n * Requirements:\n *\n * - input must fit into 24 bits\n */\n function toUint24(uint256 value) internal pure returns (uint24) {\n if (value > type(uint24).max) {\n revert SafeCastOverflowedUintDowncast(24, value);\n }\n return uint24(value);\n }\n\n /**\n * @dev Returns the downcasted uint16 from uint256, reverting on\n * overflow (when the input is greater than largest uint16).\n *\n * Counterpart to Solidity's `uint16` operator.\n *\n * Requirements:\n *\n * - input must fit into 16 bits\n */\n function toUint16(uint256 value) internal pure returns (uint16) {\n if (value > type(uint16).max) {\n revert SafeCastOverflowedUintDowncast(16, value);\n }\n return uint16(value);\n }\n\n /**\n * @dev Returns the downcasted uint8 from uint256, reverting on\n * overflow (when the input is greater than largest uint8).\n *\n * Counterpart to Solidity's `uint8` operator.\n *\n * Requirements:\n *\n * - input must fit into 8 bits\n */\n function toUint8(uint256 value) internal pure returns (uint8) {\n if (value > type(uint8).max) {\n revert SafeCastOverflowedUintDowncast(8, value);\n }\n return uint8(value);\n }\n\n /**\n * @dev Converts a signed int256 into an unsigned uint256.\n *\n * Requirements:\n *\n * - input must be greater than or equal to 0.\n */\n function toUint256(int256 value) internal pure returns (uint256) {\n if (value < 0) {\n revert SafeCastOverflowedIntToUint(value);\n }\n return uint256(value);\n }\n\n /**\n * @dev Returns the downcasted int248 from int256, reverting on\n * overflow (when the input is less than smallest int248 or\n * greater than largest int248).\n *\n * Counterpart to Solidity's `int248` operator.\n *\n * Requirements:\n *\n * - input must fit into 248 bits\n */\n function toInt248(int256 value) internal pure returns (int248 downcasted) {\n downcasted = int248(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(248, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int240 from int256, reverting on\n * overflow (when the input is less than smallest int240 or\n * greater than largest int240).\n *\n * Counterpart to Solidity's `int240` operator.\n *\n * Requirements:\n *\n * - input must fit into 240 bits\n */\n function toInt240(int256 value) internal pure returns (int240 downcasted) {\n downcasted = int240(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(240, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int232 from int256, reverting on\n * overflow (when the input is less than smallest int232 or\n * greater than largest int232).\n *\n * Counterpart to Solidity's `int232` operator.\n *\n * Requirements:\n *\n * - input must fit into 232 bits\n */\n function toInt232(int256 value) internal pure returns (int232 downcasted) {\n downcasted = int232(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(232, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int224 from int256, reverting on\n * overflow (when the input is less than smallest int224 or\n * greater than largest int224).\n *\n * Counterpart to Solidity's `int224` operator.\n *\n * Requirements:\n *\n * - input must fit into 224 bits\n */\n function toInt224(int256 value) internal pure returns (int224 downcasted) {\n downcasted = int224(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(224, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int216 from int256, reverting on\n * overflow (when the input is less than smallest int216 or\n * greater than largest int216).\n *\n * Counterpart to Solidity's `int216` operator.\n *\n * Requirements:\n *\n * - input must fit into 216 bits\n */\n function toInt216(int256 value) internal pure returns (int216 downcasted) {\n downcasted = int216(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(216, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int208 from int256, reverting on\n * overflow (when the input is less than smallest int208 or\n * greater than largest int208).\n *\n * Counterpart to Solidity's `int208` operator.\n *\n * Requirements:\n *\n * - input must fit into 208 bits\n */\n function toInt208(int256 value) internal pure returns (int208 downcasted) {\n downcasted = int208(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(208, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int200 from int256, reverting on\n * overflow (when the input is less than smallest int200 or\n * greater than largest int200).\n *\n * Counterpart to Solidity's `int200` operator.\n *\n * Requirements:\n *\n * - input must fit into 200 bits\n */\n function toInt200(int256 value) internal pure returns (int200 downcasted) {\n downcasted = int200(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(200, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int192 from int256, reverting on\n * overflow (when the input is less than smallest int192 or\n * greater than largest int192).\n *\n * Counterpart to Solidity's `int192` operator.\n *\n * Requirements:\n *\n * - input must fit into 192 bits\n */\n function toInt192(int256 value) internal pure returns (int192 downcasted) {\n downcasted = int192(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(192, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int184 from int256, reverting on\n * overflow (when the input is less than smallest int184 or\n * greater than largest int184).\n *\n * Counterpart to Solidity's `int184` operator.\n *\n * Requirements:\n *\n * - input must fit into 184 bits\n */\n function toInt184(int256 value) internal pure returns (int184 downcasted) {\n downcasted = int184(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(184, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int176 from int256, reverting on\n * overflow (when the input is less than smallest int176 or\n * greater than largest int176).\n *\n * Counterpart to Solidity's `int176` operator.\n *\n * Requirements:\n *\n * - input must fit into 176 bits\n */\n function toInt176(int256 value) internal pure returns (int176 downcasted) {\n downcasted = int176(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(176, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int168 from int256, reverting on\n * overflow (when the input is less than smallest int168 or\n * greater than largest int168).\n *\n * Counterpart to Solidity's `int168` operator.\n *\n * Requirements:\n *\n * - input must fit into 168 bits\n */\n function toInt168(int256 value) internal pure returns (int168 downcasted) {\n downcasted = int168(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(168, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int160 from int256, reverting on\n * overflow (when the input is less than smallest int160 or\n * greater than largest int160).\n *\n * Counterpart to Solidity's `int160` operator.\n *\n * Requirements:\n *\n * - input must fit into 160 bits\n */\n function toInt160(int256 value) internal pure returns (int160 downcasted) {\n downcasted = int160(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(160, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int152 from int256, reverting on\n * overflow (when the input is less than smallest int152 or\n * greater than largest int152).\n *\n * Counterpart to Solidity's `int152` operator.\n *\n * Requirements:\n *\n * - input must fit into 152 bits\n */\n function toInt152(int256 value) internal pure returns (int152 downcasted) {\n downcasted = int152(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(152, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int144 from int256, reverting on\n * overflow (when the input is less than smallest int144 or\n * greater than largest int144).\n *\n * Counterpart to Solidity's `int144` operator.\n *\n * Requirements:\n *\n * - input must fit into 144 bits\n */\n function toInt144(int256 value) internal pure returns (int144 downcasted) {\n downcasted = int144(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(144, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int136 from int256, reverting on\n * overflow (when the input is less than smallest int136 or\n * greater than largest int136).\n *\n * Counterpart to Solidity's `int136` operator.\n *\n * Requirements:\n *\n * - input must fit into 136 bits\n */\n function toInt136(int256 value) internal pure returns (int136 downcasted) {\n downcasted = int136(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(136, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int128 from int256, reverting on\n * overflow (when the input is less than smallest int128 or\n * greater than largest int128).\n *\n * Counterpart to Solidity's `int128` operator.\n *\n * Requirements:\n *\n * - input must fit into 128 bits\n */\n function toInt128(int256 value) internal pure returns (int128 downcasted) {\n downcasted = int128(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(128, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int120 from int256, reverting on\n * overflow (when the input is less than smallest int120 or\n * greater than largest int120).\n *\n * Counterpart to Solidity's `int120` operator.\n *\n * Requirements:\n *\n * - input must fit into 120 bits\n */\n function toInt120(int256 value) internal pure returns (int120 downcasted) {\n downcasted = int120(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(120, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int112 from int256, reverting on\n * overflow (when the input is less than smallest int112 or\n * greater than largest int112).\n *\n * Counterpart to Solidity's `int112` operator.\n *\n * Requirements:\n *\n * - input must fit into 112 bits\n */\n function toInt112(int256 value) internal pure returns (int112 downcasted) {\n downcasted = int112(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(112, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int104 from int256, reverting on\n * overflow (when the input is less than smallest int104 or\n * greater than largest int104).\n *\n * Counterpart to Solidity's `int104` operator.\n *\n * Requirements:\n *\n * - input must fit into 104 bits\n */\n function toInt104(int256 value) internal pure returns (int104 downcasted) {\n downcasted = int104(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(104, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int96 from int256, reverting on\n * overflow (when the input is less than smallest int96 or\n * greater than largest int96).\n *\n * Counterpart to Solidity's `int96` operator.\n *\n * Requirements:\n *\n * - input must fit into 96 bits\n */\n function toInt96(int256 value) internal pure returns (int96 downcasted) {\n downcasted = int96(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(96, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int88 from int256, reverting on\n * overflow (when the input is less than smallest int88 or\n * greater than largest int88).\n *\n * Counterpart to Solidity's `int88` operator.\n *\n * Requirements:\n *\n * - input must fit into 88 bits\n */\n function toInt88(int256 value) internal pure returns (int88 downcasted) {\n downcasted = int88(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(88, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int80 from int256, reverting on\n * overflow (when the input is less than smallest int80 or\n * greater than largest int80).\n *\n * Counterpart to Solidity's `int80` operator.\n *\n * Requirements:\n *\n * - input must fit into 80 bits\n */\n function toInt80(int256 value) internal pure returns (int80 downcasted) {\n downcasted = int80(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(80, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int72 from int256, reverting on\n * overflow (when the input is less than smallest int72 or\n * greater than largest int72).\n *\n * Counterpart to Solidity's `int72` operator.\n *\n * Requirements:\n *\n * - input must fit into 72 bits\n */\n function toInt72(int256 value) internal pure returns (int72 downcasted) {\n downcasted = int72(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(72, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int64 from int256, reverting on\n * overflow (when the input is less than smallest int64 or\n * greater than largest int64).\n *\n * Counterpart to Solidity's `int64` operator.\n *\n * Requirements:\n *\n * - input must fit into 64 bits\n */\n function toInt64(int256 value) internal pure returns (int64 downcasted) {\n downcasted = int64(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(64, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int56 from int256, reverting on\n * overflow (when the input is less than smallest int56 or\n * greater than largest int56).\n *\n * Counterpart to Solidity's `int56` operator.\n *\n * Requirements:\n *\n * - input must fit into 56 bits\n */\n function toInt56(int256 value) internal pure returns (int56 downcasted) {\n downcasted = int56(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(56, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int48 from int256, reverting on\n * overflow (when the input is less than smallest int48 or\n * greater than largest int48).\n *\n * Counterpart to Solidity's `int48` operator.\n *\n * Requirements:\n *\n * - input must fit into 48 bits\n */\n function toInt48(int256 value) internal pure returns (int48 downcasted) {\n downcasted = int48(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(48, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int40 from int256, reverting on\n * overflow (when the input is less than smallest int40 or\n * greater than largest int40).\n *\n * Counterpart to Solidity's `int40` operator.\n *\n * Requirements:\n *\n * - input must fit into 40 bits\n */\n function toInt40(int256 value) internal pure returns (int40 downcasted) {\n downcasted = int40(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(40, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int32 from int256, reverting on\n * overflow (when the input is less than smallest int32 or\n * greater than largest int32).\n *\n * Counterpart to Solidity's `int32` operator.\n *\n * Requirements:\n *\n * - input must fit into 32 bits\n */\n function toInt32(int256 value) internal pure returns (int32 downcasted) {\n downcasted = int32(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(32, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int24 from int256, reverting on\n * overflow (when the input is less than smallest int24 or\n * greater than largest int24).\n *\n * Counterpart to Solidity's `int24` operator.\n *\n * Requirements:\n *\n * - input must fit into 24 bits\n */\n function toInt24(int256 value) internal pure returns (int24 downcasted) {\n downcasted = int24(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(24, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int16 from int256, reverting on\n * overflow (when the input is less than smallest int16 or\n * greater than largest int16).\n *\n * Counterpart to Solidity's `int16` operator.\n *\n * Requirements:\n *\n * - input must fit into 16 bits\n */\n function toInt16(int256 value) internal pure returns (int16 downcasted) {\n downcasted = int16(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(16, value);\n }\n }\n\n /**\n * @dev Returns the downcasted int8 from int256, reverting on\n * overflow (when the input is less than smallest int8 or\n * greater than largest int8).\n *\n * Counterpart to Solidity's `int8` operator.\n *\n * Requirements:\n *\n * - input must fit into 8 bits\n */\n function toInt8(int256 value) internal pure returns (int8 downcasted) {\n downcasted = int8(value);\n if (downcasted != value) {\n revert SafeCastOverflowedIntDowncast(8, value);\n }\n }\n\n /**\n * @dev Converts an unsigned uint256 into a signed int256.\n *\n * Requirements:\n *\n * - input must be less than or equal to maxInt256.\n */\n function toInt256(uint256 value) internal pure returns (int256) {\n // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\n if (value > uint256(type(int256).max)) {\n revert SafeCastOverflowedUintToInt(value);\n }\n return int256(value);\n }\n\n /**\n * @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump.\n */\n function toUint(bool b) internal pure returns (uint256 u) {\n assembly (\"memory-safe\") {\n u := iszero(iszero(b))\n }\n }\n}\n"},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)\n\npragma solidity ^0.8.20;\n\nimport {SafeCast} from \"./SafeCast.sol\";\n\n/**\n * @dev Standard signed math utilities missing in the Solidity language.\n */\nlibrary SignedMath {\n /**\n * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n *\n * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n * one branch when needed, making this function more expensive.\n */\n function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {\n unchecked {\n // branchless ternary works because:\n // b ^ (a ^ b) == a\n // b ^ 0 == b\n return b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));\n }\n }\n\n /**\n * @dev Returns the largest of two signed numbers.\n */\n function max(int256 a, int256 b) internal pure returns (int256) {\n return ternary(a > b, a, b);\n }\n\n /**\n * @dev Returns the smallest of two signed numbers.\n */\n function min(int256 a, int256 b) internal pure returns (int256) {\n return ternary(a < b, a, b);\n }\n\n /**\n * @dev Returns the average of two signed numbers without overflow.\n * The result is rounded towards zero.\n */\n function average(int256 a, int256 b) internal pure returns (int256) {\n // Formula from the book \"Hacker's Delight\"\n int256 x = (a & b) + ((a ^ b) >> 1);\n return x + (int256(uint256(x) >> 255) & (a ^ b));\n }\n\n /**\n * @dev Returns the absolute unsigned value of a signed value.\n */\n function abs(int256 n) internal pure returns (uint256) {\n unchecked {\n // Formula from the \"Bit Twiddling Hacks\" by Sean Eron Anderson.\n // Since `n` is a signed integer, the generated bytecode will use the SAR opcode to perform the right shift,\n // taking advantage of the most significant (or \"sign\" bit) in two's complement representation.\n // This opcode adds new most significant bits set to the value of the previous most significant bit. As a result,\n // the mask will either be `bytes32(0)` (if n is positive) or `~bytes32(0)` (if n is negative).\n int256 mask = n >> 255;\n\n // A `bytes32(0)` mask leaves the input unchanged, while a `~bytes32(0)` mask complements it.\n return uint256((n + mask) ^ mask);\n }\n }\n}\n"},"@openzeppelin/contracts/utils/Nonces.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol)\npragma solidity ^0.8.20;\n\n/**\n * @dev Provides tracking nonces for addresses. Nonces will only increment.\n */\nabstract contract Nonces {\n /**\n * @dev The nonce used for an `account` is not the expected current nonce.\n */\n error InvalidAccountNonce(address account, uint256 currentNonce);\n\n mapping(address account => uint256) private _nonces;\n\n /**\n * @dev Returns the next unused nonce for an address.\n */\n function nonces(address owner) public view virtual returns (uint256) {\n return _nonces[owner];\n }\n\n /**\n * @dev Consumes a nonce.\n *\n * Returns the current value and increments nonce.\n */\n function _useNonce(address owner) internal virtual returns (uint256) {\n // For each account, the nonce has an initial value of 0, can only be incremented by one, and cannot be\n // decremented or reset. This guarantees that the nonce never overflows.\n unchecked {\n // It is important to do x++ and not ++x here.\n return _nonces[owner]++;\n }\n }\n\n /**\n * @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`.\n */\n function _useCheckedNonce(address owner, uint256 nonce) internal virtual {\n uint256 current = _useNonce(owner);\n if (nonce != current) {\n revert InvalidAccountNonce(owner, current);\n }\n }\n}\n"},"@openzeppelin/contracts/utils/Panic.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Helper library for emitting standardized panic codes.\n *\n * ```solidity\n * contract Example {\n * using Panic for uint256;\n *\n * // Use any of the declared internal constants\n * function foo() { Panic.GENERIC.panic(); }\n *\n * // Alternatively\n * function foo() { Panic.panic(Panic.GENERIC); }\n * }\n * ```\n *\n * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].\n *\n * _Available since v5.1._\n */\n// slither-disable-next-line unused-state\nlibrary Panic {\n /// @dev generic / unspecified error\n uint256 internal constant GENERIC = 0x00;\n /// @dev used by the assert() builtin\n uint256 internal constant ASSERT = 0x01;\n /// @dev arithmetic underflow or overflow\n uint256 internal constant UNDER_OVERFLOW = 0x11;\n /// @dev division or modulo by zero\n uint256 internal constant DIVISION_BY_ZERO = 0x12;\n /// @dev enum conversion error\n uint256 internal constant ENUM_CONVERSION_ERROR = 0x21;\n /// @dev invalid encoding in storage\n uint256 internal constant STORAGE_ENCODING_ERROR = 0x22;\n /// @dev empty array pop\n uint256 internal constant EMPTY_ARRAY_POP = 0x31;\n /// @dev array out of bounds access\n uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32;\n /// @dev resource error (too large allocation or too large array)\n uint256 internal constant RESOURCE_ERROR = 0x41;\n /// @dev calling invalid internal function\n uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51;\n\n /// @dev Reverts with a panic code. Recommended to use with\n /// the internal constants with predefined codes.\n function panic(uint256 code) internal pure {\n assembly (\"memory-safe\") {\n mstore(0x00, 0x4e487b71)\n mstore(0x20, code)\n revert(0x1c, 0x24)\n }\n }\n}\n"},"@openzeppelin/contracts/utils/ShortStrings.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (utils/ShortStrings.sol)\n\npragma solidity ^0.8.20;\n\nimport {StorageSlot} from \"./StorageSlot.sol\";\n\n// | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |\n// | length | 0x BB |\ntype ShortString is bytes32;\n\n/**\n * @dev This library provides functions to convert short memory strings\n * into a `ShortString` type that can be used as an immutable variable.\n *\n * Strings of arbitrary length can be optimized using this library if\n * they are short enough (up to 31 bytes) by packing them with their\n * length (1 byte) in a single EVM word (32 bytes). Additionally, a\n * fallback mechanism can be used for every other case.\n *\n * Usage example:\n *\n * ```solidity\n * contract Named {\n * using ShortStrings for *;\n *\n * ShortString private immutable _name;\n * string private _nameFallback;\n *\n * constructor(string memory contractName) {\n * _name = contractName.toShortStringWithFallback(_nameFallback);\n * }\n *\n * function name() external view returns (string memory) {\n * return _name.toStringWithFallback(_nameFallback);\n * }\n * }\n * ```\n */\nlibrary ShortStrings {\n // Used as an identifier for strings longer than 31 bytes.\n bytes32 private constant FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF;\n\n error StringTooLong(string str);\n error InvalidShortString();\n\n /**\n * @dev Encode a string of at most 31 chars into a `ShortString`.\n *\n * This will trigger a `StringTooLong` error is the input string is too long.\n */\n function toShortString(string memory str) internal pure returns (ShortString) {\n bytes memory bstr = bytes(str);\n if (bstr.length > 31) {\n revert StringTooLong(str);\n }\n return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length));\n }\n\n /**\n * @dev Decode a `ShortString` back to a \"normal\" string.\n */\n function toString(ShortString sstr) internal pure returns (string memory) {\n uint256 len = byteLength(sstr);\n // using `new string(len)` would work locally but is not memory safe.\n string memory str = new string(32);\n assembly (\"memory-safe\") {\n mstore(str, len)\n mstore(add(str, 0x20), sstr)\n }\n return str;\n }\n\n /**\n * @dev Return the length of a `ShortString`.\n */\n function byteLength(ShortString sstr) internal pure returns (uint256) {\n uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF;\n if (result > 31) {\n revert InvalidShortString();\n }\n return result;\n }\n\n /**\n * @dev Encode a string into a `ShortString`, or write it to storage if it is too long.\n */\n function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) {\n if (bytes(value).length < 32) {\n return toShortString(value);\n } else {\n StorageSlot.getStringSlot(store).value = value;\n return ShortString.wrap(FALLBACK_SENTINEL);\n }\n }\n\n /**\n * @dev Decode a string that was encoded to `ShortString` or written to storage using {toShortStringWithFallback}.\n */\n function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) {\n if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {\n return toString(value);\n } else {\n return store;\n }\n }\n\n /**\n * @dev Return the length of a string that was encoded to `ShortString` or written to storage using\n * {toShortStringWithFallback}.\n *\n * WARNING: This will return the \"byte length\" of the string. This may not reflect the actual length in terms of\n * actual characters as the UTF-8 encoding of a single character can span over multiple bytes.\n */\n function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) {\n if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {\n return byteLength(value);\n } else {\n return bytes(store).length;\n }\n }\n}\n"},"@openzeppelin/contracts/utils/StorageSlot.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)\n// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Library for reading and writing primitive types to specific storage slots.\n *\n * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n * This library helps with reading and writing to such slots without the need for inline assembly.\n *\n * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n *\n * Example usage to set ERC-1967 implementation slot:\n * ```solidity\n * contract ERC1967 {\n * // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.\n * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n *\n * function _getImplementation() internal view returns (address) {\n * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n * }\n *\n * function _setImplementation(address newImplementation) internal {\n * require(newImplementation.code.length > 0);\n * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n * }\n * }\n * ```\n *\n * TIP: Consider using this library along with {SlotDerivation}.\n */\nlibrary StorageSlot {\n struct AddressSlot {\n address value;\n }\n\n struct BooleanSlot {\n bool value;\n }\n\n struct Bytes32Slot {\n bytes32 value;\n }\n\n struct Uint256Slot {\n uint256 value;\n }\n\n struct Int256Slot {\n int256 value;\n }\n\n struct StringSlot {\n string value;\n }\n\n struct BytesSlot {\n bytes value;\n }\n\n /**\n * @dev Returns an `AddressSlot` with member `value` located at `slot`.\n */\n function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `BooleanSlot` with member `value` located at `slot`.\n */\n function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `Bytes32Slot` with member `value` located at `slot`.\n */\n function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `Uint256Slot` with member `value` located at `slot`.\n */\n function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `Int256Slot` with member `value` located at `slot`.\n */\n function getInt256Slot(bytes32 slot) internal pure returns (Int256Slot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `StringSlot` with member `value` located at `slot`.\n */\n function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `StringSlot` representation of the string storage pointer `store`.\n */\n function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := store.slot\n }\n }\n\n /**\n * @dev Returns a `BytesSlot` with member `value` located at `slot`.\n */\n function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.\n */\n function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := store.slot\n }\n }\n}\n"},"@openzeppelin/contracts/utils/Strings.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (utils/Strings.sol)\n\npragma solidity ^0.8.20;\n\nimport {Math} from \"./math/Math.sol\";\nimport {SafeCast} from \"./math/SafeCast.sol\";\nimport {SignedMath} from \"./math/SignedMath.sol\";\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n using SafeCast for *;\n\n bytes16 private constant HEX_DIGITS = \"0123456789abcdef\";\n uint8 private constant ADDRESS_LENGTH = 20;\n uint256 private constant SPECIAL_CHARS_LOOKUP =\n (1 << 0x08) | // backspace\n (1 << 0x09) | // tab\n (1 << 0x0a) | // newline\n (1 << 0x0c) | // form feed\n (1 << 0x0d) | // carriage return\n (1 << 0x22) | // double quote\n (1 << 0x5c); // backslash\n\n /**\n * @dev The `value` string doesn't fit in the specified `length`.\n */\n error StringsInsufficientHexLength(uint256 value, uint256 length);\n\n /**\n * @dev The string being parsed contains characters that are not in scope of the given base.\n */\n error StringsInvalidChar();\n\n /**\n * @dev The string being parsed is not a properly formatted address.\n */\n error StringsInvalidAddressFormat();\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n */\n function toString(uint256 value) internal pure returns (string memory) {\n unchecked {\n uint256 length = Math.log10(value) + 1;\n string memory buffer = new string(length);\n uint256 ptr;\n assembly (\"memory-safe\") {\n ptr := add(buffer, add(32, length))\n }\n while (true) {\n ptr--;\n assembly (\"memory-safe\") {\n mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))\n }\n value /= 10;\n if (value == 0) break;\n }\n return buffer;\n }\n }\n\n /**\n * @dev Converts a `int256` to its ASCII `string` decimal representation.\n */\n function toStringSigned(int256 value) internal pure returns (string memory) {\n return string.concat(value < 0 ? \"-\" : \"\", toString(SignedMath.abs(value)));\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n */\n function toHexString(uint256 value) internal pure returns (string memory) {\n unchecked {\n return toHexString(value, Math.log256(value) + 1);\n }\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n */\n function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n uint256 localValue = value;\n bytes memory buffer = new bytes(2 * length + 2);\n buffer[0] = \"0\";\n buffer[1] = \"x\";\n for (uint256 i = 2 * length + 1; i > 1; --i) {\n buffer[i] = HEX_DIGITS[localValue & 0xf];\n localValue >>= 4;\n }\n if (localValue != 0) {\n revert StringsInsufficientHexLength(value, length);\n }\n return string(buffer);\n }\n\n /**\n * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal\n * representation.\n */\n function toHexString(address addr) internal pure returns (string memory) {\n return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);\n }\n\n /**\n * @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal\n * representation, according to EIP-55.\n */\n function toChecksumHexString(address addr) internal pure returns (string memory) {\n bytes memory buffer = bytes(toHexString(addr));\n\n // hash the hex part of buffer (skip length + 2 bytes, length 40)\n uint256 hashValue;\n assembly (\"memory-safe\") {\n hashValue := shr(96, keccak256(add(buffer, 0x22), 40))\n }\n\n for (uint256 i = 41; i > 1; --i) {\n // possible values for buffer[i] are 48 (0) to 57 (9) and 97 (a) to 102 (f)\n if (hashValue & 0xf > 7 && uint8(buffer[i]) > 96) {\n // case shift by xoring with 0x20\n buffer[i] ^= 0x20;\n }\n hashValue >>= 4;\n }\n return string(buffer);\n }\n\n /**\n * @dev Returns true if the two strings are equal.\n */\n function equal(string memory a, string memory b) internal pure returns (bool) {\n return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));\n }\n\n /**\n * @dev Parse a decimal string and returns the value as a `uint256`.\n *\n * Requirements:\n * - The string must be formatted as `[0-9]*`\n * - The result must fit into an `uint256` type\n */\n function parseUint(string memory input) internal pure returns (uint256) {\n return parseUint(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseUint-string} that parses a substring of `input` located between position `begin` (included) and\n * `end` (excluded).\n *\n * Requirements:\n * - The substring must be formatted as `[0-9]*`\n * - The result must fit into an `uint256` type\n */\n function parseUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {\n (bool success, uint256 value) = tryParseUint(input, begin, end);\n if (!success) revert StringsInvalidChar();\n return value;\n }\n\n /**\n * @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character.\n *\n * NOTE: This function will revert if the result does not fit in a `uint256`.\n */\n function tryParseUint(string memory input) internal pure returns (bool success, uint256 value) {\n return _tryParseUintUncheckedBounds(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n * character.\n *\n * NOTE: This function will revert if the result does not fit in a `uint256`.\n */\n function tryParseUint(\n string memory input,\n uint256 begin,\n uint256 end\n ) internal pure returns (bool success, uint256 value) {\n if (end > bytes(input).length || begin > end) return (false, 0);\n return _tryParseUintUncheckedBounds(input, begin, end);\n }\n\n /**\n * @dev Implementation of {tryParseUint-string-uint256-uint256} that does not check bounds. Caller should make sure that\n * `begin <= end <= input.length`. Other inputs would result in undefined behavior.\n */\n function _tryParseUintUncheckedBounds(\n string memory input,\n uint256 begin,\n uint256 end\n ) private pure returns (bool success, uint256 value) {\n bytes memory buffer = bytes(input);\n\n uint256 result = 0;\n for (uint256 i = begin; i < end; ++i) {\n uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));\n if (chr > 9) return (false, 0);\n result *= 10;\n result += chr;\n }\n return (true, result);\n }\n\n /**\n * @dev Parse a decimal string and returns the value as a `int256`.\n *\n * Requirements:\n * - The string must be formatted as `[-+]?[0-9]*`\n * - The result must fit in an `int256` type.\n */\n function parseInt(string memory input) internal pure returns (int256) {\n return parseInt(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and\n * `end` (excluded).\n *\n * Requirements:\n * - The substring must be formatted as `[-+]?[0-9]*`\n * - The result must fit in an `int256` type.\n */\n function parseInt(string memory input, uint256 begin, uint256 end) internal pure returns (int256) {\n (bool success, int256 value) = tryParseInt(input, begin, end);\n if (!success) revert StringsInvalidChar();\n return value;\n }\n\n /**\n * @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if\n * the result does not fit in a `int256`.\n *\n * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.\n */\n function tryParseInt(string memory input) internal pure returns (bool success, int256 value) {\n return _tryParseIntUncheckedBounds(input, 0, bytes(input).length);\n }\n\n uint256 private constant ABS_MIN_INT256 = 2 ** 255;\n\n /**\n * @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n * character or if the result does not fit in a `int256`.\n *\n * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.\n */\n function tryParseInt(\n string memory input,\n uint256 begin,\n uint256 end\n ) internal pure returns (bool success, int256 value) {\n if (end > bytes(input).length || begin > end) return (false, 0);\n return _tryParseIntUncheckedBounds(input, begin, end);\n }\n\n /**\n * @dev Implementation of {tryParseInt-string-uint256-uint256} that does not check bounds. Caller should make sure that\n * `begin <= end <= input.length`. Other inputs would result in undefined behavior.\n */\n function _tryParseIntUncheckedBounds(\n string memory input,\n uint256 begin,\n uint256 end\n ) private pure returns (bool success, int256 value) {\n bytes memory buffer = bytes(input);\n\n // Check presence of a negative sign.\n bytes1 sign = begin == end ? bytes1(0) : bytes1(_unsafeReadBytesOffset(buffer, begin)); // don't do out-of-bound (possibly unsafe) read if sub-string is empty\n bool positiveSign = sign == bytes1(\"+\");\n bool negativeSign = sign == bytes1(\"-\");\n uint256 offset = (positiveSign || negativeSign).toUint();\n\n (bool absSuccess, uint256 absValue) = tryParseUint(input, begin + offset, end);\n\n if (absSuccess && absValue < ABS_MIN_INT256) {\n return (true, negativeSign ? -int256(absValue) : int256(absValue));\n } else if (absSuccess && negativeSign && absValue == ABS_MIN_INT256) {\n return (true, type(int256).min);\n } else return (false, 0);\n }\n\n /**\n * @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as a `uint256`.\n *\n * Requirements:\n * - The string must be formatted as `(0x)?[0-9a-fA-F]*`\n * - The result must fit in an `uint256` type.\n */\n function parseHexUint(string memory input) internal pure returns (uint256) {\n return parseHexUint(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseHexUint-string} that parses a substring of `input` located between position `begin` (included) and\n * `end` (excluded).\n *\n * Requirements:\n * - The substring must be formatted as `(0x)?[0-9a-fA-F]*`\n * - The result must fit in an `uint256` type.\n */\n function parseHexUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {\n (bool success, uint256 value) = tryParseHexUint(input, begin, end);\n if (!success) revert StringsInvalidChar();\n return value;\n }\n\n /**\n * @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character.\n *\n * NOTE: This function will revert if the result does not fit in a `uint256`.\n */\n function tryParseHexUint(string memory input) internal pure returns (bool success, uint256 value) {\n return _tryParseHexUintUncheckedBounds(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an\n * invalid character.\n *\n * NOTE: This function will revert if the result does not fit in a `uint256`.\n */\n function tryParseHexUint(\n string memory input,\n uint256 begin,\n uint256 end\n ) internal pure returns (bool success, uint256 value) {\n if (end > bytes(input).length || begin > end) return (false, 0);\n return _tryParseHexUintUncheckedBounds(input, begin, end);\n }\n\n /**\n * @dev Implementation of {tryParseHexUint-string-uint256-uint256} that does not check bounds. Caller should make sure that\n * `begin <= end <= input.length`. Other inputs would result in undefined behavior.\n */\n function _tryParseHexUintUncheckedBounds(\n string memory input,\n uint256 begin,\n uint256 end\n ) private pure returns (bool success, uint256 value) {\n bytes memory buffer = bytes(input);\n\n // skip 0x prefix if present\n bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(buffer, begin)) == bytes2(\"0x\"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty\n uint256 offset = hasPrefix.toUint() * 2;\n\n uint256 result = 0;\n for (uint256 i = begin + offset; i < end; ++i) {\n uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));\n if (chr > 15) return (false, 0);\n result *= 16;\n unchecked {\n // Multiplying by 16 is equivalent to a shift of 4 bits (with additional overflow check).\n // This guarantees that adding a value < 16 will not cause an overflow, hence the unchecked.\n result += chr;\n }\n }\n return (true, result);\n }\n\n /**\n * @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as an `address`.\n *\n * Requirements:\n * - The string must be formatted as `(0x)?[0-9a-fA-F]{40}`\n */\n function parseAddress(string memory input) internal pure returns (address) {\n return parseAddress(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseAddress-string} that parses a substring of `input` located between position `begin` (included) and\n * `end` (excluded).\n *\n * Requirements:\n * - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}`\n */\n function parseAddress(string memory input, uint256 begin, uint256 end) internal pure returns (address) {\n (bool success, address value) = tryParseAddress(input, begin, end);\n if (!success) revert StringsInvalidAddressFormat();\n return value;\n }\n\n /**\n * @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly\n * formatted address. See {parseAddress-string} requirements.\n */\n function tryParseAddress(string memory input) internal pure returns (bool success, address value) {\n return tryParseAddress(input, 0, bytes(input).length);\n }\n\n /**\n * @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly\n * formatted address. See {parseAddress-string-uint256-uint256} requirements.\n */\n function tryParseAddress(\n string memory input,\n uint256 begin,\n uint256 end\n ) internal pure returns (bool success, address value) {\n if (end > bytes(input).length || begin > end) return (false, address(0));\n\n bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(bytes(input), begin)) == bytes2(\"0x\"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty\n uint256 expectedLength = 40 + hasPrefix.toUint() * 2;\n\n // check that input is the correct length\n if (end - begin == expectedLength) {\n // length guarantees that this does not overflow, and value is at most type(uint160).max\n (bool s, uint256 v) = _tryParseHexUintUncheckedBounds(input, begin, end);\n return (s, address(uint160(v)));\n } else {\n return (false, address(0));\n }\n }\n\n function _tryParseChr(bytes1 chr) private pure returns (uint8) {\n uint8 value = uint8(chr);\n\n // Try to parse `chr`:\n // - Case 1: [0-9]\n // - Case 2: [a-f]\n // - Case 3: [A-F]\n // - otherwise not supported\n unchecked {\n if (value > 47 && value < 58) value -= 48;\n else if (value > 96 && value < 103) value -= 87;\n else if (value > 64 && value < 71) value -= 55;\n else return type(uint8).max;\n }\n\n return value;\n }\n\n /**\n * @dev Escape special characters in JSON strings. This can be useful to prevent JSON injection in NFT metadata.\n *\n * WARNING: This function should only be used in double quoted JSON strings. Single quotes are not escaped.\n *\n * NOTE: This function escapes all unicode characters, and not just the ones in ranges defined in section 2.5 of\n * RFC-4627 (U+0000 to U+001F, U+0022 and U+005C). ECMAScript's `JSON.parse` does recover escaped unicode\n * characters that are not in this range, but other tooling may provide different results.\n */\n function escapeJSON(string memory input) internal pure returns (string memory) {\n bytes memory buffer = bytes(input);\n bytes memory output = new bytes(2 * buffer.length); // worst case scenario\n uint256 outputLength = 0;\n\n for (uint256 i; i < buffer.length; ++i) {\n bytes1 char = bytes1(_unsafeReadBytesOffset(buffer, i));\n if (((SPECIAL_CHARS_LOOKUP & (1 << uint8(char))) != 0)) {\n output[outputLength++] = \"\\\\\";\n if (char == 0x08) output[outputLength++] = \"b\";\n else if (char == 0x09) output[outputLength++] = \"t\";\n else if (char == 0x0a) output[outputLength++] = \"n\";\n else if (char == 0x0c) output[outputLength++] = \"f\";\n else if (char == 0x0d) output[outputLength++] = \"r\";\n else if (char == 0x5c) output[outputLength++] = \"\\\\\";\n else if (char == 0x22) {\n // solhint-disable-next-line quotes\n output[outputLength++] = '\"';\n }\n } else {\n output[outputLength++] = char;\n }\n }\n // write the actual length and deallocate unused memory\n assembly (\"memory-safe\") {\n mstore(output, outputLength)\n mstore(0x40, add(output, shl(5, shr(5, add(outputLength, 63)))))\n }\n\n return string(output);\n }\n\n /**\n * @dev Reads a bytes32 from a bytes array without bounds checking.\n *\n * NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the\n * assembly block as such would prevent some optimizations.\n */\n function _unsafeReadBytesOffset(bytes memory buffer, uint256 offset) private pure returns (bytes32 value) {\n // This is not memory safe in the general case, but all calls to this private function are within bounds.\n assembly (\"memory-safe\") {\n value := mload(add(buffer, add(0x20, offset)))\n }\n }\n}\n"},"@openzeppelin/contracts/utils/structs/Checkpoints.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (utils/structs/Checkpoints.sol)\n// This file was procedurally generated from scripts/generate/templates/Checkpoints.js.\n\npragma solidity ^0.8.20;\n\nimport {Math} from \"../math/Math.sol\";\n\n/**\n * @dev This library defines the `Trace*` struct, for checkpointing values as they change at different points in\n * time, and later looking up past values by block number. See {Votes} as an example.\n *\n * To create a history of checkpoints define a variable type `Checkpoints.Trace*` in your contract, and store a new\n * checkpoint for the current transaction block using the {push} function.\n */\nlibrary Checkpoints {\n /**\n * @dev A value was attempted to be inserted on a past checkpoint.\n */\n error CheckpointUnorderedInsertion();\n\n struct Trace224 {\n Checkpoint224[] _checkpoints;\n }\n\n struct Checkpoint224 {\n uint32 _key;\n uint224 _value;\n }\n\n /**\n * @dev Pushes a (`key`, `value`) pair into a Trace224 so that it is stored as the checkpoint.\n *\n * Returns previous value and new value.\n *\n * IMPORTANT: Never accept `key` as a user input, since an arbitrary `type(uint32).max` key set will disable the\n * library.\n */\n function push(\n Trace224 storage self,\n uint32 key,\n uint224 value\n ) internal returns (uint224 oldValue, uint224 newValue) {\n return _insert(self._checkpoints, key, value);\n }\n\n /**\n * @dev Returns the value in the first (oldest) checkpoint with key greater or equal than the search key, or zero if\n * there is none.\n */\n function lowerLookup(Trace224 storage self, uint32 key) internal view returns (uint224) {\n uint256 len = self._checkpoints.length;\n uint256 pos = _lowerBinaryLookup(self._checkpoints, key, 0, len);\n return pos == len ? 0 : _unsafeAccess(self._checkpoints, pos)._value;\n }\n\n /**\n * @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n * if there is none.\n */\n function upperLookup(Trace224 storage self, uint32 key) internal view returns (uint224) {\n uint256 len = self._checkpoints.length;\n uint256 pos = _upperBinaryLookup(self._checkpoints, key, 0, len);\n return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;\n }\n\n /**\n * @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n * if there is none.\n *\n * NOTE: This is a variant of {upperLookup} that is optimised to find \"recent\" checkpoint (checkpoints with high\n * keys).\n */\n function upperLookupRecent(Trace224 storage self, uint32 key) internal view returns (uint224) {\n uint256 len = self._checkpoints.length;\n\n uint256 low = 0;\n uint256 high = len;\n\n if (len > 5) {\n uint256 mid = len - Math.sqrt(len);\n if (key < _unsafeAccess(self._checkpoints, mid)._key) {\n high = mid;\n } else {\n low = mid + 1;\n }\n }\n\n uint256 pos = _upperBinaryLookup(self._checkpoints, key, low, high);\n\n return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;\n }\n\n /**\n * @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints.\n */\n function latest(Trace224 storage self) internal view returns (uint224) {\n uint256 pos = self._checkpoints.length;\n return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;\n }\n\n /**\n * @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value\n * in the most recent checkpoint.\n */\n function latestCheckpoint(Trace224 storage self) internal view returns (bool exists, uint32 _key, uint224 _value) {\n uint256 pos = self._checkpoints.length;\n if (pos == 0) {\n return (false, 0, 0);\n } else {\n Checkpoint224 storage ckpt = _unsafeAccess(self._checkpoints, pos - 1);\n return (true, ckpt._key, ckpt._value);\n }\n }\n\n /**\n * @dev Returns the number of checkpoints.\n */\n function length(Trace224 storage self) internal view returns (uint256) {\n return self._checkpoints.length;\n }\n\n /**\n * @dev Returns checkpoint at given position.\n */\n function at(Trace224 storage self, uint32 pos) internal view returns (Checkpoint224 memory) {\n return self._checkpoints[pos];\n }\n\n /**\n * @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint,\n * or by updating the last one.\n */\n function _insert(\n Checkpoint224[] storage self,\n uint32 key,\n uint224 value\n ) private returns (uint224 oldValue, uint224 newValue) {\n uint256 pos = self.length;\n\n if (pos > 0) {\n Checkpoint224 storage last = _unsafeAccess(self, pos - 1);\n uint32 lastKey = last._key;\n uint224 lastValue = last._value;\n\n // Checkpoint keys must be non-decreasing.\n if (lastKey > key) {\n revert CheckpointUnorderedInsertion();\n }\n\n // Update or push new checkpoint\n if (lastKey == key) {\n last._value = value;\n } else {\n self.push(Checkpoint224({_key: key, _value: value}));\n }\n return (lastValue, value);\n } else {\n self.push(Checkpoint224({_key: key, _value: value}));\n return (0, value);\n }\n }\n\n /**\n * @dev Return the index of the first (oldest) checkpoint with key strictly bigger than the search key, or `high`\n * if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n * `high`.\n *\n * WARNING: `high` should not be greater than the array's length.\n */\n function _upperBinaryLookup(\n Checkpoint224[] storage self,\n uint32 key,\n uint256 low,\n uint256 high\n ) private view returns (uint256) {\n while (low < high) {\n uint256 mid = Math.average(low, high);\n if (_unsafeAccess(self, mid)._key > key) {\n high = mid;\n } else {\n low = mid + 1;\n }\n }\n return high;\n }\n\n /**\n * @dev Return the index of the first (oldest) checkpoint with key greater or equal than the search key, or `high`\n * if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n * `high`.\n *\n * WARNING: `high` should not be greater than the array's length.\n */\n function _lowerBinaryLookup(\n Checkpoint224[] storage self,\n uint32 key,\n uint256 low,\n uint256 high\n ) private view returns (uint256) {\n while (low < high) {\n uint256 mid = Math.average(low, high);\n if (_unsafeAccess(self, mid)._key < key) {\n low = mid + 1;\n } else {\n high = mid;\n }\n }\n return high;\n }\n\n /**\n * @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds.\n */\n function _unsafeAccess(\n Checkpoint224[] storage self,\n uint256 pos\n ) private pure returns (Checkpoint224 storage result) {\n assembly {\n mstore(0, self.slot)\n result.slot := add(keccak256(0, 0x20), pos)\n }\n }\n\n struct Trace208 {\n Checkpoint208[] _checkpoints;\n }\n\n struct Checkpoint208 {\n uint48 _key;\n uint208 _value;\n }\n\n /**\n * @dev Pushes a (`key`, `value`) pair into a Trace208 so that it is stored as the checkpoint.\n *\n * Returns previous value and new value.\n *\n * IMPORTANT: Never accept `key` as a user input, since an arbitrary `type(uint48).max` key set will disable the\n * library.\n */\n function push(\n Trace208 storage self,\n uint48 key,\n uint208 value\n ) internal returns (uint208 oldValue, uint208 newValue) {\n return _insert(self._checkpoints, key, value);\n }\n\n /**\n * @dev Returns the value in the first (oldest) checkpoint with key greater or equal than the search key, or zero if\n * there is none.\n */\n function lowerLookup(Trace208 storage self, uint48 key) internal view returns (uint208) {\n uint256 len = self._checkpoints.length;\n uint256 pos = _lowerBinaryLookup(self._checkpoints, key, 0, len);\n return pos == len ? 0 : _unsafeAccess(self._checkpoints, pos)._value;\n }\n\n /**\n * @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n * if there is none.\n */\n function upperLookup(Trace208 storage self, uint48 key) internal view returns (uint208) {\n uint256 len = self._checkpoints.length;\n uint256 pos = _upperBinaryLookup(self._checkpoints, key, 0, len);\n return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;\n }\n\n /**\n * @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n * if there is none.\n *\n * NOTE: This is a variant of {upperLookup} that is optimised to find \"recent\" checkpoint (checkpoints with high\n * keys).\n */\n function upperLookupRecent(Trace208 storage self, uint48 key) internal view returns (uint208) {\n uint256 len = self._checkpoints.length;\n\n uint256 low = 0;\n uint256 high = len;\n\n if (len > 5) {\n uint256 mid = len - Math.sqrt(len);\n if (key < _unsafeAccess(self._checkpoints, mid)._key) {\n high = mid;\n } else {\n low = mid + 1;\n }\n }\n\n uint256 pos = _upperBinaryLookup(self._checkpoints, key, low, high);\n\n return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;\n }\n\n /**\n * @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints.\n */\n function latest(Trace208 storage self) internal view returns (uint208) {\n uint256 pos = self._checkpoints.length;\n return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;\n }\n\n /**\n * @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value\n * in the most recent checkpoint.\n */\n function latestCheckpoint(Trace208 storage self) internal view returns (bool exists, uint48 _key, uint208 _value) {\n uint256 pos = self._checkpoints.length;\n if (pos == 0) {\n return (false, 0, 0);\n } else {\n Checkpoint208 storage ckpt = _unsafeAccess(self._checkpoints, pos - 1);\n return (true, ckpt._key, ckpt._value);\n }\n }\n\n /**\n * @dev Returns the number of checkpoints.\n */\n function length(Trace208 storage self) internal view returns (uint256) {\n return self._checkpoints.length;\n }\n\n /**\n * @dev Returns checkpoint at given position.\n */\n function at(Trace208 storage self, uint32 pos) internal view returns (Checkpoint208 memory) {\n return self._checkpoints[pos];\n }\n\n /**\n * @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint,\n * or by updating the last one.\n */\n function _insert(\n Checkpoint208[] storage self,\n uint48 key,\n uint208 value\n ) private returns (uint208 oldValue, uint208 newValue) {\n uint256 pos = self.length;\n\n if (pos > 0) {\n Checkpoint208 storage last = _unsafeAccess(self, pos - 1);\n uint48 lastKey = last._key;\n uint208 lastValue = last._value;\n\n // Checkpoint keys must be non-decreasing.\n if (lastKey > key) {\n revert CheckpointUnorderedInsertion();\n }\n\n // Update or push new checkpoint\n if (lastKey == key) {\n last._value = value;\n } else {\n self.push(Checkpoint208({_key: key, _value: value}));\n }\n return (lastValue, value);\n } else {\n self.push(Checkpoint208({_key: key, _value: value}));\n return (0, value);\n }\n }\n\n /**\n * @dev Return the index of the first (oldest) checkpoint with key strictly bigger than the search key, or `high`\n * if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n * `high`.\n *\n * WARNING: `high` should not be greater than the array's length.\n */\n function _upperBinaryLookup(\n Checkpoint208[] storage self,\n uint48 key,\n uint256 low,\n uint256 high\n ) private view returns (uint256) {\n while (low < high) {\n uint256 mid = Math.average(low, high);\n if (_unsafeAccess(self, mid)._key > key) {\n high = mid;\n } else {\n low = mid + 1;\n }\n }\n return high;\n }\n\n /**\n * @dev Return the index of the first (oldest) checkpoint with key greater or equal than the search key, or `high`\n * if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n * `high`.\n *\n * WARNING: `high` should not be greater than the array's length.\n */\n function _lowerBinaryLookup(\n Checkpoint208[] storage self,\n uint48 key,\n uint256 low,\n uint256 high\n ) private view returns (uint256) {\n while (low < high) {\n uint256 mid = Math.average(low, high);\n if (_unsafeAccess(self, mid)._key < key) {\n low = mid + 1;\n } else {\n high = mid;\n }\n }\n return high;\n }\n\n /**\n * @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds.\n */\n function _unsafeAccess(\n Checkpoint208[] storage self,\n uint256 pos\n ) private pure returns (Checkpoint208 storage result) {\n assembly {\n mstore(0, self.slot)\n result.slot := add(keccak256(0, 0x20), pos)\n }\n }\n\n struct Trace160 {\n Checkpoint160[] _checkpoints;\n }\n\n struct Checkpoint160 {\n uint96 _key;\n uint160 _value;\n }\n\n /**\n * @dev Pushes a (`key`, `value`) pair into a Trace160 so that it is stored as the checkpoint.\n *\n * Returns previous value and new value.\n *\n * IMPORTANT: Never accept `key` as a user input, since an arbitrary `type(uint96).max` key set will disable the\n * library.\n */\n function push(\n Trace160 storage self,\n uint96 key,\n uint160 value\n ) internal returns (uint160 oldValue, uint160 newValue) {\n return _insert(self._checkpoints, key, value);\n }\n\n /**\n * @dev Returns the value in the first (oldest) checkpoint with key greater or equal than the search key, or zero if\n * there is none.\n */\n function lowerLookup(Trace160 storage self, uint96 key) internal view returns (uint160) {\n uint256 len = self._checkpoints.length;\n uint256 pos = _lowerBinaryLookup(self._checkpoints, key, 0, len);\n return pos == len ? 0 : _unsafeAccess(self._checkpoints, pos)._value;\n }\n\n /**\n * @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n * if there is none.\n */\n function upperLookup(Trace160 storage self, uint96 key) internal view returns (uint160) {\n uint256 len = self._checkpoints.length;\n uint256 pos = _upperBinaryLookup(self._checkpoints, key, 0, len);\n return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;\n }\n\n /**\n * @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n * if there is none.\n *\n * NOTE: This is a variant of {upperLookup} that is optimised to find \"recent\" checkpoint (checkpoints with high\n * keys).\n */\n function upperLookupRecent(Trace160 storage self, uint96 key) internal view returns (uint160) {\n uint256 len = self._checkpoints.length;\n\n uint256 low = 0;\n uint256 high = len;\n\n if (len > 5) {\n uint256 mid = len - Math.sqrt(len);\n if (key < _unsafeAccess(self._checkpoints, mid)._key) {\n high = mid;\n } else {\n low = mid + 1;\n }\n }\n\n uint256 pos = _upperBinaryLookup(self._checkpoints, key, low, high);\n\n return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;\n }\n\n /**\n * @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints.\n */\n function latest(Trace160 storage self) internal view returns (uint160) {\n uint256 pos = self._checkpoints.length;\n return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value;\n }\n\n /**\n * @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value\n * in the most recent checkpoint.\n */\n function latestCheckpoint(Trace160 storage self) internal view returns (bool exists, uint96 _key, uint160 _value) {\n uint256 pos = self._checkpoints.length;\n if (pos == 0) {\n return (false, 0, 0);\n } else {\n Checkpoint160 storage ckpt = _unsafeAccess(self._checkpoints, pos - 1);\n return (true, ckpt._key, ckpt._value);\n }\n }\n\n /**\n * @dev Returns the number of checkpoints.\n */\n function length(Trace160 storage self) internal view returns (uint256) {\n return self._checkpoints.length;\n }\n\n /**\n * @dev Returns checkpoint at given position.\n */\n function at(Trace160 storage self, uint32 pos) internal view returns (Checkpoint160 memory) {\n return self._checkpoints[pos];\n }\n\n /**\n * @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint,\n * or by updating the last one.\n */\n function _insert(\n Checkpoint160[] storage self,\n uint96 key,\n uint160 value\n ) private returns (uint160 oldValue, uint160 newValue) {\n uint256 pos = self.length;\n\n if (pos > 0) {\n Checkpoint160 storage last = _unsafeAccess(self, pos - 1);\n uint96 lastKey = last._key;\n uint160 lastValue = last._value;\n\n // Checkpoint keys must be non-decreasing.\n if (lastKey > key) {\n revert CheckpointUnorderedInsertion();\n }\n\n // Update or push new checkpoint\n if (lastKey == key) {\n last._value = value;\n } else {\n self.push(Checkpoint160({_key: key, _value: value}));\n }\n return (lastValue, value);\n } else {\n self.push(Checkpoint160({_key: key, _value: value}));\n return (0, value);\n }\n }\n\n /**\n * @dev Return the index of the first (oldest) checkpoint with key strictly bigger than the search key, or `high`\n * if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n * `high`.\n *\n * WARNING: `high` should not be greater than the array's length.\n */\n function _upperBinaryLookup(\n Checkpoint160[] storage self,\n uint96 key,\n uint256 low,\n uint256 high\n ) private view returns (uint256) {\n while (low < high) {\n uint256 mid = Math.average(low, high);\n if (_unsafeAccess(self, mid)._key > key) {\n high = mid;\n } else {\n low = mid + 1;\n }\n }\n return high;\n }\n\n /**\n * @dev Return the index of the first (oldest) checkpoint with key greater or equal than the search key, or `high`\n * if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n * `high`.\n *\n * WARNING: `high` should not be greater than the array's length.\n */\n function _lowerBinaryLookup(\n Checkpoint160[] storage self,\n uint96 key,\n uint256 low,\n uint256 high\n ) private view returns (uint256) {\n while (low < high) {\n uint256 mid = Math.average(low, high);\n if (_unsafeAccess(self, mid)._key < key) {\n low = mid + 1;\n } else {\n high = mid;\n }\n }\n return high;\n }\n\n /**\n * @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds.\n */\n function _unsafeAccess(\n Checkpoint160[] storage self,\n uint256 pos\n ) private pure returns (Checkpoint160 storage result) {\n assembly {\n mstore(0, self.slot)\n result.slot := add(keccak256(0, 0x20), pos)\n }\n }\n}\n"},"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/structs/DoubleEndedQueue.sol)\npragma solidity ^0.8.20;\n\nimport {Panic} from \"../Panic.sol\";\n\n/**\n * @dev A sequence of items with the ability to efficiently push and pop items (i.e. insert and remove) on both ends of\n * the sequence (called front and back). Among other access patterns, it can be used to implement efficient LIFO and\n * FIFO queues. Storage use is optimized, and all operations are O(1) constant time. This includes {clear}, given that\n * the existing queue contents are left in storage.\n *\n * The struct is called `Bytes32Deque`. Other types can be cast to and from `bytes32`. This data structure can only be\n * used in storage, and not in memory.\n * ```solidity\n * DoubleEndedQueue.Bytes32Deque queue;\n * ```\n */\nlibrary DoubleEndedQueue {\n /**\n * @dev Indices are 128 bits so begin and end are packed in a single storage slot for efficient access.\n *\n * Struct members have an underscore prefix indicating that they are \"private\" and should not be read or written to\n * directly. Use the functions provided below instead. Modifying the struct manually may violate assumptions and\n * lead to unexpected behavior.\n *\n * The first item is at data[begin] and the last item is at data[end - 1]. This range can wrap around.\n */\n struct Bytes32Deque {\n uint128 _begin;\n uint128 _end;\n mapping(uint128 index => bytes32) _data;\n }\n\n /**\n * @dev Inserts an item at the end of the queue.\n *\n * Reverts with {Panic-RESOURCE_ERROR} if the queue is full.\n */\n function pushBack(Bytes32Deque storage deque, bytes32 value) internal {\n unchecked {\n uint128 backIndex = deque._end;\n if (backIndex + 1 == deque._begin) Panic.panic(Panic.RESOURCE_ERROR);\n deque._data[backIndex] = value;\n deque._end = backIndex + 1;\n }\n }\n\n /**\n * @dev Removes the item at the end of the queue and returns it.\n *\n * Reverts with {Panic-EMPTY_ARRAY_POP} if the queue is empty.\n */\n function popBack(Bytes32Deque storage deque) internal returns (bytes32 value) {\n unchecked {\n uint128 backIndex = deque._end;\n if (backIndex == deque._begin) Panic.panic(Panic.EMPTY_ARRAY_POP);\n --backIndex;\n value = deque._data[backIndex];\n delete deque._data[backIndex];\n deque._end = backIndex;\n }\n }\n\n /**\n * @dev Inserts an item at the beginning of the queue.\n *\n * Reverts with {Panic-RESOURCE_ERROR} if the queue is full.\n */\n function pushFront(Bytes32Deque storage deque, bytes32 value) internal {\n unchecked {\n uint128 frontIndex = deque._begin - 1;\n if (frontIndex == deque._end) Panic.panic(Panic.RESOURCE_ERROR);\n deque._data[frontIndex] = value;\n deque._begin = frontIndex;\n }\n }\n\n /**\n * @dev Removes the item at the beginning of the queue and returns it.\n *\n * Reverts with {Panic-EMPTY_ARRAY_POP} if the queue is empty.\n */\n function popFront(Bytes32Deque storage deque) internal returns (bytes32 value) {\n unchecked {\n uint128 frontIndex = deque._begin;\n if (frontIndex == deque._end) Panic.panic(Panic.EMPTY_ARRAY_POP);\n value = deque._data[frontIndex];\n delete deque._data[frontIndex];\n deque._begin = frontIndex + 1;\n }\n }\n\n /**\n * @dev Returns the item at the beginning of the queue.\n *\n * Reverts with {Panic-ARRAY_OUT_OF_BOUNDS} if the queue is empty.\n */\n function front(Bytes32Deque storage deque) internal view returns (bytes32 value) {\n if (empty(deque)) Panic.panic(Panic.ARRAY_OUT_OF_BOUNDS);\n return deque._data[deque._begin];\n }\n\n /**\n * @dev Returns the item at the end of the queue.\n *\n * Reverts with {Panic-ARRAY_OUT_OF_BOUNDS} if the queue is empty.\n */\n function back(Bytes32Deque storage deque) internal view returns (bytes32 value) {\n if (empty(deque)) Panic.panic(Panic.ARRAY_OUT_OF_BOUNDS);\n unchecked {\n return deque._data[deque._end - 1];\n }\n }\n\n /**\n * @dev Return the item at a position in the queue given by `index`, with the first item at 0 and last item at\n * `length(deque) - 1`.\n *\n * Reverts with {Panic-ARRAY_OUT_OF_BOUNDS} if the index is out of bounds.\n */\n function at(Bytes32Deque storage deque, uint256 index) internal view returns (bytes32 value) {\n if (index >= length(deque)) Panic.panic(Panic.ARRAY_OUT_OF_BOUNDS);\n // By construction, length is a uint128, so the check above ensures that index can be safely downcast to uint128\n unchecked {\n return deque._data[deque._begin + uint128(index)];\n }\n }\n\n /**\n * @dev Resets the queue back to being empty.\n *\n * NOTE: The current items are left behind in storage. This does not affect the functioning of the queue, but misses\n * out on potential gas refunds.\n */\n function clear(Bytes32Deque storage deque) internal {\n deque._begin = 0;\n deque._end = 0;\n }\n\n /**\n * @dev Returns the number of items in the queue.\n */\n function length(Bytes32Deque storage deque) internal view returns (uint256) {\n unchecked {\n return uint256(deque._end - deque._begin);\n }\n }\n\n /**\n * @dev Returns true if the queue is empty.\n */\n function empty(Bytes32Deque storage deque) internal view returns (bool) {\n return deque._end == deque._begin;\n }\n}\n"},"@openzeppelin/contracts/utils/types/Time.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/types/Time.sol)\n\npragma solidity ^0.8.20;\n\nimport {Math} from \"../math/Math.sol\";\nimport {SafeCast} from \"../math/SafeCast.sol\";\n\n/**\n * @dev This library provides helpers for manipulating time-related objects.\n *\n * It uses the following types:\n * - `uint48` for timepoints\n * - `uint32` for durations\n *\n * While the library doesn't provide specific types for timepoints and duration, it does provide:\n * - a `Delay` type to represent duration that can be programmed to change value automatically at a given point\n * - additional helper functions\n */\nlibrary Time {\n using Time for *;\n\n /**\n * @dev Get the block timestamp as a Timepoint.\n */\n function timestamp() internal view returns (uint48) {\n return SafeCast.toUint48(block.timestamp);\n }\n\n /**\n * @dev Get the block number as a Timepoint.\n */\n function blockNumber() internal view returns (uint48) {\n return SafeCast.toUint48(block.number);\n }\n\n // ==================================================== Delay =====================================================\n /**\n * @dev A `Delay` is a uint32 duration that can be programmed to change value automatically at a given point in the\n * future. The \"effect\" timepoint describes when the transitions happens from the \"old\" value to the \"new\" value.\n * This allows updating the delay applied to some operation while keeping some guarantees.\n *\n * In particular, the {update} function guarantees that if the delay is reduced, the old delay still applies for\n * some time. For example if the delay is currently 7 days to do an upgrade, the admin should not be able to set\n * the delay to 0 and upgrade immediately. If the admin wants to reduce the delay, the old delay (7 days) should\n * still apply for some time.\n *\n *\n * The `Delay` type is 112 bits long, and packs the following:\n *\n * ```\n * | [uint48]: effect date (timepoint)\n * | | [uint32]: value before (duration)\n * ↓ ↓ ↓ [uint32]: value after (duration)\n * 0xAAAAAAAAAAAABBBBBBBBCCCCCCCC\n * ```\n *\n * NOTE: The {get} and {withUpdate} functions operate using timestamps. Block number based delays are not currently\n * supported.\n */\n type Delay is uint112;\n\n /**\n * @dev Wrap a duration into a Delay to add the one-step \"update in the future\" feature\n */\n function toDelay(uint32 duration) internal pure returns (Delay) {\n return Delay.wrap(duration);\n }\n\n /**\n * @dev Get the value at a given timepoint plus the pending value and effect timepoint if there is a scheduled\n * change after this timepoint. If the effect timepoint is 0, then the pending value should not be considered.\n */\n function _getFullAt(\n Delay self,\n uint48 timepoint\n ) private pure returns (uint32 valueBefore, uint32 valueAfter, uint48 effect) {\n (valueBefore, valueAfter, effect) = self.unpack();\n return effect <= timepoint ? (valueAfter, 0, 0) : (valueBefore, valueAfter, effect);\n }\n\n /**\n * @dev Get the current value plus the pending value and effect timepoint if there is a scheduled change. If the\n * effect timepoint is 0, then the pending value should not be considered.\n */\n function getFull(Delay self) internal view returns (uint32 valueBefore, uint32 valueAfter, uint48 effect) {\n return _getFullAt(self, timestamp());\n }\n\n /**\n * @dev Get the current value.\n */\n function get(Delay self) internal view returns (uint32) {\n (uint32 delay, , ) = self.getFull();\n return delay;\n }\n\n /**\n * @dev Update a Delay object so that it takes a new duration after a timepoint that is automatically computed to\n * enforce the old delay at the moment of the update. Returns the updated Delay object and the timestamp when the\n * new delay becomes effective.\n */\n function withUpdate(\n Delay self,\n uint32 newValue,\n uint32 minSetback\n ) internal view returns (Delay updatedDelay, uint48 effect) {\n uint32 value = self.get();\n uint32 setback = uint32(Math.max(minSetback, value > newValue ? value - newValue : 0));\n effect = timestamp() + setback;\n return (pack(value, newValue, effect), effect);\n }\n\n /**\n * @dev Split a delay into its components: valueBefore, valueAfter and effect (transition timepoint).\n */\n function unpack(Delay self) internal pure returns (uint32 valueBefore, uint32 valueAfter, uint48 effect) {\n uint112 raw = Delay.unwrap(self);\n\n valueAfter = uint32(raw);\n valueBefore = uint32(raw >> 32);\n effect = uint48(raw >> 64);\n\n return (valueBefore, valueAfter, effect);\n }\n\n /**\n * @dev pack the components into a Delay object.\n */\n function pack(uint32 valueBefore, uint32 valueAfter, uint48 effect) internal pure returns (Delay) {\n return Delay.wrap((uint112(effect) << 64) | (uint112(valueBefore) << 32) | uint112(valueAfter));\n }\n}\n"},"contracts/GovernanceTimelock.sol":{"content":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.20;\n\nimport \"@openzeppelin/contracts/governance/TimelockController.sol\";\n\n/**\n * @title GovernanceTimelock\n * @dev Контракт таймлока для DAO, обеспечивающий задержку между одобрением и исполнением предложений\n */\ncontract GovernanceTimelock is TimelockController {\n /**\n * @dev Конструктор\n * @param minDelay Минимальная задержка в секундах перед выполнением транзакции\n * @param proposers Адреса, которые могут предлагать транзакции\n * @param executors Адреса, которые могут выполнять транзакции\n * @param admin Адрес администратора (обычно адрес нулевой для децентрализации)\n */\n constructor(\n uint256 minDelay,\n address[] memory proposers,\n address[] memory executors,\n address admin\n ) TimelockController(\n minDelay,\n proposers,\n executors,\n admin\n ) {}\n} "},"contracts/GovernanceToken.sol":{"content":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.20;\n\nimport \"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol\";\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\nimport \"@openzeppelin/contracts/utils/Nonces.sol\";\n\n/**\n * @title GovernanceToken\n * @dev Токен управления ERC20Votes с функциями голосования для DAO\n */\ncontract GovernanceToken is ERC20Permit, ERC20Votes, Ownable {\n constructor(\n string memory name,\n string memory symbol,\n address initialOwner\n ) ERC20(name, symbol) ERC20Permit(name) Ownable(initialOwner) {\n // Конструктор остается пустым, начальное распределение происходит через\n // вызов функции mintInitialSupply ниже\n }\n\n /**\n * @dev Минтит начальный запас токенов для распределения между партнерами\n * @param partners Массив адресов партнеров\n * @param amounts Массив сумм токенов для каждого партнера\n */\n function mintInitialSupply(\n address[] memory partners,\n uint256[] memory amounts\n ) external onlyOwner {\n require(partners.length == amounts.length, \"Arrays length mismatch\");\n require(partners.length > 0, \"Empty arrays\");\n\n uint256 totalSupply = 0;\n for (uint256 i = 0; i < partners.length; i++) {\n require(partners[i] != address(0), \"Zero address\");\n require(amounts[i] > 0, \"Zero amount\");\n \n totalSupply += amounts[i];\n _mint(partners[i], amounts[i]);\n }\n\n // После начального распределения отказываемся от права создавать новые токены\n renounceOwnership();\n }\n\n // Переопределения, необходимые для корректной работы токена голосования\n\n function _update(address from, address to, uint256 amount) internal override(ERC20, ERC20Votes) {\n super._update(from, to, amount);\n }\n\n function nonces(address owner) public view override(ERC20Permit, Nonces) returns (uint256) {\n return super.nonces(owner);\n }\n} "},"contracts/GovernorContract.sol":{"content":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.20;\n\nimport \"@openzeppelin/contracts/governance/Governor.sol\";\nimport \"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol\";\nimport \"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol\";\nimport \"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol\";\nimport \"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol\";\nimport \"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol\";\n\n/**\n * @title GovernorContract\n * @dev Контракт Governor для DAO с настраиваемыми параметрами\n */\ncontract GovernorContract is\n Governor,\n GovernorSettings,\n GovernorCountingSimple,\n GovernorVotes,\n GovernorVotesQuorumFraction,\n GovernorTimelockControl\n{\n constructor(\n string memory _name,\n IVotes _token,\n TimelockController _timelock,\n uint48 _votingDelay,\n uint32 _votingPeriod,\n uint256 _proposalThreshold,\n uint256 _quorumPercentage\n )\n Governor(_name)\n GovernorSettings(\n _votingDelay, /* Задержка голосования в блоках */\n _votingPeriod, /* Период голосования в блоках */\n _proposalThreshold /* Порог предложения в wei токенов */\n )\n GovernorVotes(_token)\n GovernorVotesQuorumFraction(_quorumPercentage)\n GovernorTimelockControl(_timelock)\n {}\n\n // Функции, которые необходимо переопределить из базовых контрактов\n\n function votingDelay()\n public\n view\n override(Governor, GovernorSettings)\n returns (uint256)\n {\n return super.votingDelay();\n }\n\n function votingPeriod()\n public\n view\n override(Governor, GovernorSettings)\n returns (uint256)\n {\n return super.votingPeriod();\n }\n\n function quorum(uint256 blockNumber)\n public\n view\n override(Governor, GovernorVotesQuorumFraction)\n returns (uint256)\n {\n return super.quorum(blockNumber);\n }\n\n function state(uint256 proposalId)\n public\n view\n override(Governor, GovernorTimelockControl)\n returns (ProposalState)\n {\n return super.state(proposalId);\n }\n\n function propose(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n string memory description\n ) public override(Governor) returns (uint256) {\n return super.propose(targets, values, calldatas, description);\n }\n\n function proposalThreshold()\n public\n view\n override(Governor, GovernorSettings)\n returns (uint256)\n {\n return super.proposalThreshold();\n }\n\n function _cancel(\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) internal override(Governor, GovernorTimelockControl) returns (uint256) {\n return super._cancel(targets, values, calldatas, descriptionHash);\n }\n\n function _executor()\n internal\n view\n override(Governor, GovernorTimelockControl)\n returns (address)\n {\n return super._executor();\n }\n\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId)\n public\n view\n override(Governor)\n returns (bool)\n {\n return super.supportsInterface(interfaceId);\n }\n\n /**\n * @dev Функция для определения, требуется ли постановка предложения в очередь\n */\n function proposalNeedsQueuing(uint256 proposalId) \n public \n view \n override(Governor, GovernorTimelockControl) \n returns (bool) \n {\n return super.proposalNeedsQueuing(proposalId);\n }\n\n /**\n * @dev Функция для постановки операций в очередь\n */\n function _queueOperations(\n uint256 proposalId,\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) internal override(Governor, GovernorTimelockControl) returns (uint48) {\n return super._queueOperations(proposalId, targets, values, calldatas, descriptionHash);\n }\n\n /**\n * @dev Функция для выполнения операций\n */\n function _executeOperations(\n uint256 proposalId,\n address[] memory targets,\n uint256[] memory values,\n bytes[] memory calldatas,\n bytes32 descriptionHash\n ) internal override(Governor, GovernorTimelockControl) {\n super._executeOperations(proposalId, targets, values, calldatas, descriptionHash);\n }\n} "}},"settings":{"optimizer":{"enabled":true,"runs":200},"viaIR":true,"evmVersion":"paris","outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata"],"":["ast"]}}}},"output":{"sources":{"@openzeppelin/contracts/access/AccessControl.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/AccessControl.sol","exportedSymbols":{"AccessControl":[295],"Context":[7128],"ERC165":[9806],"IAccessControl":[378]},"id":296,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"108:24:0"},{"absolutePath":"@openzeppelin/contracts/access/IAccessControl.sol","file":"./IAccessControl.sol","id":3,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":296,"sourceUnit":379,"src":"134:52:0","symbolAliases":[{"foreign":{"id":2,"name":"IAccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":378,"src":"142:14:0","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../utils/Context.sol","id":5,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":296,"sourceUnit":7129,"src":"187:45:0","symbolAliases":[{"foreign":{"id":4,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7128,"src":"195:7:0","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"../utils/introspection/ERC165.sol","id":7,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":296,"sourceUnit":9807,"src":"233:57:0","symbolAliases":[{"foreign":{"id":6,"name":"ERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9806,"src":"241:6:0","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":9,"name":"Context","nameLocations":["1988:7:0"],"nodeType":"IdentifierPath","referencedDeclaration":7128,"src":"1988:7:0"},"id":10,"nodeType":"InheritanceSpecifier","src":"1988:7:0"},{"baseName":{"id":11,"name":"IAccessControl","nameLocations":["1997:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":378,"src":"1997:14:0"},"id":12,"nodeType":"InheritanceSpecifier","src":"1997:14:0"},{"baseName":{"id":13,"name":"ERC165","nameLocations":["2013:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":9806,"src":"2013:6:0"},"id":14,"nodeType":"InheritanceSpecifier","src":"2013:6:0"}],"canonicalName":"AccessControl","contractDependencies":[],"contractKind":"contract","documentation":{"id":8,"nodeType":"StructuredDocumentation","src":"292:1660:0","text":" @dev Contract module that allows children to implement role-based access\n control mechanisms. This is a lightweight version that doesn't allow enumerating role\n members except through off-chain means by accessing the contract event logs. Some\n applications may benefit from on-chain enumerability, for those cases see\n {AccessControlEnumerable}.\n Roles are referred to by their `bytes32` identifier. These should be exposed\n in the external API and be unique. The best way to achieve this is by\n using `public constant` hash digests:\n ```solidity\n bytes32 public constant MY_ROLE = keccak256(\"MY_ROLE\");\n ```\n Roles can be used to represent a set of permissions. To restrict access to a\n function call, use {hasRole}:\n ```solidity\n function foo() public {\n require(hasRole(MY_ROLE, msg.sender));\n ...\n }\n ```\n Roles can be granted and revoked dynamically via the {grantRole} and\n {revokeRole} functions. Each role has an associated admin role, and only\n accounts that have a role's admin role can call {grantRole} and {revokeRole}.\n By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means\n that only accounts with this role will be able to grant or revoke other\n roles. More complex role relationships can be created by using\n {_setRoleAdmin}.\n WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to\n grant and revoke this role. Extra precautions should be taken to secure\n accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}\n to enforce additional security measures for this role."},"fullyImplemented":true,"id":295,"linearizedBaseContracts":[295,9806,9818,378,7128],"name":"AccessControl","nameLocation":"1971:13:0","nodeType":"ContractDefinition","nodes":[{"canonicalName":"AccessControl.RoleData","id":21,"members":[{"constant":false,"id":18,"mutability":"mutable","name":"hasRole","nameLocation":"2085:7:0","nodeType":"VariableDeclaration","scope":21,"src":"2052:40:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":17,"keyName":"account","keyNameLocation":"2068:7:0","keyType":{"id":15,"name":"address","nodeType":"ElementaryTypeName","src":"2060:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2052:32:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":16,"name":"bool","nodeType":"ElementaryTypeName","src":"2079:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"internal"},{"constant":false,"id":20,"mutability":"mutable","name":"adminRole","nameLocation":"2110:9:0","nodeType":"VariableDeclaration","scope":21,"src":"2102:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2102:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"name":"RoleData","nameLocation":"2033:8:0","nodeType":"StructDefinition","scope":295,"src":"2026:100:0","visibility":"public"},{"constant":false,"id":26,"mutability":"mutable","name":"_roles","nameLocation":"2174:6:0","nodeType":"VariableDeclaration","scope":295,"src":"2132:48:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$21_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData)"},"typeName":{"id":25,"keyName":"role","keyNameLocation":"2148:4:0","keyType":{"id":22,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2140:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"2132:33:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$21_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":24,"nodeType":"UserDefinedTypeName","pathNode":{"id":23,"name":"RoleData","nameLocations":["2156:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":21,"src":"2156:8:0"},"referencedDeclaration":21,"src":"2156:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$21_storage_ptr","typeString":"struct AccessControl.RoleData"}}},"visibility":"private"},{"constant":true,"functionSelector":"a217fddf","id":29,"mutability":"constant","name":"DEFAULT_ADMIN_ROLE","nameLocation":"2211:18:0","nodeType":"VariableDeclaration","scope":295,"src":"2187:49:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":27,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2187:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"30783030","id":28,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2232:4:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0x00"},"visibility":"public"},{"body":{"id":39,"nodeType":"Block","src":"2454:44:0","statements":[{"expression":{"arguments":[{"id":35,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32,"src":"2475:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":34,"name":"_checkRole","nodeType":"Identifier","overloadedDeclarations":[93,114],"referencedDeclaration":93,"src":"2464:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$__$","typeString":"function (bytes32) view"}},"id":36,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2464:16:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":37,"nodeType":"ExpressionStatement","src":"2464:16:0"},{"id":38,"nodeType":"PlaceholderStatement","src":"2490:1:0"}]},"documentation":{"id":30,"nodeType":"StructuredDocumentation","src":"2243:174:0","text":" @dev Modifier that checks that an account has a specific role. Reverts\n with an {AccessControlUnauthorizedAccount} error including the required role."},"id":40,"name":"onlyRole","nameLocation":"2431:8:0","nodeType":"ModifierDefinition","parameters":{"id":33,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32,"mutability":"mutable","name":"role","nameLocation":"2448:4:0","nodeType":"VariableDeclaration","scope":40,"src":"2440:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":31,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2440:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2439:14:0"},"src":"2422:76:0","virtual":false,"visibility":"internal"},{"baseFunctions":[9805],"body":{"id":61,"nodeType":"Block","src":"2656:111:0","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":59,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":54,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":49,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":43,"src":"2673:11:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":51,"name":"IAccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":378,"src":"2693:14:0","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessControl_$378_$","typeString":"type(contract IAccessControl)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IAccessControl_$378_$","typeString":"type(contract IAccessControl)"}],"id":50,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"2688:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":52,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2688:20:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IAccessControl_$378","typeString":"type(contract IAccessControl)"}},"id":53,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2709:11:0","memberName":"interfaceId","nodeType":"MemberAccess","src":"2688:32:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2673:47:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":57,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":43,"src":"2748:11:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":55,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"2724:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_AccessControl_$295_$","typeString":"type(contract super AccessControl)"}},"id":56,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2730:17:0","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":9805,"src":"2724:23:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":58,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2724:36:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2673:87:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":48,"id":60,"nodeType":"Return","src":"2666:94:0"}]},"documentation":{"id":41,"nodeType":"StructuredDocumentation","src":"2504:56:0","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":62,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"2574:17:0","nodeType":"FunctionDefinition","overrides":{"id":45,"nodeType":"OverrideSpecifier","overrides":[],"src":"2632:8:0"},"parameters":{"id":44,"nodeType":"ParameterList","parameters":[{"constant":false,"id":43,"mutability":"mutable","name":"interfaceId","nameLocation":"2599:11:0","nodeType":"VariableDeclaration","scope":62,"src":"2592:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":42,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2592:6:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2591:20:0"},"returnParameters":{"id":48,"nodeType":"ParameterList","parameters":[{"constant":false,"id":47,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":62,"src":"2650:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":46,"name":"bool","nodeType":"ElementaryTypeName","src":"2650:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2649:6:0"},"scope":295,"src":"2565:202:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[345],"body":{"id":79,"nodeType":"Block","src":"2937:53:0","statements":[{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":72,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26,"src":"2954:6:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$21_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":74,"indexExpression":{"id":73,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":65,"src":"2961:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2954:12:0","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$21_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":75,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2967:7:0","memberName":"hasRole","nodeType":"MemberAccess","referencedDeclaration":18,"src":"2954:20:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":77,"indexExpression":{"id":76,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":67,"src":"2975:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2954:29:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":71,"id":78,"nodeType":"Return","src":"2947:36:0"}]},"documentation":{"id":63,"nodeType":"StructuredDocumentation","src":"2773:76:0","text":" @dev Returns `true` if `account` has been granted `role`."},"functionSelector":"91d14854","id":80,"implemented":true,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"2863:7:0","nodeType":"FunctionDefinition","parameters":{"id":68,"nodeType":"ParameterList","parameters":[{"constant":false,"id":65,"mutability":"mutable","name":"role","nameLocation":"2879:4:0","nodeType":"VariableDeclaration","scope":80,"src":"2871:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":64,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2871:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":67,"mutability":"mutable","name":"account","nameLocation":"2893:7:0","nodeType":"VariableDeclaration","scope":80,"src":"2885:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":66,"name":"address","nodeType":"ElementaryTypeName","src":"2885:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2870:31:0"},"returnParameters":{"id":71,"nodeType":"ParameterList","parameters":[{"constant":false,"id":70,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":80,"src":"2931:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":69,"name":"bool","nodeType":"ElementaryTypeName","src":"2931:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2930:6:0"},"scope":295,"src":"2854:136:0","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":92,"nodeType":"Block","src":"3255:47:0","statements":[{"expression":{"arguments":[{"id":87,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":83,"src":"3276:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":88,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"3282:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":89,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3282:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":86,"name":"_checkRole","nodeType":"Identifier","overloadedDeclarations":[93,114],"referencedDeclaration":114,"src":"3265:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$__$","typeString":"function (bytes32,address) view"}},"id":90,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3265:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":91,"nodeType":"ExpressionStatement","src":"3265:30:0"}]},"documentation":{"id":81,"nodeType":"StructuredDocumentation","src":"2996:198:0","text":" @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`\n is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier."},"id":93,"implemented":true,"kind":"function","modifiers":[],"name":"_checkRole","nameLocation":"3208:10:0","nodeType":"FunctionDefinition","parameters":{"id":84,"nodeType":"ParameterList","parameters":[{"constant":false,"id":83,"mutability":"mutable","name":"role","nameLocation":"3227:4:0","nodeType":"VariableDeclaration","scope":93,"src":"3219:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":82,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3219:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3218:14:0"},"returnParameters":{"id":85,"nodeType":"ParameterList","parameters":[],"src":"3255:0:0"},"scope":295,"src":"3199:103:0","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":113,"nodeType":"Block","src":"3505:124:0","statements":[{"condition":{"id":105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3519:23:0","subExpression":{"arguments":[{"id":102,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":96,"src":"3528:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":103,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":98,"src":"3534:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":101,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":80,"src":"3520:7:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3520:22:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":112,"nodeType":"IfStatement","src":"3515:108:0","trueBody":{"id":111,"nodeType":"Block","src":"3544:79:0","statements":[{"errorCall":{"arguments":[{"id":107,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":98,"src":"3598:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":108,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":96,"src":"3607:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":106,"name":"AccessControlUnauthorizedAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":305,"src":"3565:32:0","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_bytes32_$returns$__$","typeString":"function (address,bytes32) pure"}},"id":109,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3565:47:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":110,"nodeType":"RevertStatement","src":"3558:54:0"}]}}]},"documentation":{"id":94,"nodeType":"StructuredDocumentation","src":"3308:119:0","text":" @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`\n is missing `role`."},"id":114,"implemented":true,"kind":"function","modifiers":[],"name":"_checkRole","nameLocation":"3441:10:0","nodeType":"FunctionDefinition","parameters":{"id":99,"nodeType":"ParameterList","parameters":[{"constant":false,"id":96,"mutability":"mutable","name":"role","nameLocation":"3460:4:0","nodeType":"VariableDeclaration","scope":114,"src":"3452:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":95,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3452:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":98,"mutability":"mutable","name":"account","nameLocation":"3474:7:0","nodeType":"VariableDeclaration","scope":114,"src":"3466:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":97,"name":"address","nodeType":"ElementaryTypeName","src":"3466:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3451:31:0"},"returnParameters":{"id":100,"nodeType":"ParameterList","parameters":[],"src":"3505:0:0"},"scope":295,"src":"3432:197:0","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[353],"body":{"id":127,"nodeType":"Block","src":"3884:46:0","statements":[{"expression":{"expression":{"baseExpression":{"id":122,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26,"src":"3901:6:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$21_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":124,"indexExpression":{"id":123,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":117,"src":"3908:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3901:12:0","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$21_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":125,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3914:9:0","memberName":"adminRole","nodeType":"MemberAccess","referencedDeclaration":20,"src":"3901:22:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":121,"id":126,"nodeType":"Return","src":"3894:29:0"}]},"documentation":{"id":115,"nodeType":"StructuredDocumentation","src":"3635:170:0","text":" @dev Returns the admin role that controls `role`. See {grantRole} and\n {revokeRole}.\n To change a role's admin, use {_setRoleAdmin}."},"functionSelector":"248a9ca3","id":128,"implemented":true,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"3819:12:0","nodeType":"FunctionDefinition","parameters":{"id":118,"nodeType":"ParameterList","parameters":[{"constant":false,"id":117,"mutability":"mutable","name":"role","nameLocation":"3840:4:0","nodeType":"VariableDeclaration","scope":128,"src":"3832:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":116,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3832:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3831:14:0"},"returnParameters":{"id":121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":120,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":128,"src":"3875:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":119,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3875:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3874:9:0"},"scope":295,"src":"3810:120:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[361],"body":{"id":146,"nodeType":"Block","src":"4320:42:0","statements":[{"expression":{"arguments":[{"id":142,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":131,"src":"4341:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":143,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":133,"src":"4347:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":141,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"4330:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":144,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4330:25:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":145,"nodeType":"ExpressionStatement","src":"4330:25:0"}]},"documentation":{"id":129,"nodeType":"StructuredDocumentation","src":"3936:285:0","text":" @dev Grants `role` to `account`.\n If `account` had not been already granted `role`, emits a {RoleGranted}\n event.\n Requirements:\n - the caller must have ``role``'s admin role.\n May emit a {RoleGranted} event."},"functionSelector":"2f2ff15d","id":147,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"arguments":[{"id":137,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":131,"src":"4313:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":136,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":128,"src":"4300:12:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":138,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4300:18:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":139,"kind":"modifierInvocation","modifierName":{"id":135,"name":"onlyRole","nameLocations":["4291:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":40,"src":"4291:8:0"},"nodeType":"ModifierInvocation","src":"4291:28:0"}],"name":"grantRole","nameLocation":"4235:9:0","nodeType":"FunctionDefinition","parameters":{"id":134,"nodeType":"ParameterList","parameters":[{"constant":false,"id":131,"mutability":"mutable","name":"role","nameLocation":"4253:4:0","nodeType":"VariableDeclaration","scope":147,"src":"4245:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":130,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4245:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":133,"mutability":"mutable","name":"account","nameLocation":"4267:7:0","nodeType":"VariableDeclaration","scope":147,"src":"4259:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":132,"name":"address","nodeType":"ElementaryTypeName","src":"4259:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4244:31:0"},"returnParameters":{"id":140,"nodeType":"ParameterList","parameters":[],"src":"4320:0:0"},"scope":295,"src":"4226:136:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[369],"body":{"id":165,"nodeType":"Block","src":"4737:43:0","statements":[{"expression":{"arguments":[{"id":161,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":150,"src":"4759:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":162,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":152,"src":"4765:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":160,"name":"_revokeRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"4747:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":163,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4747:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":164,"nodeType":"ExpressionStatement","src":"4747:26:0"}]},"documentation":{"id":148,"nodeType":"StructuredDocumentation","src":"4368:269:0","text":" @dev Revokes `role` from `account`.\n If `account` had been granted `role`, emits a {RoleRevoked} event.\n Requirements:\n - the caller must have ``role``'s admin role.\n May emit a {RoleRevoked} event."},"functionSelector":"d547741f","id":166,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"arguments":[{"id":156,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":150,"src":"4730:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":155,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":128,"src":"4717:12:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":157,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4717:18:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":158,"kind":"modifierInvocation","modifierName":{"id":154,"name":"onlyRole","nameLocations":["4708:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":40,"src":"4708:8:0"},"nodeType":"ModifierInvocation","src":"4708:28:0"}],"name":"revokeRole","nameLocation":"4651:10:0","nodeType":"FunctionDefinition","parameters":{"id":153,"nodeType":"ParameterList","parameters":[{"constant":false,"id":150,"mutability":"mutable","name":"role","nameLocation":"4670:4:0","nodeType":"VariableDeclaration","scope":166,"src":"4662:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":149,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4662:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":152,"mutability":"mutable","name":"account","nameLocation":"4684:7:0","nodeType":"VariableDeclaration","scope":166,"src":"4676:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":151,"name":"address","nodeType":"ElementaryTypeName","src":"4676:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4661:31:0"},"returnParameters":{"id":159,"nodeType":"ParameterList","parameters":[],"src":"4737:0:0"},"scope":295,"src":"4642:138:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[377],"body":{"id":188,"nodeType":"Block","src":"5407:166:0","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":177,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":174,"name":"callerConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":171,"src":"5421:18:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":175,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"5443:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":176,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5443:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5421:34:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":182,"nodeType":"IfStatement","src":"5417:102:0","trueBody":{"id":181,"nodeType":"Block","src":"5457:62:0","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":178,"name":"AccessControlBadConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":308,"src":"5478:28:0","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":179,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5478:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":180,"nodeType":"RevertStatement","src":"5471:37:0"}]}},{"expression":{"arguments":[{"id":184,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":169,"src":"5541:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":185,"name":"callerConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":171,"src":"5547:18:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":183,"name":"_revokeRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5529:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":186,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5529:37:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":187,"nodeType":"ExpressionStatement","src":"5529:37:0"}]},"documentation":{"id":167,"nodeType":"StructuredDocumentation","src":"4786:537:0","text":" @dev Revokes `role` from the calling account.\n Roles are often managed via {grantRole} and {revokeRole}: this function's\n purpose is to provide a mechanism for accounts to lose their privileges\n if they are compromised (such as when a trusted device is misplaced).\n If the calling account had been revoked `role`, emits a {RoleRevoked}\n event.\n Requirements:\n - the caller must be `callerConfirmation`.\n May emit a {RoleRevoked} event."},"functionSelector":"36568abe","id":189,"implemented":true,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"5337:12:0","nodeType":"FunctionDefinition","parameters":{"id":172,"nodeType":"ParameterList","parameters":[{"constant":false,"id":169,"mutability":"mutable","name":"role","nameLocation":"5358:4:0","nodeType":"VariableDeclaration","scope":189,"src":"5350:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":168,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5350:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":171,"mutability":"mutable","name":"callerConfirmation","nameLocation":"5372:18:0","nodeType":"VariableDeclaration","scope":189,"src":"5364:26:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":170,"name":"address","nodeType":"ElementaryTypeName","src":"5364:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5349:42:0"},"returnParameters":{"id":173,"nodeType":"ParameterList","parameters":[],"src":"5407:0:0"},"scope":295,"src":"5328:245:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":216,"nodeType":"Block","src":"5771:174:0","statements":[{"assignments":[198],"declarations":[{"constant":false,"id":198,"mutability":"mutable","name":"previousAdminRole","nameLocation":"5789:17:0","nodeType":"VariableDeclaration","scope":216,"src":"5781:25:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":197,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5781:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":202,"initialValue":{"arguments":[{"id":200,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":192,"src":"5822:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":199,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":128,"src":"5809:12:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":201,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5809:18:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"5781:46:0"},{"expression":{"id":208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":203,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26,"src":"5837:6:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$21_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":205,"indexExpression":{"id":204,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":192,"src":"5844:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5837:12:0","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$21_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":206,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5850:9:0","memberName":"adminRole","nodeType":"MemberAccess","referencedDeclaration":20,"src":"5837:22:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":207,"name":"adminRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":194,"src":"5862:9:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"5837:34:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":209,"nodeType":"ExpressionStatement","src":"5837:34:0"},{"eventCall":{"arguments":[{"id":211,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":192,"src":"5903:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":212,"name":"previousAdminRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":198,"src":"5909:17:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":213,"name":"adminRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":194,"src":"5928:9:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":210,"name":"RoleAdminChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":317,"src":"5886:16:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32,bytes32)"}},"id":214,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5886:52:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":215,"nodeType":"EmitStatement","src":"5881:57:0"}]},"documentation":{"id":190,"nodeType":"StructuredDocumentation","src":"5579:114:0","text":" @dev Sets `adminRole` as ``role``'s admin role.\n Emits a {RoleAdminChanged} event."},"id":217,"implemented":true,"kind":"function","modifiers":[],"name":"_setRoleAdmin","nameLocation":"5707:13:0","nodeType":"FunctionDefinition","parameters":{"id":195,"nodeType":"ParameterList","parameters":[{"constant":false,"id":192,"mutability":"mutable","name":"role","nameLocation":"5729:4:0","nodeType":"VariableDeclaration","scope":217,"src":"5721:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":191,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5721:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":194,"mutability":"mutable","name":"adminRole","nameLocation":"5743:9:0","nodeType":"VariableDeclaration","scope":217,"src":"5735:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":193,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5735:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5720:33:0"},"returnParameters":{"id":196,"nodeType":"ParameterList","parameters":[],"src":"5771:0:0"},"scope":295,"src":"5698:247:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":255,"nodeType":"Block","src":"6262:233:0","statements":[{"condition":{"id":231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6276:23:0","subExpression":{"arguments":[{"id":228,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":220,"src":"6285:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":229,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":222,"src":"6291:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":227,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":80,"src":"6277:7:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6277:22:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":253,"nodeType":"Block","src":"6452:37:0","statements":[{"expression":{"hexValue":"66616c7365","id":251,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6473:5:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":226,"id":252,"nodeType":"Return","src":"6466:12:0"}]},"id":254,"nodeType":"IfStatement","src":"6272:217:0","trueBody":{"id":250,"nodeType":"Block","src":"6301:145:0","statements":[{"expression":{"id":239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"baseExpression":{"id":232,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26,"src":"6315:6:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$21_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":234,"indexExpression":{"id":233,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":220,"src":"6322:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6315:12:0","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$21_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":235,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6328:7:0","memberName":"hasRole","nodeType":"MemberAccess","referencedDeclaration":18,"src":"6315:20:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":237,"indexExpression":{"id":236,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":222,"src":"6336:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6315:29:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6347:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6315:36:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":240,"nodeType":"ExpressionStatement","src":"6315:36:0"},{"eventCall":{"arguments":[{"id":242,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":220,"src":"6382:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":243,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":222,"src":"6388:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":244,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"6397:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":245,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6397:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":241,"name":"RoleGranted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":326,"src":"6370:11:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_address_$returns$__$","typeString":"function (bytes32,address,address)"}},"id":246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6370:40:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":247,"nodeType":"EmitStatement","src":"6365:45:0"},{"expression":{"hexValue":"74727565","id":248,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6431:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":226,"id":249,"nodeType":"Return","src":"6424:11:0"}]}}]},"documentation":{"id":218,"nodeType":"StructuredDocumentation","src":"5951:223:0","text":" @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.\n Internal function without access restriction.\n May emit a {RoleGranted} event."},"id":256,"implemented":true,"kind":"function","modifiers":[],"name":"_grantRole","nameLocation":"6188:10:0","nodeType":"FunctionDefinition","parameters":{"id":223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":220,"mutability":"mutable","name":"role","nameLocation":"6207:4:0","nodeType":"VariableDeclaration","scope":256,"src":"6199:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":219,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6199:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":222,"mutability":"mutable","name":"account","nameLocation":"6221:7:0","nodeType":"VariableDeclaration","scope":256,"src":"6213:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":221,"name":"address","nodeType":"ElementaryTypeName","src":"6213:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6198:31:0"},"returnParameters":{"id":226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":225,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":256,"src":"6256:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":224,"name":"bool","nodeType":"ElementaryTypeName","src":"6256:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6255:6:0"},"scope":295,"src":"6179:316:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":293,"nodeType":"Block","src":"6816:233:0","statements":[{"condition":{"arguments":[{"id":267,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":259,"src":"6838:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":268,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":261,"src":"6844:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":266,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":80,"src":"6830:7:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":269,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6830:22:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":291,"nodeType":"Block","src":"7006:37:0","statements":[{"expression":{"hexValue":"66616c7365","id":289,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7027:5:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":265,"id":290,"nodeType":"Return","src":"7020:12:0"}]},"id":292,"nodeType":"IfStatement","src":"6826:217:0","trueBody":{"id":288,"nodeType":"Block","src":"6854:146:0","statements":[{"expression":{"id":277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"baseExpression":{"id":270,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26,"src":"6868:6:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$21_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":272,"indexExpression":{"id":271,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":259,"src":"6875:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6868:12:0","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$21_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":273,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6881:7:0","memberName":"hasRole","nodeType":"MemberAccess","referencedDeclaration":18,"src":"6868:20:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":275,"indexExpression":{"id":274,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":261,"src":"6889:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6868:29:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6900:5:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"6868:37:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":278,"nodeType":"ExpressionStatement","src":"6868:37:0"},{"eventCall":{"arguments":[{"id":280,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":259,"src":"6936:4:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":281,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":261,"src":"6942:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":282,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"6951:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6951:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":279,"name":"RoleRevoked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":335,"src":"6924:11:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_address_$returns$__$","typeString":"function (bytes32,address,address)"}},"id":284,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6924:40:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":285,"nodeType":"EmitStatement","src":"6919:45:0"},{"expression":{"hexValue":"74727565","id":286,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6985:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":265,"id":287,"nodeType":"Return","src":"6978:11:0"}]}}]},"documentation":{"id":257,"nodeType":"StructuredDocumentation","src":"6501:226:0","text":" @dev Attempts to revoke `role` from `account` and returns a boolean indicating if `role` was revoked.\n Internal function without access restriction.\n May emit a {RoleRevoked} event."},"id":294,"implemented":true,"kind":"function","modifiers":[],"name":"_revokeRole","nameLocation":"6741:11:0","nodeType":"FunctionDefinition","parameters":{"id":262,"nodeType":"ParameterList","parameters":[{"constant":false,"id":259,"mutability":"mutable","name":"role","nameLocation":"6761:4:0","nodeType":"VariableDeclaration","scope":294,"src":"6753:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":258,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6753:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":261,"mutability":"mutable","name":"account","nameLocation":"6775:7:0","nodeType":"VariableDeclaration","scope":294,"src":"6767:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":260,"name":"address","nodeType":"ElementaryTypeName","src":"6767:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6752:31:0"},"returnParameters":{"id":265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":264,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":294,"src":"6810:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":263,"name":"bool","nodeType":"ElementaryTypeName","src":"6810:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6809:6:0"},"scope":295,"src":"6732:317:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":296,"src":"1953:5098:0","usedErrors":[305,308],"usedEvents":[317,326,335]}],"src":"108:6944:0"},"id":0},"@openzeppelin/contracts/access/IAccessControl.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/IAccessControl.sol","exportedSymbols":{"IAccessControl":[378]},"id":379,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":297,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:1"},{"abstract":false,"baseContracts":[],"canonicalName":"IAccessControl","contractDependencies":[],"contractKind":"interface","documentation":{"id":298,"nodeType":"StructuredDocumentation","src":"135:90:1","text":" @dev External interface of AccessControl declared to support ERC-165 detection."},"fullyImplemented":false,"id":378,"linearizedBaseContracts":[378],"name":"IAccessControl","nameLocation":"236:14:1","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":299,"nodeType":"StructuredDocumentation","src":"257:56:1","text":" @dev The `account` is missing a role."},"errorSelector":"e2517d3f","id":305,"name":"AccessControlUnauthorizedAccount","nameLocation":"324:32:1","nodeType":"ErrorDefinition","parameters":{"id":304,"nodeType":"ParameterList","parameters":[{"constant":false,"id":301,"mutability":"mutable","name":"account","nameLocation":"365:7:1","nodeType":"VariableDeclaration","scope":305,"src":"357:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":300,"name":"address","nodeType":"ElementaryTypeName","src":"357:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":303,"mutability":"mutable","name":"neededRole","nameLocation":"382:10:1","nodeType":"VariableDeclaration","scope":305,"src":"374:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":302,"name":"bytes32","nodeType":"ElementaryTypeName","src":"374:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"356:37:1"},"src":"318:76:1"},{"documentation":{"id":306,"nodeType":"StructuredDocumentation","src":"400:148:1","text":" @dev The caller of a function is not the expected one.\n NOTE: Don't confuse with {AccessControlUnauthorizedAccount}."},"errorSelector":"6697b232","id":308,"name":"AccessControlBadConfirmation","nameLocation":"559:28:1","nodeType":"ErrorDefinition","parameters":{"id":307,"nodeType":"ParameterList","parameters":[],"src":"587:2:1"},"src":"553:37:1"},{"anonymous":false,"documentation":{"id":309,"nodeType":"StructuredDocumentation","src":"596:254:1","text":" @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`\n `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite\n {RoleAdminChanged} not being emitted to signal this."},"eventSelector":"bd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff","id":317,"name":"RoleAdminChanged","nameLocation":"861:16:1","nodeType":"EventDefinition","parameters":{"id":316,"nodeType":"ParameterList","parameters":[{"constant":false,"id":311,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"894:4:1","nodeType":"VariableDeclaration","scope":317,"src":"878:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":310,"name":"bytes32","nodeType":"ElementaryTypeName","src":"878:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":313,"indexed":true,"mutability":"mutable","name":"previousAdminRole","nameLocation":"916:17:1","nodeType":"VariableDeclaration","scope":317,"src":"900:33:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":312,"name":"bytes32","nodeType":"ElementaryTypeName","src":"900:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":315,"indexed":true,"mutability":"mutable","name":"newAdminRole","nameLocation":"951:12:1","nodeType":"VariableDeclaration","scope":317,"src":"935:28:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":314,"name":"bytes32","nodeType":"ElementaryTypeName","src":"935:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"877:87:1"},"src":"855:110:1"},{"anonymous":false,"documentation":{"id":318,"nodeType":"StructuredDocumentation","src":"971:295:1","text":" @dev Emitted when `account` is granted `role`.\n `sender` is the account that originated the contract call. This account bears the admin role (for the granted role).\n Expected in cases where the role was granted using the internal {AccessControl-_grantRole}."},"eventSelector":"2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d","id":326,"name":"RoleGranted","nameLocation":"1277:11:1","nodeType":"EventDefinition","parameters":{"id":325,"nodeType":"ParameterList","parameters":[{"constant":false,"id":320,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"1305:4:1","nodeType":"VariableDeclaration","scope":326,"src":"1289:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":319,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1289:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":322,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1327:7:1","nodeType":"VariableDeclaration","scope":326,"src":"1311:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":321,"name":"address","nodeType":"ElementaryTypeName","src":"1311:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":324,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1352:6:1","nodeType":"VariableDeclaration","scope":326,"src":"1336:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":323,"name":"address","nodeType":"ElementaryTypeName","src":"1336:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1288:71:1"},"src":"1271:89:1"},{"anonymous":false,"documentation":{"id":327,"nodeType":"StructuredDocumentation","src":"1366:275:1","text":" @dev Emitted when `account` is revoked `role`.\n `sender` is the account that originated the contract call:\n - if using `revokeRole`, it is the admin role bearer\n - if using `renounceRole`, it is the role bearer (i.e. `account`)"},"eventSelector":"f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b","id":335,"name":"RoleRevoked","nameLocation":"1652:11:1","nodeType":"EventDefinition","parameters":{"id":334,"nodeType":"ParameterList","parameters":[{"constant":false,"id":329,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"1680:4:1","nodeType":"VariableDeclaration","scope":335,"src":"1664:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":328,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1664:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":331,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1702:7:1","nodeType":"VariableDeclaration","scope":335,"src":"1686:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":330,"name":"address","nodeType":"ElementaryTypeName","src":"1686:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":333,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1727:6:1","nodeType":"VariableDeclaration","scope":335,"src":"1711:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":332,"name":"address","nodeType":"ElementaryTypeName","src":"1711:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1663:71:1"},"src":"1646:89:1"},{"documentation":{"id":336,"nodeType":"StructuredDocumentation","src":"1741:76:1","text":" @dev Returns `true` if `account` has been granted `role`."},"functionSelector":"91d14854","id":345,"implemented":false,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"1831:7:1","nodeType":"FunctionDefinition","parameters":{"id":341,"nodeType":"ParameterList","parameters":[{"constant":false,"id":338,"mutability":"mutable","name":"role","nameLocation":"1847:4:1","nodeType":"VariableDeclaration","scope":345,"src":"1839:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":337,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1839:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":340,"mutability":"mutable","name":"account","nameLocation":"1861:7:1","nodeType":"VariableDeclaration","scope":345,"src":"1853:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":339,"name":"address","nodeType":"ElementaryTypeName","src":"1853:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1838:31:1"},"returnParameters":{"id":344,"nodeType":"ParameterList","parameters":[{"constant":false,"id":343,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":345,"src":"1893:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":342,"name":"bool","nodeType":"ElementaryTypeName","src":"1893:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1892:6:1"},"scope":378,"src":"1822:77:1","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":346,"nodeType":"StructuredDocumentation","src":"1905:184:1","text":" @dev Returns the admin role that controls `role`. See {grantRole} and\n {revokeRole}.\n To change a role's admin, use {AccessControl-_setRoleAdmin}."},"functionSelector":"248a9ca3","id":353,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"2103:12:1","nodeType":"FunctionDefinition","parameters":{"id":349,"nodeType":"ParameterList","parameters":[{"constant":false,"id":348,"mutability":"mutable","name":"role","nameLocation":"2124:4:1","nodeType":"VariableDeclaration","scope":353,"src":"2116:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":347,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2116:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2115:14:1"},"returnParameters":{"id":352,"nodeType":"ParameterList","parameters":[{"constant":false,"id":351,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":353,"src":"2153:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":350,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2153:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2152:9:1"},"scope":378,"src":"2094:68:1","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":354,"nodeType":"StructuredDocumentation","src":"2168:239:1","text":" @dev Grants `role` to `account`.\n If `account` had not been already granted `role`, emits a {RoleGranted}\n event.\n Requirements:\n - the caller must have ``role``'s admin role."},"functionSelector":"2f2ff15d","id":361,"implemented":false,"kind":"function","modifiers":[],"name":"grantRole","nameLocation":"2421:9:1","nodeType":"FunctionDefinition","parameters":{"id":359,"nodeType":"ParameterList","parameters":[{"constant":false,"id":356,"mutability":"mutable","name":"role","nameLocation":"2439:4:1","nodeType":"VariableDeclaration","scope":361,"src":"2431:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":355,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2431:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":358,"mutability":"mutable","name":"account","nameLocation":"2453:7:1","nodeType":"VariableDeclaration","scope":361,"src":"2445:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":357,"name":"address","nodeType":"ElementaryTypeName","src":"2445:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2430:31:1"},"returnParameters":{"id":360,"nodeType":"ParameterList","parameters":[],"src":"2470:0:1"},"scope":378,"src":"2412:59:1","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":362,"nodeType":"StructuredDocumentation","src":"2477:223:1","text":" @dev Revokes `role` from `account`.\n If `account` had been granted `role`, emits a {RoleRevoked} event.\n Requirements:\n - the caller must have ``role``'s admin role."},"functionSelector":"d547741f","id":369,"implemented":false,"kind":"function","modifiers":[],"name":"revokeRole","nameLocation":"2714:10:1","nodeType":"FunctionDefinition","parameters":{"id":367,"nodeType":"ParameterList","parameters":[{"constant":false,"id":364,"mutability":"mutable","name":"role","nameLocation":"2733:4:1","nodeType":"VariableDeclaration","scope":369,"src":"2725:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":363,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2725:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":366,"mutability":"mutable","name":"account","nameLocation":"2747:7:1","nodeType":"VariableDeclaration","scope":369,"src":"2739:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":365,"name":"address","nodeType":"ElementaryTypeName","src":"2739:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2724:31:1"},"returnParameters":{"id":368,"nodeType":"ParameterList","parameters":[],"src":"2764:0:1"},"scope":378,"src":"2705:60:1","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":370,"nodeType":"StructuredDocumentation","src":"2771:491:1","text":" @dev Revokes `role` from the calling account.\n Roles are often managed via {grantRole} and {revokeRole}: this function's\n purpose is to provide a mechanism for accounts to lose their privileges\n if they are compromised (such as when a trusted device is misplaced).\n If the calling account had been granted `role`, emits a {RoleRevoked}\n event.\n Requirements:\n - the caller must be `callerConfirmation`."},"functionSelector":"36568abe","id":377,"implemented":false,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"3276:12:1","nodeType":"FunctionDefinition","parameters":{"id":375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":372,"mutability":"mutable","name":"role","nameLocation":"3297:4:1","nodeType":"VariableDeclaration","scope":377,"src":"3289:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":371,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3289:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":374,"mutability":"mutable","name":"callerConfirmation","nameLocation":"3311:18:1","nodeType":"VariableDeclaration","scope":377,"src":"3303:26:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":373,"name":"address","nodeType":"ElementaryTypeName","src":"3303:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3288:42:1"},"returnParameters":{"id":376,"nodeType":"ParameterList","parameters":[],"src":"3339:0:1"},"scope":378,"src":"3267:73:1","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":379,"src":"226:3116:1","usedErrors":[305,308],"usedEvents":[317,326,335]}],"src":"109:3234:1"},"id":1},"@openzeppelin/contracts/access/Ownable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/Ownable.sol","exportedSymbols":{"Context":[7128],"Ownable":[526]},"id":527,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":380,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"102:24:2"},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../utils/Context.sol","id":382,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":527,"sourceUnit":7129,"src":"128:45:2","symbolAliases":[{"foreign":{"id":381,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7128,"src":"136:7:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":384,"name":"Context","nameLocations":["692:7:2"],"nodeType":"IdentifierPath","referencedDeclaration":7128,"src":"692:7:2"},"id":385,"nodeType":"InheritanceSpecifier","src":"692:7:2"}],"canonicalName":"Ownable","contractDependencies":[],"contractKind":"contract","documentation":{"id":383,"nodeType":"StructuredDocumentation","src":"175:487:2","text":" @dev Contract module which provides a basic access control mechanism, where\n there is an account (an owner) that can be granted exclusive access to\n specific functions.\n The initial owner is set to the address provided by the deployer. This can\n later be changed with {transferOwnership}.\n This module is used through inheritance. It will make available the modifier\n `onlyOwner`, which can be applied to your functions to restrict their use to\n the owner."},"fullyImplemented":true,"id":526,"linearizedBaseContracts":[526,7128],"name":"Ownable","nameLocation":"681:7:2","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":387,"mutability":"mutable","name":"_owner","nameLocation":"722:6:2","nodeType":"VariableDeclaration","scope":526,"src":"706:22:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":386,"name":"address","nodeType":"ElementaryTypeName","src":"706:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"documentation":{"id":388,"nodeType":"StructuredDocumentation","src":"735:85:2","text":" @dev The caller account is not authorized to perform an operation."},"errorSelector":"118cdaa7","id":392,"name":"OwnableUnauthorizedAccount","nameLocation":"831:26:2","nodeType":"ErrorDefinition","parameters":{"id":391,"nodeType":"ParameterList","parameters":[{"constant":false,"id":390,"mutability":"mutable","name":"account","nameLocation":"866:7:2","nodeType":"VariableDeclaration","scope":392,"src":"858:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":389,"name":"address","nodeType":"ElementaryTypeName","src":"858:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"857:17:2"},"src":"825:50:2"},{"documentation":{"id":393,"nodeType":"StructuredDocumentation","src":"881:82:2","text":" @dev The owner is not a valid owner account. (eg. `address(0)`)"},"errorSelector":"1e4fbdf7","id":397,"name":"OwnableInvalidOwner","nameLocation":"974:19:2","nodeType":"ErrorDefinition","parameters":{"id":396,"nodeType":"ParameterList","parameters":[{"constant":false,"id":395,"mutability":"mutable","name":"owner","nameLocation":"1002:5:2","nodeType":"VariableDeclaration","scope":397,"src":"994:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":394,"name":"address","nodeType":"ElementaryTypeName","src":"994:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"993:15:2"},"src":"968:41:2"},{"anonymous":false,"eventSelector":"8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0","id":403,"name":"OwnershipTransferred","nameLocation":"1021:20:2","nodeType":"EventDefinition","parameters":{"id":402,"nodeType":"ParameterList","parameters":[{"constant":false,"id":399,"indexed":true,"mutability":"mutable","name":"previousOwner","nameLocation":"1058:13:2","nodeType":"VariableDeclaration","scope":403,"src":"1042:29:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":398,"name":"address","nodeType":"ElementaryTypeName","src":"1042:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":401,"indexed":true,"mutability":"mutable","name":"newOwner","nameLocation":"1089:8:2","nodeType":"VariableDeclaration","scope":403,"src":"1073:24:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":400,"name":"address","nodeType":"ElementaryTypeName","src":"1073:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1041:57:2"},"src":"1015:84:2"},{"body":{"id":428,"nodeType":"Block","src":"1259:153:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":414,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":409,"name":"initialOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":406,"src":"1273:12:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":412,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1297:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":411,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1289:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":410,"name":"address","nodeType":"ElementaryTypeName","src":"1289:7:2","typeDescriptions":{}}},"id":413,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1289:10:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1273:26:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":423,"nodeType":"IfStatement","src":"1269:95:2","trueBody":{"id":422,"nodeType":"Block","src":"1301:63:2","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":418,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1350:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":417,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1342:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":416,"name":"address","nodeType":"ElementaryTypeName","src":"1342:7:2","typeDescriptions":{}}},"id":419,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1342:10:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":415,"name":"OwnableInvalidOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":397,"src":"1322:19:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":420,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1322:31:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":421,"nodeType":"RevertStatement","src":"1315:38:2"}]}},{"expression":{"arguments":[{"id":425,"name":"initialOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":406,"src":"1392:12:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":424,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":525,"src":"1373:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":426,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1373:32:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":427,"nodeType":"ExpressionStatement","src":"1373:32:2"}]},"documentation":{"id":404,"nodeType":"StructuredDocumentation","src":"1105:115:2","text":" @dev Initializes the contract setting the address provided by the deployer as the initial owner."},"id":429,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":407,"nodeType":"ParameterList","parameters":[{"constant":false,"id":406,"mutability":"mutable","name":"initialOwner","nameLocation":"1245:12:2","nodeType":"VariableDeclaration","scope":429,"src":"1237:20:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":405,"name":"address","nodeType":"ElementaryTypeName","src":"1237:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1236:22:2"},"returnParameters":{"id":408,"nodeType":"ParameterList","parameters":[],"src":"1259:0:2"},"scope":526,"src":"1225:187:2","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":436,"nodeType":"Block","src":"1521:41:2","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":432,"name":"_checkOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":463,"src":"1531:11:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1531:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":434,"nodeType":"ExpressionStatement","src":"1531:13:2"},{"id":435,"nodeType":"PlaceholderStatement","src":"1554:1:2"}]},"documentation":{"id":430,"nodeType":"StructuredDocumentation","src":"1418:77:2","text":" @dev Throws if called by any account other than the owner."},"id":437,"name":"onlyOwner","nameLocation":"1509:9:2","nodeType":"ModifierDefinition","parameters":{"id":431,"nodeType":"ParameterList","parameters":[],"src":"1518:2:2"},"src":"1500:62:2","virtual":false,"visibility":"internal"},{"body":{"id":445,"nodeType":"Block","src":"1693:30:2","statements":[{"expression":{"id":443,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":387,"src":"1710:6:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":442,"id":444,"nodeType":"Return","src":"1703:13:2"}]},"documentation":{"id":438,"nodeType":"StructuredDocumentation","src":"1568:65:2","text":" @dev Returns the address of the current owner."},"functionSelector":"8da5cb5b","id":446,"implemented":true,"kind":"function","modifiers":[],"name":"owner","nameLocation":"1647:5:2","nodeType":"FunctionDefinition","parameters":{"id":439,"nodeType":"ParameterList","parameters":[],"src":"1652:2:2"},"returnParameters":{"id":442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":441,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":446,"src":"1684:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":440,"name":"address","nodeType":"ElementaryTypeName","src":"1684:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1683:9:2"},"scope":526,"src":"1638:85:2","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":462,"nodeType":"Block","src":"1841:117:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":454,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":450,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":446,"src":"1855:5:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":451,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1855:7:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":452,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"1866:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":453,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1866:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1855:23:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":461,"nodeType":"IfStatement","src":"1851:101:2","trueBody":{"id":460,"nodeType":"Block","src":"1880:72:2","statements":[{"errorCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":456,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"1928:10:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":457,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1928:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":455,"name":"OwnableUnauthorizedAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":392,"src":"1901:26:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1901:40:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":459,"nodeType":"RevertStatement","src":"1894:47:2"}]}}]},"documentation":{"id":447,"nodeType":"StructuredDocumentation","src":"1729:62:2","text":" @dev Throws if the sender is not the owner."},"id":463,"implemented":true,"kind":"function","modifiers":[],"name":"_checkOwner","nameLocation":"1805:11:2","nodeType":"FunctionDefinition","parameters":{"id":448,"nodeType":"ParameterList","parameters":[],"src":"1816:2:2"},"returnParameters":{"id":449,"nodeType":"ParameterList","parameters":[],"src":"1841:0:2"},"scope":526,"src":"1796:162:2","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":476,"nodeType":"Block","src":"2347:47:2","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":472,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2384:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":471,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2376:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":470,"name":"address","nodeType":"ElementaryTypeName","src":"2376:7:2","typeDescriptions":{}}},"id":473,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2376:10:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":469,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":525,"src":"2357:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2357:30:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":475,"nodeType":"ExpressionStatement","src":"2357:30:2"}]},"documentation":{"id":464,"nodeType":"StructuredDocumentation","src":"1964:324:2","text":" @dev Leaves the contract without owner. It will not be possible to call\n `onlyOwner` functions. Can only be called by the current owner.\n NOTE: Renouncing ownership will leave the contract without an owner,\n thereby disabling any functionality that is only available to the owner."},"functionSelector":"715018a6","id":477,"implemented":true,"kind":"function","modifiers":[{"id":467,"kind":"modifierInvocation","modifierName":{"id":466,"name":"onlyOwner","nameLocations":["2337:9:2"],"nodeType":"IdentifierPath","referencedDeclaration":437,"src":"2337:9:2"},"nodeType":"ModifierInvocation","src":"2337:9:2"}],"name":"renounceOwnership","nameLocation":"2302:17:2","nodeType":"FunctionDefinition","parameters":{"id":465,"nodeType":"ParameterList","parameters":[],"src":"2319:2:2"},"returnParameters":{"id":468,"nodeType":"ParameterList","parameters":[],"src":"2347:0:2"},"scope":526,"src":"2293:101:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":504,"nodeType":"Block","src":"2613:145:2","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":490,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":485,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":480,"src":"2627:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":488,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2647:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":487,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2639:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":486,"name":"address","nodeType":"ElementaryTypeName","src":"2639:7:2","typeDescriptions":{}}},"id":489,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2639:10:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2627:22:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":499,"nodeType":"IfStatement","src":"2623:91:2","trueBody":{"id":498,"nodeType":"Block","src":"2651:63:2","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":494,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2700:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":493,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2692:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":492,"name":"address","nodeType":"ElementaryTypeName","src":"2692:7:2","typeDescriptions":{}}},"id":495,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2692:10:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":491,"name":"OwnableInvalidOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":397,"src":"2672:19:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":496,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2672:31:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":497,"nodeType":"RevertStatement","src":"2665:38:2"}]}},{"expression":{"arguments":[{"id":501,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":480,"src":"2742:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":500,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":525,"src":"2723:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":502,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2723:28:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":503,"nodeType":"ExpressionStatement","src":"2723:28:2"}]},"documentation":{"id":478,"nodeType":"StructuredDocumentation","src":"2400:138:2","text":" @dev Transfers ownership of the contract to a new account (`newOwner`).\n Can only be called by the current owner."},"functionSelector":"f2fde38b","id":505,"implemented":true,"kind":"function","modifiers":[{"id":483,"kind":"modifierInvocation","modifierName":{"id":482,"name":"onlyOwner","nameLocations":["2603:9:2"],"nodeType":"IdentifierPath","referencedDeclaration":437,"src":"2603:9:2"},"nodeType":"ModifierInvocation","src":"2603:9:2"}],"name":"transferOwnership","nameLocation":"2552:17:2","nodeType":"FunctionDefinition","parameters":{"id":481,"nodeType":"ParameterList","parameters":[{"constant":false,"id":480,"mutability":"mutable","name":"newOwner","nameLocation":"2578:8:2","nodeType":"VariableDeclaration","scope":505,"src":"2570:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":479,"name":"address","nodeType":"ElementaryTypeName","src":"2570:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2569:18:2"},"returnParameters":{"id":484,"nodeType":"ParameterList","parameters":[],"src":"2613:0:2"},"scope":526,"src":"2543:215:2","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":524,"nodeType":"Block","src":"2975:124:2","statements":[{"assignments":[512],"declarations":[{"constant":false,"id":512,"mutability":"mutable","name":"oldOwner","nameLocation":"2993:8:2","nodeType":"VariableDeclaration","scope":524,"src":"2985:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":511,"name":"address","nodeType":"ElementaryTypeName","src":"2985:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":514,"initialValue":{"id":513,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":387,"src":"3004:6:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2985:25:2"},{"expression":{"id":517,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":515,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":387,"src":"3020:6:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":516,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":508,"src":"3029:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3020:17:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":518,"nodeType":"ExpressionStatement","src":"3020:17:2"},{"eventCall":{"arguments":[{"id":520,"name":"oldOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":512,"src":"3073:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":521,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":508,"src":"3083:8:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":519,"name":"OwnershipTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":403,"src":"3052:20:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":522,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3052:40:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":523,"nodeType":"EmitStatement","src":"3047:45:2"}]},"documentation":{"id":506,"nodeType":"StructuredDocumentation","src":"2764:143:2","text":" @dev Transfers ownership of the contract to a new account (`newOwner`).\n Internal function without access restriction."},"id":525,"implemented":true,"kind":"function","modifiers":[],"name":"_transferOwnership","nameLocation":"2921:18:2","nodeType":"FunctionDefinition","parameters":{"id":509,"nodeType":"ParameterList","parameters":[{"constant":false,"id":508,"mutability":"mutable","name":"newOwner","nameLocation":"2948:8:2","nodeType":"VariableDeclaration","scope":525,"src":"2940:16:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":507,"name":"address","nodeType":"ElementaryTypeName","src":"2940:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2939:18:2"},"returnParameters":{"id":510,"nodeType":"ParameterList","parameters":[],"src":"2975:0:2"},"scope":526,"src":"2912:187:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":527,"src":"663:2438:2","usedErrors":[392,397],"usedEvents":[403]}],"src":"102:3000:2"},"id":2},"@openzeppelin/contracts/governance/Governor.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/Governor.sol","exportedSymbols":{"Address":[7098],"Context":[7128],"DoubleEndedQueue":[15284],"EIP712":[9588],"ERC165":[9806],"Governor":[2338],"IERC1155Receiver":[5771],"IERC165":[9818],"IERC6372":[5592],"IERC721Receiver":[6811],"IGovernor":[2811],"Nonces":[7218],"SafeCast":[13204],"SignatureChecker":[9782],"Strings":[9013]},"id":2339,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":528,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:3"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"../token/ERC721/IERC721Receiver.sol","id":530,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2339,"sourceUnit":6812,"src":"133:68:3","symbolAliases":[{"foreign":{"id":529,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6811,"src":"141:15:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol","file":"../token/ERC1155/IERC1155Receiver.sol","id":532,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2339,"sourceUnit":5772,"src":"202:71:3","symbolAliases":[{"foreign":{"id":531,"name":"IERC1155Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5771,"src":"210:16:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/EIP712.sol","file":"../utils/cryptography/EIP712.sol","id":534,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2339,"sourceUnit":9589,"src":"274:56:3","symbolAliases":[{"foreign":{"id":533,"name":"EIP712","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9588,"src":"282:6:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol","file":"../utils/cryptography/SignatureChecker.sol","id":536,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2339,"sourceUnit":9783,"src":"331:76:3","symbolAliases":[{"foreign":{"id":535,"name":"SignatureChecker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9782,"src":"339:16:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"../utils/introspection/ERC165.sol","id":539,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2339,"sourceUnit":9807,"src":"408:66:3","symbolAliases":[{"foreign":{"id":537,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9818,"src":"416:7:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":538,"name":"ERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9806,"src":"425:6:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../utils/math/SafeCast.sol","id":541,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2339,"sourceUnit":13205,"src":"475:52:3","symbolAliases":[{"foreign":{"id":540,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"483:8:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol","file":"../utils/structs/DoubleEndedQueue.sol","id":543,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2339,"sourceUnit":15285,"src":"528:71:3","symbolAliases":[{"foreign":{"id":542,"name":"DoubleEndedQueue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15284,"src":"536:16:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"../utils/Address.sol","id":545,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2339,"sourceUnit":7099,"src":"600:45:3","symbolAliases":[{"foreign":{"id":544,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7098,"src":"608:7:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../utils/Context.sol","id":547,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2339,"sourceUnit":7129,"src":"646:45:3","symbolAliases":[{"foreign":{"id":546,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7128,"src":"654:7:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Nonces.sol","file":"../utils/Nonces.sol","id":549,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2339,"sourceUnit":7219,"src":"692:43:3","symbolAliases":[{"foreign":{"id":548,"name":"Nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7218,"src":"700:6:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","file":"../utils/Strings.sol","id":551,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2339,"sourceUnit":9014,"src":"736:45:3","symbolAliases":[{"foreign":{"id":550,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9013,"src":"744:7:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/IGovernor.sol","file":"./IGovernor.sol","id":554,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2339,"sourceUnit":2812,"src":"782:52:3","symbolAliases":[{"foreign":{"id":552,"name":"IGovernor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2811,"src":"790:9:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":553,"name":"IERC6372","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5592,"src":"801:8:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":556,"name":"Context","nameLocations":["1292:7:3"],"nodeType":"IdentifierPath","referencedDeclaration":7128,"src":"1292:7:3"},"id":557,"nodeType":"InheritanceSpecifier","src":"1292:7:3"},{"baseName":{"id":558,"name":"ERC165","nameLocations":["1301:6:3"],"nodeType":"IdentifierPath","referencedDeclaration":9806,"src":"1301:6:3"},"id":559,"nodeType":"InheritanceSpecifier","src":"1301:6:3"},{"baseName":{"id":560,"name":"EIP712","nameLocations":["1309:6:3"],"nodeType":"IdentifierPath","referencedDeclaration":9588,"src":"1309:6:3"},"id":561,"nodeType":"InheritanceSpecifier","src":"1309:6:3"},{"baseName":{"id":562,"name":"Nonces","nameLocations":["1317:6:3"],"nodeType":"IdentifierPath","referencedDeclaration":7218,"src":"1317:6:3"},"id":563,"nodeType":"InheritanceSpecifier","src":"1317:6:3"},{"baseName":{"id":564,"name":"IGovernor","nameLocations":["1325:9:3"],"nodeType":"IdentifierPath","referencedDeclaration":2811,"src":"1325:9:3"},"id":565,"nodeType":"InheritanceSpecifier","src":"1325:9:3"},{"baseName":{"id":566,"name":"IERC721Receiver","nameLocations":["1336:15:3"],"nodeType":"IdentifierPath","referencedDeclaration":6811,"src":"1336:15:3"},"id":567,"nodeType":"InheritanceSpecifier","src":"1336:15:3"},{"baseName":{"id":568,"name":"IERC1155Receiver","nameLocations":["1353:16:3"],"nodeType":"IdentifierPath","referencedDeclaration":5771,"src":"1353:16:3"},"id":569,"nodeType":"InheritanceSpecifier","src":"1353:16:3"}],"canonicalName":"Governor","contractDependencies":[],"contractKind":"contract","documentation":{"id":555,"nodeType":"StructuredDocumentation","src":"836:425:3","text":" @dev Core of the governance system, designed to be extended through various modules.\n This contract is abstract and requires several functions to be implemented in various modules:\n - A counting module must implement {_quorumReached}, {_voteSucceeded} and {_countVote}\n - A voting module must implement {_getVotes}\n - Additionally, {votingPeriod}, {votingDelay}, and {quorum} must also be implemented"},"fullyImplemented":false,"id":2338,"linearizedBaseContracts":[2338,5771,6811,2811,5592,7218,9588,5566,9806,9818,7128],"name":"Governor","nameLocation":"1280:8:3","nodeType":"ContractDefinition","nodes":[{"global":false,"id":573,"libraryName":{"id":570,"name":"DoubleEndedQueue","nameLocations":["1382:16:3"],"nodeType":"IdentifierPath","referencedDeclaration":15284,"src":"1382:16:3"},"nodeType":"UsingForDirective","src":"1376:57:3","typeName":{"id":572,"nodeType":"UserDefinedTypeName","pathNode":{"id":571,"name":"DoubleEndedQueue.Bytes32Deque","nameLocations":["1403:16:3","1420:12:3"],"nodeType":"IdentifierPath","referencedDeclaration":14944,"src":"1403:29:3"},"referencedDeclaration":14944,"src":"1403:29:3","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}}},{"constant":true,"functionSelector":"deaaa7cc","id":578,"mutability":"constant","name":"BALLOT_TYPEHASH","nameLocation":"1463:15:3","nodeType":"VariableDeclaration","scope":2338,"src":"1439:131:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":574,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1439:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"42616c6c6f742875696e743235362070726f706f73616c49642c75696e743820737570706f72742c6164647265737320766f7465722c75696e74323536206e6f6e636529","id":576,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1499:70:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_f2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d7","typeString":"literal_string \"Ballot(uint256 proposalId,uint8 support,address voter,uint256 nonce)\""},"value":"Ballot(uint256 proposalId,uint8 support,address voter,uint256 nonce)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_f2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d7","typeString":"literal_string \"Ballot(uint256 proposalId,uint8 support,address voter,uint256 nonce)\""}],"id":575,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"1489:9:3","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":577,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1489:81:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"functionSelector":"2fe3e261","id":583,"mutability":"constant","name":"EXTENDED_BALLOT_TYPEHASH","nameLocation":"1600:24:3","nodeType":"VariableDeclaration","scope":2338,"src":"1576:197:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":579,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1576:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"457874656e64656442616c6c6f742875696e743235362070726f706f73616c49642c75696e743820737570706f72742c6164647265737320766f7465722c75696e74323536206e6f6e63652c737472696e6720726561736f6e2c627974657320706172616d7329","id":581,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1658:105:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a811","typeString":"literal_string \"ExtendedBallot(uint256 proposalId,uint8 support,address voter,uint256 nonce,string reason,bytes params)\""},"value":"ExtendedBallot(uint256 proposalId,uint8 support,address voter,uint256 nonce,string reason,bytes params)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a811","typeString":"literal_string \"ExtendedBallot(uint256 proposalId,uint8 support,address voter,uint256 nonce,string reason,bytes params)\""}],"id":580,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"1635:9:3","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":582,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1635:138:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"canonicalName":"Governor.ProposalCore","id":596,"members":[{"constant":false,"id":585,"mutability":"mutable","name":"proposer","nameLocation":"1818:8:3","nodeType":"VariableDeclaration","scope":596,"src":"1810:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":584,"name":"address","nodeType":"ElementaryTypeName","src":"1810:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":587,"mutability":"mutable","name":"voteStart","nameLocation":"1843:9:3","nodeType":"VariableDeclaration","scope":596,"src":"1836:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":586,"name":"uint48","nodeType":"ElementaryTypeName","src":"1836:6:3","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":589,"mutability":"mutable","name":"voteDuration","nameLocation":"1869:12:3","nodeType":"VariableDeclaration","scope":596,"src":"1862:19:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":588,"name":"uint32","nodeType":"ElementaryTypeName","src":"1862:6:3","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":591,"mutability":"mutable","name":"executed","nameLocation":"1896:8:3","nodeType":"VariableDeclaration","scope":596,"src":"1891:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":590,"name":"bool","nodeType":"ElementaryTypeName","src":"1891:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":593,"mutability":"mutable","name":"canceled","nameLocation":"1919:8:3","nodeType":"VariableDeclaration","scope":596,"src":"1914:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":592,"name":"bool","nodeType":"ElementaryTypeName","src":"1914:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":595,"mutability":"mutable","name":"etaSeconds","nameLocation":"1944:10:3","nodeType":"VariableDeclaration","scope":596,"src":"1937:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":594,"name":"uint48","nodeType":"ElementaryTypeName","src":"1937:6:3","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"name":"ProposalCore","nameLocation":"1787:12:3","nodeType":"StructDefinition","scope":2338,"src":"1780:181:3","visibility":"public"},{"constant":true,"id":616,"mutability":"constant","name":"ALL_PROPOSAL_STATES_BITMAP","nameLocation":"1992:26:3","nodeType":"VariableDeclaration","scope":2338,"src":"1967:110:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":597,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1967:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":614,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":611,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":600,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2030:1:3","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":609,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"arguments":[{"id":604,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"2047:13:3","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}],"id":603,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"2042:4:3","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":605,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2042:19:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_enum$_ProposalState_$2358","typeString":"type(enum IGovernor.ProposalState)"}},"id":606,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2062:3:3","memberName":"max","nodeType":"MemberAccess","src":"2042:23:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}],"id":602,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2036:5:3","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":601,"name":"uint8","nodeType":"ElementaryTypeName","src":"2036:5:3","typeDescriptions":{}}},"id":607,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2036:30:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":608,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2069:1:3","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2036:34:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":610,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2035:36:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"2030:41:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":612,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2029:43:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":613,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2075:1:3","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2029:47:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":599,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2021:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":598,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2021:7:3","typeDescriptions":{}}},"id":615,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2021:56:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":618,"mutability":"mutable","name":"_name","nameLocation":"2098:5:3","nodeType":"VariableDeclaration","scope":2338,"src":"2083:20:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":617,"name":"string","nodeType":"ElementaryTypeName","src":"2083:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":623,"mutability":"mutable","name":"_proposals","nameLocation":"2162:10:3","nodeType":"VariableDeclaration","scope":2338,"src":"2110:62:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$596_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore)"},"typeName":{"id":622,"keyName":"proposalId","keyNameLocation":"2126:10:3","keyType":{"id":619,"name":"uint256","nodeType":"ElementaryTypeName","src":"2118:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"2110:43:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$596_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":621,"nodeType":"UserDefinedTypeName","pathNode":{"id":620,"name":"ProposalCore","nameLocations":["2140:12:3"],"nodeType":"IdentifierPath","referencedDeclaration":596,"src":"2140:12:3"},"referencedDeclaration":596,"src":"2140:12:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage_ptr","typeString":"struct Governor.ProposalCore"}}},"visibility":"private"},{"constant":false,"id":626,"mutability":"mutable","name":"_governanceCall","nameLocation":"2660:15:3","nodeType":"VariableDeclaration","scope":2338,"src":"2622:53:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":625,"nodeType":"UserDefinedTypeName","pathNode":{"id":624,"name":"DoubleEndedQueue.Bytes32Deque","nameLocations":["2622:16:3","2639:12:3"],"nodeType":"IdentifierPath","referencedDeclaration":14944,"src":"2622:29:3"},"referencedDeclaration":14944,"src":"2622:29:3","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"private"},{"body":{"id":633,"nodeType":"Block","src":"3446:46:3","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":629,"name":"_checkGovernance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1013,"src":"3456:16:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":630,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3456:18:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":631,"nodeType":"ExpressionStatement","src":"3456:18:3"},{"id":632,"nodeType":"PlaceholderStatement","src":"3484:1:3"}]},"documentation":{"id":627,"nodeType":"StructuredDocumentation","src":"2682:733:3","text":" @dev Restricts a function so it can only be executed through governance proposals. For example, governance\n parameter setters in {GovernorSettings} are protected using this modifier.\n The governance executing address may be different from the Governor's own address, for example it could be a\n timelock. This can be customized by modules by overriding {_executor}. The executor is only able to invoke these\n functions during the execution of the governor's {execute} function, and not under any other circumstances. Thus,\n for example, additional timelock proposers are not able to change governance parameters without going through the\n governance protocol (since v4.6)."},"id":634,"name":"onlyGovernance","nameLocation":"3429:14:3","nodeType":"ModifierDefinition","parameters":{"id":628,"nodeType":"ParameterList","parameters":[],"src":"3443:2:3"},"src":"3420:72:3","virtual":false,"visibility":"internal"},{"body":{"id":649,"nodeType":"Block","src":"3624:30:3","statements":[{"expression":{"id":647,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":645,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":618,"src":"3634:5:3","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":646,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":637,"src":"3642:5:3","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"3634:13:3","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":648,"nodeType":"ExpressionStatement","src":"3634:13:3"}]},"documentation":{"id":635,"nodeType":"StructuredDocumentation","src":"3498:63:3","text":" @dev Sets the value for {name} and {version}"},"id":650,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":640,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":637,"src":"3606:5:3","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[],"expression":{"argumentTypes":[],"id":641,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":727,"src":"3613:7:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":642,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3613:9:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":643,"kind":"baseConstructorSpecifier","modifierName":{"id":639,"name":"EIP712","nameLocations":["3599:6:3"],"nodeType":"IdentifierPath","referencedDeclaration":9588,"src":"3599:6:3"},"nodeType":"ModifierInvocation","src":"3599:24:3"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":638,"nodeType":"ParameterList","parameters":[{"constant":false,"id":637,"mutability":"mutable","name":"name_","nameLocation":"3592:5:3","nodeType":"VariableDeclaration","scope":650,"src":"3578:19:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":636,"name":"string","nodeType":"ElementaryTypeName","src":"3578:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3577:21:3"},"returnParameters":{"id":644,"nodeType":"ParameterList","parameters":[],"src":"3624:0:3"},"scope":2338,"src":"3566:88:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":666,"nodeType":"Block","src":"3833:107:3","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":660,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":654,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2039,"src":"3847:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":655,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3847:11:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":658,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"3870:4:3","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}],"id":657,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3862:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":656,"name":"address","nodeType":"ElementaryTypeName","src":"3862:7:3","typeDescriptions":{}}},"id":659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3862:13:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3847:28:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":665,"nodeType":"IfStatement","src":"3843:91:3","trueBody":{"id":664,"nodeType":"Block","src":"3877:57:3","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":661,"name":"GovernorDisabledDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2375,"src":"3898:23:3","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":662,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3898:25:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":663,"nodeType":"RevertStatement","src":"3891:32:3"}]}}]},"documentation":{"id":651,"nodeType":"StructuredDocumentation","src":"3660:133:3","text":" @dev Function to receive ETH that will be handled by the governor (disabled if executor is a third party contract)"},"id":667,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":652,"nodeType":"ParameterList","parameters":[],"src":"3805:2:3"},"returnParameters":{"id":653,"nodeType":"ParameterList","parameters":[],"src":"3833:0:3"},"scope":2338,"src":"3798:142:3","stateMutability":"payable","virtual":true,"visibility":"external"},{"baseFunctions":[9805,9817],"body":{"id":708,"nodeType":"Block","src":"4115:288:3","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":678,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":670,"src":"4144:11:3","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":680,"name":"IGovernor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2811,"src":"4164:9:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IGovernor_$2811_$","typeString":"type(contract IGovernor)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IGovernor_$2811_$","typeString":"type(contract IGovernor)"}],"id":679,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"4159:4:3","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":681,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4159:15:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IGovernor_$2811","typeString":"type(contract IGovernor)"}},"id":682,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4175:11:3","memberName":"interfaceId","nodeType":"MemberAccess","src":"4159:27:3","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"4144:42:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":693,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":684,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":670,"src":"4202:11:3","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":692,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":686,"name":"IGovernor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2811,"src":"4222:9:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IGovernor_$2811_$","typeString":"type(contract IGovernor)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IGovernor_$2811_$","typeString":"type(contract IGovernor)"}],"id":685,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"4217:4:3","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":687,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4217:15:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IGovernor_$2811","typeString":"type(contract IGovernor)"}},"id":688,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4233:11:3","memberName":"interfaceId","nodeType":"MemberAccess","src":"4217:27:3","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"expression":{"expression":{"id":689,"name":"IGovernor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2811,"src":"4247:9:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IGovernor_$2811_$","typeString":"type(contract IGovernor)"}},"id":690,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4257:13:3","memberName":"getProposalId","nodeType":"MemberAccess","referencedDeclaration":2567,"src":"4247:23:3","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function IGovernor.getProposalId(address[] memory,uint256[] memory,bytes memory[] memory,bytes32) view returns (uint256)"}},"id":691,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4271:8:3","memberName":"selector","nodeType":"MemberAccess","src":"4247:32:3","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"4217:62:3","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"4202:77:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4144:135:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":700,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":695,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":670,"src":"4295:11:3","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":697,"name":"IERC1155Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5771,"src":"4315:16:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1155Receiver_$5771_$","typeString":"type(contract IERC1155Receiver)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC1155Receiver_$5771_$","typeString":"type(contract IERC1155Receiver)"}],"id":696,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"4310:4:3","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":698,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4310:22:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC1155Receiver_$5771","typeString":"type(contract IERC1155Receiver)"}},"id":699,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4333:11:3","memberName":"interfaceId","nodeType":"MemberAccess","src":"4310:34:3","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"4295:49:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4144:200:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":704,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":670,"src":"4384:11:3","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":702,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"4360:5:3","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_Governor_$2338_$","typeString":"type(contract super Governor)"}},"id":703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4366:17:3","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":9805,"src":"4360:23:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":705,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4360:36:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4144:252:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":677,"id":707,"nodeType":"Return","src":"4125:271:3"}]},"documentation":{"id":668,"nodeType":"StructuredDocumentation","src":"3946:56:3","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":709,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"4016:17:3","nodeType":"FunctionDefinition","overrides":{"id":674,"nodeType":"OverrideSpecifier","overrides":[{"id":672,"name":"IERC165","nameLocations":["4083:7:3"],"nodeType":"IdentifierPath","referencedDeclaration":9818,"src":"4083:7:3"},{"id":673,"name":"ERC165","nameLocations":["4092:6:3"],"nodeType":"IdentifierPath","referencedDeclaration":9806,"src":"4092:6:3"}],"src":"4074:25:3"},"parameters":{"id":671,"nodeType":"ParameterList","parameters":[{"constant":false,"id":670,"mutability":"mutable","name":"interfaceId","nameLocation":"4041:11:3","nodeType":"VariableDeclaration","scope":709,"src":"4034:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":669,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4034:6:3","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"4033:20:3"},"returnParameters":{"id":677,"nodeType":"ParameterList","parameters":[{"constant":false,"id":676,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":709,"src":"4109:4:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":675,"name":"bool","nodeType":"ElementaryTypeName","src":"4109:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4108:6:3"},"scope":2338,"src":"4007:396:3","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2521],"body":{"id":717,"nodeType":"Block","src":"4519:29:3","statements":[{"expression":{"id":715,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":618,"src":"4536:5:3","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":714,"id":716,"nodeType":"Return","src":"4529:12:3"}]},"documentation":{"id":710,"nodeType":"StructuredDocumentation","src":"4409:45:3","text":" @dev See {IGovernor-name}."},"functionSelector":"06fdde03","id":718,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"4468:4:3","nodeType":"FunctionDefinition","parameters":{"id":711,"nodeType":"ParameterList","parameters":[],"src":"4472:2:3"},"returnParameters":{"id":714,"nodeType":"ParameterList","parameters":[{"constant":false,"id":713,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":718,"src":"4504:13:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":712,"name":"string","nodeType":"ElementaryTypeName","src":"4504:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4503:15:3"},"scope":2338,"src":"4459:89:3","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2527],"body":{"id":726,"nodeType":"Block","src":"4670:27:3","statements":[{"expression":{"hexValue":"31","id":724,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4687:3:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6","typeString":"literal_string \"1\""},"value":"1"},"functionReturnParameters":723,"id":725,"nodeType":"Return","src":"4680:10:3"}]},"documentation":{"id":719,"nodeType":"StructuredDocumentation","src":"4554:48:3","text":" @dev See {IGovernor-version}."},"functionSelector":"54fd4d50","id":727,"implemented":true,"kind":"function","modifiers":[],"name":"version","nameLocation":"4616:7:3","nodeType":"FunctionDefinition","parameters":{"id":720,"nodeType":"ParameterList","parameters":[],"src":"4623:2:3"},"returnParameters":{"id":723,"nodeType":"ParameterList","parameters":[{"constant":false,"id":722,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":727,"src":"4655:13:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":721,"name":"string","nodeType":"ElementaryTypeName","src":"4655:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4654:15:3"},"scope":2338,"src":"4607:90:3","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2550],"body":{"id":757,"nodeType":"Block","src":"5842:99:3","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":749,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":731,"src":"5888:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":750,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":734,"src":"5897:6:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":751,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"5905:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":752,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":739,"src":"5916:15:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":747,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967295,"src":"5877:3:3","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":748,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5881:6:3","memberName":"encode","nodeType":"MemberAccess","src":"5877:10:3","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":753,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5877:55:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":746,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"5867:9:3","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":754,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5867:66:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":745,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5859:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":744,"name":"uint256","nodeType":"ElementaryTypeName","src":"5859:7:3","typeDescriptions":{}}},"id":755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5859:75:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":743,"id":756,"nodeType":"Return","src":"5852:82:3"}]},"documentation":{"id":728,"nodeType":"StructuredDocumentation","src":"4703:934:3","text":" @dev See {IGovernor-hashProposal}.\n The proposal id is produced by hashing the ABI encoded `targets` array, the `values` array, the `calldatas` array\n and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id\n can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in\n advance, before the proposal is submitted.\n Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the\n same proposal (with same operation and same description) will have the same id if submitted on multiple governors\n across multiple networks. This also means that in order to execute the same operation twice (on the same\n governor) the proposer will have to change the description in order to avoid proposal id conflicts."},"functionSelector":"c59057e4","id":758,"implemented":true,"kind":"function","modifiers":[],"name":"hashProposal","nameLocation":"5651:12:3","nodeType":"FunctionDefinition","parameters":{"id":740,"nodeType":"ParameterList","parameters":[{"constant":false,"id":731,"mutability":"mutable","name":"targets","nameLocation":"5690:7:3","nodeType":"VariableDeclaration","scope":758,"src":"5673:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":729,"name":"address","nodeType":"ElementaryTypeName","src":"5673:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":730,"nodeType":"ArrayTypeName","src":"5673:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":734,"mutability":"mutable","name":"values","nameLocation":"5724:6:3","nodeType":"VariableDeclaration","scope":758,"src":"5707:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":732,"name":"uint256","nodeType":"ElementaryTypeName","src":"5707:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":733,"nodeType":"ArrayTypeName","src":"5707:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":737,"mutability":"mutable","name":"calldatas","nameLocation":"5755:9:3","nodeType":"VariableDeclaration","scope":758,"src":"5740:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":735,"name":"bytes","nodeType":"ElementaryTypeName","src":"5740:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":736,"nodeType":"ArrayTypeName","src":"5740:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":739,"mutability":"mutable","name":"descriptionHash","nameLocation":"5782:15:3","nodeType":"VariableDeclaration","scope":758,"src":"5774:23:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":738,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5774:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5663:140:3"},"returnParameters":{"id":743,"nodeType":"ParameterList","parameters":[{"constant":false,"id":742,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":758,"src":"5833:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":741,"name":"uint256","nodeType":"ElementaryTypeName","src":"5833:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5832:9:3"},"scope":2338,"src":"5642:299:3","stateMutability":"pure","virtual":true,"visibility":"public"},{"baseFunctions":[2567],"body":{"id":782,"nodeType":"Block","src":"6207:81:3","statements":[{"expression":{"arguments":[{"id":776,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":762,"src":"6237:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":777,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":765,"src":"6246:6:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":778,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":768,"src":"6254:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":779,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":770,"src":"6265:15:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":775,"name":"hashProposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":758,"src":"6224:12:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32) pure returns (uint256)"}},"id":780,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6224:57:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":774,"id":781,"nodeType":"Return","src":"6217:64:3"}]},"documentation":{"id":759,"nodeType":"StructuredDocumentation","src":"5947:54:3","text":" @dev See {IGovernor-getProposalId}."},"functionSelector":"a8f8a668","id":783,"implemented":true,"kind":"function","modifiers":[],"name":"getProposalId","nameLocation":"6015:13:3","nodeType":"FunctionDefinition","parameters":{"id":771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":762,"mutability":"mutable","name":"targets","nameLocation":"6055:7:3","nodeType":"VariableDeclaration","scope":783,"src":"6038:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":760,"name":"address","nodeType":"ElementaryTypeName","src":"6038:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":761,"nodeType":"ArrayTypeName","src":"6038:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":765,"mutability":"mutable","name":"values","nameLocation":"6089:6:3","nodeType":"VariableDeclaration","scope":783,"src":"6072:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":763,"name":"uint256","nodeType":"ElementaryTypeName","src":"6072:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":764,"nodeType":"ArrayTypeName","src":"6072:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":768,"mutability":"mutable","name":"calldatas","nameLocation":"6120:9:3","nodeType":"VariableDeclaration","scope":783,"src":"6105:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":766,"name":"bytes","nodeType":"ElementaryTypeName","src":"6105:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":767,"nodeType":"ArrayTypeName","src":"6105:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":770,"mutability":"mutable","name":"descriptionHash","nameLocation":"6147:15:3","nodeType":"VariableDeclaration","scope":783,"src":"6139:23:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":769,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6139:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6028:140:3"},"returnParameters":{"id":774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":773,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":783,"src":"6198:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":772,"name":"uint256","nodeType":"ElementaryTypeName","src":"6198:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6197:9:3"},"scope":2338,"src":"6006:282:3","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2576],"body":{"id":891,"nodeType":"Block","src":"6424:1169:3","statements":[{"assignments":[794],"declarations":[{"constant":false,"id":794,"mutability":"mutable","name":"proposal","nameLocation":"6548:8:3","nodeType":"VariableDeclaration","scope":891,"src":"6527:29:3","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage_ptr","typeString":"struct Governor.ProposalCore"},"typeName":{"id":793,"nodeType":"UserDefinedTypeName","pathNode":{"id":792,"name":"ProposalCore","nameLocations":["6527:12:3"],"nodeType":"IdentifierPath","referencedDeclaration":596,"src":"6527:12:3"},"referencedDeclaration":596,"src":"6527:12:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage_ptr","typeString":"struct Governor.ProposalCore"}},"visibility":"internal"}],"id":798,"initialValue":{"baseExpression":{"id":795,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":623,"src":"6559:10:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$596_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":797,"indexExpression":{"id":796,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":786,"src":"6570:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6559:22:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage","typeString":"struct Governor.ProposalCore storage ref"}},"nodeType":"VariableDeclarationStatement","src":"6527:54:3"},{"assignments":[800],"declarations":[{"constant":false,"id":800,"mutability":"mutable","name":"proposalExecuted","nameLocation":"6596:16:3","nodeType":"VariableDeclaration","scope":891,"src":"6591:21:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":799,"name":"bool","nodeType":"ElementaryTypeName","src":"6591:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":803,"initialValue":{"expression":{"id":801,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":794,"src":"6615:8:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage_ptr","typeString":"struct Governor.ProposalCore storage pointer"}},"id":802,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6624:8:3","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":591,"src":"6615:17:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"6591:41:3"},{"assignments":[805],"declarations":[{"constant":false,"id":805,"mutability":"mutable","name":"proposalCanceled","nameLocation":"6647:16:3","nodeType":"VariableDeclaration","scope":891,"src":"6642:21:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":804,"name":"bool","nodeType":"ElementaryTypeName","src":"6642:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":808,"initialValue":{"expression":{"id":806,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":794,"src":"6666:8:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage_ptr","typeString":"struct Governor.ProposalCore storage pointer"}},"id":807,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6675:8:3","memberName":"canceled","nodeType":"MemberAccess","referencedDeclaration":593,"src":"6666:17:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"6642:41:3"},{"condition":{"id":809,"name":"proposalExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":800,"src":"6698:16:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":814,"nodeType":"IfStatement","src":"6694:76:3","trueBody":{"id":813,"nodeType":"Block","src":"6716:54:3","statements":[{"expression":{"expression":{"id":810,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"6737:13:3","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":811,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6751:8:3","memberName":"Executed","nodeType":"MemberAccess","referencedDeclaration":2357,"src":"6737:22:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":791,"id":812,"nodeType":"Return","src":"6730:29:3"}]}},{"condition":{"id":815,"name":"proposalCanceled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":805,"src":"6784:16:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":820,"nodeType":"IfStatement","src":"6780:76:3","trueBody":{"id":819,"nodeType":"Block","src":"6802:54:3","statements":[{"expression":{"expression":{"id":816,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"6823:13:3","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":817,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6837:8:3","memberName":"Canceled","nodeType":"MemberAccess","referencedDeclaration":2352,"src":"6823:22:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":791,"id":818,"nodeType":"Return","src":"6816:29:3"}]}},{"assignments":[822],"declarations":[{"constant":false,"id":822,"mutability":"mutable","name":"snapshot","nameLocation":"6874:8:3","nodeType":"VariableDeclaration","scope":891,"src":"6866:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":821,"name":"uint256","nodeType":"ElementaryTypeName","src":"6866:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":826,"initialValue":{"arguments":[{"id":824,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":786,"src":"6902:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":823,"name":"proposalSnapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":915,"src":"6885:16:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":825,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6885:28:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6866:47:3"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":829,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":827,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":822,"src":"6928:8:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":828,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6940:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6928:13:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":835,"nodeType":"IfStatement","src":"6924:90:3","trueBody":{"id":834,"nodeType":"Block","src":"6943:71:3","statements":[{"errorCall":{"arguments":[{"id":831,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":786,"src":"6992:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":830,"name":"GovernorNonexistentProposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2385,"src":"6964:27:3","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":832,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6964:39:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":833,"nodeType":"RevertStatement","src":"6957:46:3"}]}},{"assignments":[837],"declarations":[{"constant":false,"id":837,"mutability":"mutable","name":"currentTimepoint","nameLocation":"7032:16:3","nodeType":"VariableDeclaration","scope":891,"src":"7024:24:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":836,"name":"uint256","nodeType":"ElementaryTypeName","src":"7024:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":840,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":838,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2299,"src":"7051:5:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":839,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7051:7:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"7024:34:3"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":843,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":841,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":822,"src":"7073:8:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":842,"name":"currentTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":837,"src":"7085:16:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7073:28:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":848,"nodeType":"IfStatement","src":"7069:87:3","trueBody":{"id":847,"nodeType":"Block","src":"7103:53:3","statements":[{"expression":{"expression":{"id":844,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"7124:13:3","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":845,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7138:7:3","memberName":"Pending","nodeType":"MemberAccess","referencedDeclaration":2350,"src":"7124:21:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":791,"id":846,"nodeType":"Return","src":"7117:28:3"}]}},{"assignments":[850],"declarations":[{"constant":false,"id":850,"mutability":"mutable","name":"deadline","nameLocation":"7174:8:3","nodeType":"VariableDeclaration","scope":891,"src":"7166:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":849,"name":"uint256","nodeType":"ElementaryTypeName","src":"7166:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":854,"initialValue":{"arguments":[{"id":852,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":786,"src":"7202:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":851,"name":"proposalDeadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":934,"src":"7185:16:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":853,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7185:28:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7166:47:3"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":857,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":855,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":850,"src":"7228:8:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":856,"name":"currentTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":837,"src":"7240:16:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7228:28:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7320:27:3","subExpression":{"arguments":[{"id":863,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":786,"src":"7336:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":862,"name":"_quorumReached","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1021,"src":"7321:14:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":864,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7321:26:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"id":869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7351:27:3","subExpression":{"arguments":[{"id":867,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":786,"src":"7367:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":866,"name":"_voteSucceeded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1029,"src":"7352:14:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7352:26:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7320:58:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":876,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":786,"src":"7456:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":875,"name":"proposalEta","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":962,"src":"7444:11:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":877,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7444:23:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":878,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7471:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7444:28:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":887,"nodeType":"Block","src":"7535:52:3","statements":[{"expression":{"expression":{"id":884,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"7556:13:3","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":885,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7570:6:3","memberName":"Queued","nodeType":"MemberAccess","referencedDeclaration":2355,"src":"7556:20:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":791,"id":886,"nodeType":"Return","src":"7549:27:3"}]},"id":888,"nodeType":"IfStatement","src":"7440:147:3","trueBody":{"id":883,"nodeType":"Block","src":"7474:55:3","statements":[{"expression":{"expression":{"id":880,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"7495:13:3","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":881,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7509:9:3","memberName":"Succeeded","nodeType":"MemberAccess","referencedDeclaration":2354,"src":"7495:23:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":791,"id":882,"nodeType":"Return","src":"7488:30:3"}]}},"id":889,"nodeType":"IfStatement","src":"7316:271:3","trueBody":{"id":874,"nodeType":"Block","src":"7380:54:3","statements":[{"expression":{"expression":{"id":871,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"7401:13:3","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":872,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7415:8:3","memberName":"Defeated","nodeType":"MemberAccess","referencedDeclaration":2353,"src":"7401:22:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":791,"id":873,"nodeType":"Return","src":"7394:29:3"}]}},"id":890,"nodeType":"IfStatement","src":"7224:363:3","trueBody":{"id":861,"nodeType":"Block","src":"7258:52:3","statements":[{"expression":{"expression":{"id":858,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"7279:13:3","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":859,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7293:6:3","memberName":"Active","nodeType":"MemberAccess","referencedDeclaration":2351,"src":"7279:20:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":791,"id":860,"nodeType":"Return","src":"7272:27:3"}]}}]},"documentation":{"id":784,"nodeType":"StructuredDocumentation","src":"6294:46:3","text":" @dev See {IGovernor-state}."},"functionSelector":"3e4f49e6","id":892,"implemented":true,"kind":"function","modifiers":[],"name":"state","nameLocation":"6354:5:3","nodeType":"FunctionDefinition","parameters":{"id":787,"nodeType":"ParameterList","parameters":[{"constant":false,"id":786,"mutability":"mutable","name":"proposalId","nameLocation":"6368:10:3","nodeType":"VariableDeclaration","scope":892,"src":"6360:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":785,"name":"uint256","nodeType":"ElementaryTypeName","src":"6360:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6359:20:3"},"returnParameters":{"id":791,"nodeType":"ParameterList","parameters":[{"constant":false,"id":790,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":892,"src":"6409:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":789,"nodeType":"UserDefinedTypeName","pathNode":{"id":788,"name":"ProposalState","nameLocations":["6409:13:3"],"nodeType":"IdentifierPath","referencedDeclaration":2358,"src":"6409:13:3"},"referencedDeclaration":2358,"src":"6409:13:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"6408:15:3"},"scope":2338,"src":"6345:1248:3","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2582],"body":{"id":900,"nodeType":"Block","src":"7729:25:3","statements":[{"expression":{"hexValue":"30","id":898,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7746:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":897,"id":899,"nodeType":"Return","src":"7739:8:3"}]},"documentation":{"id":893,"nodeType":"StructuredDocumentation","src":"7599:58:3","text":" @dev See {IGovernor-proposalThreshold}."},"functionSelector":"b58131b0","id":901,"implemented":true,"kind":"function","modifiers":[],"name":"proposalThreshold","nameLocation":"7671:17:3","nodeType":"FunctionDefinition","parameters":{"id":894,"nodeType":"ParameterList","parameters":[],"src":"7688:2:3"},"returnParameters":{"id":897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":896,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":901,"src":"7720:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":895,"name":"uint256","nodeType":"ElementaryTypeName","src":"7720:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7719:9:3"},"scope":2338,"src":"7662:92:3","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2590],"body":{"id":914,"nodeType":"Block","src":"7906:56:3","statements":[{"expression":{"expression":{"baseExpression":{"id":909,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":623,"src":"7923:10:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$596_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":911,"indexExpression":{"id":910,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":904,"src":"7934:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7923:22:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":912,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7946:9:3","memberName":"voteStart","nodeType":"MemberAccess","referencedDeclaration":587,"src":"7923:32:3","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":908,"id":913,"nodeType":"Return","src":"7916:39:3"}]},"documentation":{"id":902,"nodeType":"StructuredDocumentation","src":"7760:57:3","text":" @dev See {IGovernor-proposalSnapshot}."},"functionSelector":"2d63f693","id":915,"implemented":true,"kind":"function","modifiers":[],"name":"proposalSnapshot","nameLocation":"7831:16:3","nodeType":"FunctionDefinition","parameters":{"id":905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":904,"mutability":"mutable","name":"proposalId","nameLocation":"7856:10:3","nodeType":"VariableDeclaration","scope":915,"src":"7848:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":903,"name":"uint256","nodeType":"ElementaryTypeName","src":"7848:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7847:20:3"},"returnParameters":{"id":908,"nodeType":"ParameterList","parameters":[{"constant":false,"id":907,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":915,"src":"7897:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":906,"name":"uint256","nodeType":"ElementaryTypeName","src":"7897:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7896:9:3"},"scope":2338,"src":"7822:140:3","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2598],"body":{"id":933,"nodeType":"Block","src":"8114:94:3","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":931,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":923,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":623,"src":"8131:10:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$596_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":925,"indexExpression":{"id":924,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":918,"src":"8142:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8131:22:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":926,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8154:9:3","memberName":"voteStart","nodeType":"MemberAccess","referencedDeclaration":587,"src":"8131:32:3","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"baseExpression":{"id":927,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":623,"src":"8166:10:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$596_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":929,"indexExpression":{"id":928,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":918,"src":"8177:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8166:22:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":930,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8189:12:3","memberName":"voteDuration","nodeType":"MemberAccess","referencedDeclaration":589,"src":"8166:35:3","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"8131:70:3","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":922,"id":932,"nodeType":"Return","src":"8124:77:3"}]},"documentation":{"id":916,"nodeType":"StructuredDocumentation","src":"7968:57:3","text":" @dev See {IGovernor-proposalDeadline}."},"functionSelector":"c01f9e37","id":934,"implemented":true,"kind":"function","modifiers":[],"name":"proposalDeadline","nameLocation":"8039:16:3","nodeType":"FunctionDefinition","parameters":{"id":919,"nodeType":"ParameterList","parameters":[{"constant":false,"id":918,"mutability":"mutable","name":"proposalId","nameLocation":"8064:10:3","nodeType":"VariableDeclaration","scope":934,"src":"8056:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":917,"name":"uint256","nodeType":"ElementaryTypeName","src":"8056:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8055:20:3"},"returnParameters":{"id":922,"nodeType":"ParameterList","parameters":[{"constant":false,"id":921,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":934,"src":"8105:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":920,"name":"uint256","nodeType":"ElementaryTypeName","src":"8105:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8104:9:3"},"scope":2338,"src":"8030:178:3","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2606],"body":{"id":947,"nodeType":"Block","src":"8360:55:3","statements":[{"expression":{"expression":{"baseExpression":{"id":942,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":623,"src":"8377:10:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$596_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":944,"indexExpression":{"id":943,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":937,"src":"8388:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8377:22:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":945,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8400:8:3","memberName":"proposer","nodeType":"MemberAccess","referencedDeclaration":585,"src":"8377:31:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":941,"id":946,"nodeType":"Return","src":"8370:38:3"}]},"documentation":{"id":935,"nodeType":"StructuredDocumentation","src":"8214:57:3","text":" @dev See {IGovernor-proposalProposer}."},"functionSelector":"143489d0","id":948,"implemented":true,"kind":"function","modifiers":[],"name":"proposalProposer","nameLocation":"8285:16:3","nodeType":"FunctionDefinition","parameters":{"id":938,"nodeType":"ParameterList","parameters":[{"constant":false,"id":937,"mutability":"mutable","name":"proposalId","nameLocation":"8310:10:3","nodeType":"VariableDeclaration","scope":948,"src":"8302:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":936,"name":"uint256","nodeType":"ElementaryTypeName","src":"8302:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8301:20:3"},"returnParameters":{"id":941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":940,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":948,"src":"8351:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":939,"name":"address","nodeType":"ElementaryTypeName","src":"8351:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8350:9:3"},"scope":2338,"src":"8276:139:3","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2614],"body":{"id":961,"nodeType":"Block","src":"8557:57:3","statements":[{"expression":{"expression":{"baseExpression":{"id":956,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":623,"src":"8574:10:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$596_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":958,"indexExpression":{"id":957,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":951,"src":"8585:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8574:22:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":959,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8597:10:3","memberName":"etaSeconds","nodeType":"MemberAccess","referencedDeclaration":595,"src":"8574:33:3","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":955,"id":960,"nodeType":"Return","src":"8567:40:3"}]},"documentation":{"id":949,"nodeType":"StructuredDocumentation","src":"8421:52:3","text":" @dev See {IGovernor-proposalEta}."},"functionSelector":"ab58fb8e","id":962,"implemented":true,"kind":"function","modifiers":[],"name":"proposalEta","nameLocation":"8487:11:3","nodeType":"FunctionDefinition","parameters":{"id":952,"nodeType":"ParameterList","parameters":[{"constant":false,"id":951,"mutability":"mutable","name":"proposalId","nameLocation":"8507:10:3","nodeType":"VariableDeclaration","scope":962,"src":"8499:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":950,"name":"uint256","nodeType":"ElementaryTypeName","src":"8499:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8498:20:3"},"returnParameters":{"id":955,"nodeType":"ParameterList","parameters":[{"constant":false,"id":954,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":962,"src":"8548:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":953,"name":"uint256","nodeType":"ElementaryTypeName","src":"8548:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8547:9:3"},"scope":2338,"src":"8478:136:3","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2622],"body":{"id":972,"nodeType":"Block","src":"8760:29:3","statements":[{"expression":{"hexValue":"66616c7365","id":970,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8777:5:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":969,"id":971,"nodeType":"Return","src":"8770:12:3"}]},"documentation":{"id":963,"nodeType":"StructuredDocumentation","src":"8620:61:3","text":" @dev See {IGovernor-proposalNeedsQueuing}."},"functionSelector":"a9a95294","id":973,"implemented":true,"kind":"function","modifiers":[],"name":"proposalNeedsQueuing","nameLocation":"8695:20:3","nodeType":"FunctionDefinition","parameters":{"id":966,"nodeType":"ParameterList","parameters":[{"constant":false,"id":965,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":973,"src":"8716:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":964,"name":"uint256","nodeType":"ElementaryTypeName","src":"8716:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8715:9:3"},"returnParameters":{"id":969,"nodeType":"ParameterList","parameters":[{"constant":false,"id":968,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":973,"src":"8754:4:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":967,"name":"bool","nodeType":"ElementaryTypeName","src":"8754:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8753:6:3"},"scope":2338,"src":"8686:103:3","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":1012,"nodeType":"Block","src":"9096:401:3","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":981,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":977,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2039,"src":"9110:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":978,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9110:11:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":979,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"9125:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":980,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9125:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9110:27:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":988,"nodeType":"IfStatement","src":"9106:99:3","trueBody":{"id":987,"nodeType":"Block","src":"9139:66:3","statements":[{"errorCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":983,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"9181:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":984,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9181:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":982,"name":"GovernorOnlyExecutor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2380,"src":"9160:20:3","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":985,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9160:34:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":986,"nodeType":"RevertStatement","src":"9153:41:3"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":989,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2039,"src":"9218:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9218:11:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":993,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"9241:4:3","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}],"id":992,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9233:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":991,"name":"address","nodeType":"ElementaryTypeName","src":"9233:7:3","typeDescriptions":{}}},"id":994,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9233:13:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9218:28:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1011,"nodeType":"IfStatement","src":"9214:277:3","trueBody":{"id":1010,"nodeType":"Block","src":"9248:243:3","statements":[{"assignments":[997],"declarations":[{"constant":false,"id":997,"mutability":"mutable","name":"msgDataHash","nameLocation":"9270:11:3","nodeType":"VariableDeclaration","scope":1010,"src":"9262:19:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":996,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9262:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":1002,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":999,"name":"_msgData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7119,"src":"9294:8:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":1000,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9294:10:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":998,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"9284:9:3","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1001,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9284:21:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"9262:43:3"},{"body":{"id":1008,"nodeType":"Block","src":"9479:2:3","statements":[]},"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1007,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1003,"name":"_governanceCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":626,"src":"9436:15:3","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage","typeString":"struct DoubleEndedQueue.Bytes32Deque storage ref"}},"id":1004,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9452:8:3","memberName":"popFront","nodeType":"MemberAccess","referencedDeclaration":15133,"src":"9436:24:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Bytes32Deque_$14944_storage_ptr_$returns$_t_bytes32_$attached_to$_t_struct$_Bytes32Deque_$14944_storage_ptr_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer) returns (bytes32)"}},"id":1005,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9436:26:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":1006,"name":"msgDataHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":997,"src":"9466:11:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"9436:41:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1009,"nodeType":"WhileStatement","src":"9429:52:3"}]}}]},"documentation":{"id":974,"nodeType":"StructuredDocumentation","src":"8795:251:3","text":" @dev Reverts if the `msg.sender` is not the executor. In case the executor is not this contract\n itself, the function reverts if `msg.data` is not whitelisted as a result of an {execute}\n operation. See {onlyGovernance}."},"id":1013,"implemented":true,"kind":"function","modifiers":[],"name":"_checkGovernance","nameLocation":"9060:16:3","nodeType":"FunctionDefinition","parameters":{"id":975,"nodeType":"ParameterList","parameters":[],"src":"9076:2:3"},"returnParameters":{"id":976,"nodeType":"ParameterList","parameters":[],"src":"9096:0:3"},"scope":2338,"src":"9051:446:3","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"documentation":{"id":1014,"nodeType":"StructuredDocumentation","src":"9503:80:3","text":" @dev Amount of votes already cast passes the threshold limit."},"id":1021,"implemented":false,"kind":"function","modifiers":[],"name":"_quorumReached","nameLocation":"9597:14:3","nodeType":"FunctionDefinition","parameters":{"id":1017,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1016,"mutability":"mutable","name":"proposalId","nameLocation":"9620:10:3","nodeType":"VariableDeclaration","scope":1021,"src":"9612:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1015,"name":"uint256","nodeType":"ElementaryTypeName","src":"9612:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9611:20:3"},"returnParameters":{"id":1020,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1019,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1021,"src":"9663:4:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1018,"name":"bool","nodeType":"ElementaryTypeName","src":"9663:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9662:6:3"},"scope":2338,"src":"9588:81:3","stateMutability":"view","virtual":true,"visibility":"internal"},{"documentation":{"id":1022,"nodeType":"StructuredDocumentation","src":"9675:58:3","text":" @dev Is the proposal successful or not."},"id":1029,"implemented":false,"kind":"function","modifiers":[],"name":"_voteSucceeded","nameLocation":"9747:14:3","nodeType":"FunctionDefinition","parameters":{"id":1025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1024,"mutability":"mutable","name":"proposalId","nameLocation":"9770:10:3","nodeType":"VariableDeclaration","scope":1029,"src":"9762:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1023,"name":"uint256","nodeType":"ElementaryTypeName","src":"9762:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9761:20:3"},"returnParameters":{"id":1028,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1027,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1029,"src":"9813:4:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1026,"name":"bool","nodeType":"ElementaryTypeName","src":"9813:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9812:6:3"},"scope":2338,"src":"9738:81:3","stateMutability":"view","virtual":true,"visibility":"internal"},{"documentation":{"id":1030,"nodeType":"StructuredDocumentation","src":"9825:122:3","text":" @dev Get the voting weight of `account` at a specific `timepoint`, for a vote as described by `params`."},"id":1041,"implemented":false,"kind":"function","modifiers":[],"name":"_getVotes","nameLocation":"9961:9:3","nodeType":"FunctionDefinition","parameters":{"id":1037,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1032,"mutability":"mutable","name":"account","nameLocation":"9979:7:3","nodeType":"VariableDeclaration","scope":1041,"src":"9971:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1031,"name":"address","nodeType":"ElementaryTypeName","src":"9971:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1034,"mutability":"mutable","name":"timepoint","nameLocation":"9996:9:3","nodeType":"VariableDeclaration","scope":1041,"src":"9988:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1033,"name":"uint256","nodeType":"ElementaryTypeName","src":"9988:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1036,"mutability":"mutable","name":"params","nameLocation":"10020:6:3","nodeType":"VariableDeclaration","scope":1041,"src":"10007:19:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1035,"name":"bytes","nodeType":"ElementaryTypeName","src":"10007:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"9970:57:3"},"returnParameters":{"id":1040,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1039,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1041,"src":"10059:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1038,"name":"uint256","nodeType":"ElementaryTypeName","src":"10059:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10058:9:3"},"scope":2338,"src":"9952:116:3","stateMutability":"view","virtual":true,"visibility":"internal"},{"documentation":{"id":1042,"nodeType":"StructuredDocumentation","src":"10074:239:3","text":" @dev Register a vote for `proposalId` by `account` with a given `support`, voting `weight` and voting `params`.\n Note: Support is generic and can represent various things depending on the voting system used."},"id":1057,"implemented":false,"kind":"function","modifiers":[],"name":"_countVote","nameLocation":"10327:10:3","nodeType":"FunctionDefinition","parameters":{"id":1053,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1044,"mutability":"mutable","name":"proposalId","nameLocation":"10355:10:3","nodeType":"VariableDeclaration","scope":1057,"src":"10347:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1043,"name":"uint256","nodeType":"ElementaryTypeName","src":"10347:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1046,"mutability":"mutable","name":"account","nameLocation":"10383:7:3","nodeType":"VariableDeclaration","scope":1057,"src":"10375:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1045,"name":"address","nodeType":"ElementaryTypeName","src":"10375:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1048,"mutability":"mutable","name":"support","nameLocation":"10406:7:3","nodeType":"VariableDeclaration","scope":1057,"src":"10400:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1047,"name":"uint8","nodeType":"ElementaryTypeName","src":"10400:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1050,"mutability":"mutable","name":"totalWeight","nameLocation":"10431:11:3","nodeType":"VariableDeclaration","scope":1057,"src":"10423:19:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1049,"name":"uint256","nodeType":"ElementaryTypeName","src":"10423:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1052,"mutability":"mutable","name":"params","nameLocation":"10465:6:3","nodeType":"VariableDeclaration","scope":1057,"src":"10452:19:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1051,"name":"bytes","nodeType":"ElementaryTypeName","src":"10452:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"10337:140:3"},"returnParameters":{"id":1056,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1055,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1057,"src":"10504:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1054,"name":"uint256","nodeType":"ElementaryTypeName","src":"10504:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10503:9:3"},"scope":2338,"src":"10318:195:3","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1063,"nodeType":"Block","src":"10789:2:3","statements":[]},"documentation":{"id":1058,"nodeType":"StructuredDocumentation","src":"10519:205:3","text":" @dev Hook that should be called every time the tally for a proposal is updated.\n Note: This function must run successfully. Reverts will result in the bricking of governance"},"id":1064,"implemented":true,"kind":"function","modifiers":[],"name":"_tallyUpdated","nameLocation":"10738:13:3","nodeType":"FunctionDefinition","parameters":{"id":1061,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1060,"mutability":"mutable","name":"proposalId","nameLocation":"10760:10:3","nodeType":"VariableDeclaration","scope":1064,"src":"10752:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1059,"name":"uint256","nodeType":"ElementaryTypeName","src":"10752:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10751:20:3"},"returnParameters":{"id":1062,"nodeType":"ParameterList","parameters":[],"src":"10789:0:3"},"scope":2338,"src":"10729:62:3","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1072,"nodeType":"Block","src":"11164:26:3","statements":[{"expression":{"hexValue":"","id":1070,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11181:2:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"functionReturnParameters":1069,"id":1071,"nodeType":"Return","src":"11174:9:3"}]},"documentation":{"id":1065,"nodeType":"StructuredDocumentation","src":"10797:291:3","text":" @dev Default additional encoded parameters used by castVote methods that don't include them\n Note: Should be overridden by specific implementations to use an appropriate value, the\n meaning of the additional params, in the context of that implementation"},"id":1073,"implemented":true,"kind":"function","modifiers":[],"name":"_defaultParams","nameLocation":"11102:14:3","nodeType":"FunctionDefinition","parameters":{"id":1066,"nodeType":"ParameterList","parameters":[],"src":"11116:2:3"},"returnParameters":{"id":1069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1068,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1073,"src":"11150:12:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1067,"name":"bytes","nodeType":"ElementaryTypeName","src":"11150:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"11149:14:3"},"scope":2338,"src":"11093:97:3","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[2691],"body":{"id":1145,"nodeType":"Block","src":"11538:671:3","statements":[{"assignments":[1091],"declarations":[{"constant":false,"id":1091,"mutability":"mutable","name":"proposer","nameLocation":"11556:8:3","nodeType":"VariableDeclaration","scope":1145,"src":"11548:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1090,"name":"address","nodeType":"ElementaryTypeName","src":"11548:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1094,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1092,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"11567:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1093,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11567:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"11548:31:3"},{"condition":{"id":1099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"11635:54:3","subExpression":{"arguments":[{"id":1096,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"11667:8:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1097,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1085,"src":"11677:11:3","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1095,"name":"_isValidDescriptionForProposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2268,"src":"11636:30:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_string_memory_ptr_$returns$_t_bool_$","typeString":"function (address,string memory) view returns (bool)"}},"id":1098,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11636:53:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1105,"nodeType":"IfStatement","src":"11631:128:3","trueBody":{"id":1104,"nodeType":"Block","src":"11691:68:3","statements":[{"errorCall":{"arguments":[{"id":1101,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"11739:8:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1100,"name":"GovernorRestrictedProposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2414,"src":"11712:26:3","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11712:36:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1103,"nodeType":"RevertStatement","src":"11705:43:3"}]}},{"assignments":[1107],"declarations":[{"constant":false,"id":1107,"mutability":"mutable","name":"votesThreshold","nameLocation":"11813:14:3","nodeType":"VariableDeclaration","scope":1145,"src":"11805:22:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1106,"name":"uint256","nodeType":"ElementaryTypeName","src":"11805:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1110,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1108,"name":"proposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":901,"src":"11830:17:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1109,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11830:19:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11805:44:3"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1111,"name":"votesThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1107,"src":"11863:14:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1112,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11880:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11863:18:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1136,"nodeType":"IfStatement","src":"11859:267:3","trueBody":{"id":1135,"nodeType":"Block","src":"11883:243:3","statements":[{"assignments":[1115],"declarations":[{"constant":false,"id":1115,"mutability":"mutable","name":"proposerVotes","nameLocation":"11905:13:3","nodeType":"VariableDeclaration","scope":1135,"src":"11897:21:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1114,"name":"uint256","nodeType":"ElementaryTypeName","src":"11897:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1123,"initialValue":{"arguments":[{"id":1117,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"11930:8:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":1121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1118,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2299,"src":"11940:5:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":1119,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11940:7:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":1120,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11950:1:3","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11940:11:3","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":1116,"name":"getVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1684,"src":"11921:8:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,uint256) view returns (uint256)"}},"id":1122,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11921:31:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11897:55:3"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1124,"name":"proposerVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1115,"src":"11970:13:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":1125,"name":"votesThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1107,"src":"11986:14:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11970:30:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1134,"nodeType":"IfStatement","src":"11966:150:3","trueBody":{"id":1133,"nodeType":"Block","src":"12002:114:3","statements":[{"errorCall":{"arguments":[{"id":1128,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"12061:8:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1129,"name":"proposerVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1115,"src":"12071:13:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1130,"name":"votesThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1107,"src":"12086:14:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1127,"name":"GovernorInsufficientProposerVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2409,"src":"12027:33:3","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":1131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12027:74:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1132,"nodeType":"RevertStatement","src":"12020:81:3"}]}}]}},{"expression":{"arguments":[{"id":1138,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1077,"src":"12152:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1139,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1080,"src":"12161:6:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1140,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1083,"src":"12169:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1141,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1085,"src":"12180:11:3","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":1142,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"12193:8:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1137,"name":"_propose","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1289,"src":"12143:8:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_string_memory_ptr_$_t_address_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,string memory,address) returns (uint256)"}},"id":1143,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12143:59:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1089,"id":1144,"nodeType":"Return","src":"12136:66:3"}]},"documentation":{"id":1074,"nodeType":"StructuredDocumentation","src":"11196:145:3","text":" @dev See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}."},"functionSelector":"7d5e81e2","id":1146,"implemented":true,"kind":"function","modifiers":[],"name":"propose","nameLocation":"11355:7:3","nodeType":"FunctionDefinition","parameters":{"id":1086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1077,"mutability":"mutable","name":"targets","nameLocation":"11389:7:3","nodeType":"VariableDeclaration","scope":1146,"src":"11372:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1075,"name":"address","nodeType":"ElementaryTypeName","src":"11372:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1076,"nodeType":"ArrayTypeName","src":"11372:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1080,"mutability":"mutable","name":"values","nameLocation":"11423:6:3","nodeType":"VariableDeclaration","scope":1146,"src":"11406:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1078,"name":"uint256","nodeType":"ElementaryTypeName","src":"11406:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1079,"nodeType":"ArrayTypeName","src":"11406:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1083,"mutability":"mutable","name":"calldatas","nameLocation":"11454:9:3","nodeType":"VariableDeclaration","scope":1146,"src":"11439:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1081,"name":"bytes","nodeType":"ElementaryTypeName","src":"11439:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1082,"nodeType":"ArrayTypeName","src":"11439:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1085,"mutability":"mutable","name":"description","nameLocation":"11487:11:3","nodeType":"VariableDeclaration","scope":1146,"src":"11473:25:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1084,"name":"string","nodeType":"ElementaryTypeName","src":"11473:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"11362:142:3"},"returnParameters":{"id":1089,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1088,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1146,"src":"11529:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1087,"name":"uint256","nodeType":"ElementaryTypeName","src":"11529:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11528:9:3"},"scope":2338,"src":"11346:863:3","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1288,"nodeType":"Block","src":"12618:1142:3","statements":[{"expression":{"id":1177,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1165,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1163,"src":"12628:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1167,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1150,"src":"12655:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1168,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1153,"src":"12664:6:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1169,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1156,"src":"12672:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"arguments":[{"arguments":[{"id":1173,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1158,"src":"12699:11:3","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1172,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12693:5:3","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":1171,"name":"bytes","nodeType":"ElementaryTypeName","src":"12693:5:3","typeDescriptions":{}}},"id":1174,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12693:18:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1170,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"12683:9:3","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1175,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12683:29:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1166,"name":"getProposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":783,"src":"12641:13:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32) view returns (uint256)"}},"id":1176,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12641:72:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12628:85:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1178,"nodeType":"ExpressionStatement","src":"12628:85:3"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1194,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1189,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1179,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1150,"src":"12728:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12736:6:3","memberName":"length","nodeType":"MemberAccess","src":"12728:14:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":1181,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1153,"src":"12746:6:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1182,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12753:6:3","memberName":"length","nodeType":"MemberAccess","src":"12746:13:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12728:31:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1188,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1184,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1150,"src":"12763:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1185,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12771:6:3","memberName":"length","nodeType":"MemberAccess","src":"12763:14:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":1186,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1156,"src":"12781:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":1187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12791:6:3","memberName":"length","nodeType":"MemberAccess","src":"12781:16:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12763:34:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12728:69:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1190,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1150,"src":"12801:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12809:6:3","memberName":"length","nodeType":"MemberAccess","src":"12801:14:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1192,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12819:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12801:19:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12728:92:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1205,"nodeType":"IfStatement","src":"12724:208:3","trueBody":{"id":1204,"nodeType":"Block","src":"12822:110:3","statements":[{"errorCall":{"arguments":[{"expression":{"id":1196,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1150,"src":"12873:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12881:6:3","memberName":"length","nodeType":"MemberAccess","src":"12873:14:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1198,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1156,"src":"12889:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":1199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12899:6:3","memberName":"length","nodeType":"MemberAccess","src":"12889:16:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1200,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1153,"src":"12907:6:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12914:6:3","memberName":"length","nodeType":"MemberAccess","src":"12907:13:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1195,"name":"GovernorInvalidProposalLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2367,"src":"12843:29:3","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":1202,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12843:78:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1203,"nodeType":"RevertStatement","src":"12836:85:3"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":1211,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1206,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":623,"src":"12945:10:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$596_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":1208,"indexExpression":{"id":1207,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1163,"src":"12956:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12945:22:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":1209,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12968:9:3","memberName":"voteStart","nodeType":"MemberAccess","referencedDeclaration":587,"src":"12945:32:3","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1210,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12981:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12945:37:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1224,"nodeType":"IfStatement","src":"12941:149:3","trueBody":{"id":1223,"nodeType":"Block","src":"12984:106:3","statements":[{"errorCall":{"arguments":[{"id":1213,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1163,"src":"13037:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":1215,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1163,"src":"13055:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1214,"name":"state","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":892,"src":"13049:5:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_enum$_ProposalState_$2358_$","typeString":"function (uint256) view returns (enum IGovernor.ProposalState)"}},"id":1216,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13049:17:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},{"arguments":[{"hexValue":"30","id":1219,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13076:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1218,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13068:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":1217,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13068:7:3","typeDescriptions":{}}},"id":1220,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13068:10:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1212,"name":"GovernorUnexpectedProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2395,"src":"13005:31:3","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_enum$_ProposalState_$2358_$_t_bytes32_$returns$__$","typeString":"function (uint256,enum IGovernor.ProposalState,bytes32) pure"}},"id":1221,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13005:74:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1222,"nodeType":"RevertStatement","src":"12998:81:3"}]}},{"assignments":[1226],"declarations":[{"constant":false,"id":1226,"mutability":"mutable","name":"snapshot","nameLocation":"13108:8:3","nodeType":"VariableDeclaration","scope":1288,"src":"13100:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1225,"name":"uint256","nodeType":"ElementaryTypeName","src":"13100:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1232,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1227,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2299,"src":"13119:5:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":1228,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13119:7:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1229,"name":"votingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2311,"src":"13129:11:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13129:13:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13119:23:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13100:42:3"},{"assignments":[1234],"declarations":[{"constant":false,"id":1234,"mutability":"mutable","name":"duration","nameLocation":"13160:8:3","nodeType":"VariableDeclaration","scope":1288,"src":"13152:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1233,"name":"uint256","nodeType":"ElementaryTypeName","src":"13152:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1237,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1235,"name":"votingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2317,"src":"13171:12:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1236,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13171:14:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13152:33:3"},{"assignments":[1240],"declarations":[{"constant":false,"id":1240,"mutability":"mutable","name":"proposal","nameLocation":"13217:8:3","nodeType":"VariableDeclaration","scope":1288,"src":"13196:29:3","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage_ptr","typeString":"struct Governor.ProposalCore"},"typeName":{"id":1239,"nodeType":"UserDefinedTypeName","pathNode":{"id":1238,"name":"ProposalCore","nameLocations":["13196:12:3"],"nodeType":"IdentifierPath","referencedDeclaration":596,"src":"13196:12:3"},"referencedDeclaration":596,"src":"13196:12:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage_ptr","typeString":"struct Governor.ProposalCore"}},"visibility":"internal"}],"id":1244,"initialValue":{"baseExpression":{"id":1241,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":623,"src":"13228:10:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$596_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":1243,"indexExpression":{"id":1242,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1163,"src":"13239:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13228:22:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage","typeString":"struct Governor.ProposalCore storage ref"}},"nodeType":"VariableDeclarationStatement","src":"13196:54:3"},{"expression":{"id":1249,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1245,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1240,"src":"13260:8:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage_ptr","typeString":"struct Governor.ProposalCore storage pointer"}},"id":1247,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13269:8:3","memberName":"proposer","nodeType":"MemberAccess","referencedDeclaration":585,"src":"13260:17:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1248,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1160,"src":"13280:8:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"13260:28:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1250,"nodeType":"ExpressionStatement","src":"13260:28:3"},{"expression":{"id":1258,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1251,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1240,"src":"13298:8:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage_ptr","typeString":"struct Governor.ProposalCore storage pointer"}},"id":1253,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13307:9:3","memberName":"voteStart","nodeType":"MemberAccess","referencedDeclaration":587,"src":"13298:18:3","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1256,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1226,"src":"13337:8:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1254,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"13319:8:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":1255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13328:8:3","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":12194,"src":"13319:17:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":1257,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13319:27:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"13298:48:3","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":1259,"nodeType":"ExpressionStatement","src":"13298:48:3"},{"expression":{"id":1267,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1260,"name":"proposal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1240,"src":"13356:8:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage_ptr","typeString":"struct Governor.ProposalCore storage pointer"}},"id":1262,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13365:12:3","memberName":"voteDuration","nodeType":"MemberAccess","referencedDeclaration":589,"src":"13356:21:3","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1265,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1234,"src":"13398:8:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1263,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"13380:8:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":1264,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13389:8:3","memberName":"toUint32","nodeType":"MemberAccess","referencedDeclaration":12250,"src":"13380:17:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint256) pure returns (uint32)"}},"id":1266,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13380:27:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"13356:51:3","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":1268,"nodeType":"ExpressionStatement","src":"13356:51:3"},{"eventCall":{"arguments":[{"id":1270,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1163,"src":"13452:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1271,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1160,"src":"13476:8:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1272,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1150,"src":"13498:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1273,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1153,"src":"13519:6:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"arguments":[{"expression":{"id":1277,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1150,"src":"13552:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13560:6:3","memberName":"length","nodeType":"MemberAccess","src":"13552:14:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1276,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"13539:12:3","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (string memory[] memory)"},"typeName":{"baseType":{"id":1274,"name":"string","nodeType":"ElementaryTypeName","src":"13543:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":1275,"nodeType":"ArrayTypeName","src":"13543:8:3","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}}},"id":1279,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13539:28:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},{"id":1280,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1156,"src":"13581:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1281,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1226,"src":"13604:8:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1282,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1226,"src":"13626:8:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1283,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1234,"src":"13637:8:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13626:19:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1285,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1158,"src":"13659:11:3","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1269,"name":"ProposalCreated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2470,"src":"13423:15:3","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_uint256_$_t_uint256_$_t_string_memory_ptr_$returns$__$","typeString":"function (uint256,address,address[] memory,uint256[] memory,string memory[] memory,bytes memory[] memory,uint256,uint256,string memory)"}},"id":1286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13423:257:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1287,"nodeType":"EmitStatement","src":"13418:262:3"}]},"documentation":{"id":1147,"nodeType":"StructuredDocumentation","src":"12215:166:3","text":" @dev Internal propose mechanism. Can be overridden to add more logic on proposal creation.\n Emits a {IGovernor-ProposalCreated} event."},"id":1289,"implemented":true,"kind":"function","modifiers":[],"name":"_propose","nameLocation":"12395:8:3","nodeType":"FunctionDefinition","parameters":{"id":1161,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1150,"mutability":"mutable","name":"targets","nameLocation":"12430:7:3","nodeType":"VariableDeclaration","scope":1289,"src":"12413:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1148,"name":"address","nodeType":"ElementaryTypeName","src":"12413:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1149,"nodeType":"ArrayTypeName","src":"12413:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1153,"mutability":"mutable","name":"values","nameLocation":"12464:6:3","nodeType":"VariableDeclaration","scope":1289,"src":"12447:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1151,"name":"uint256","nodeType":"ElementaryTypeName","src":"12447:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1152,"nodeType":"ArrayTypeName","src":"12447:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1156,"mutability":"mutable","name":"calldatas","nameLocation":"12495:9:3","nodeType":"VariableDeclaration","scope":1289,"src":"12480:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1154,"name":"bytes","nodeType":"ElementaryTypeName","src":"12480:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1155,"nodeType":"ArrayTypeName","src":"12480:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1158,"mutability":"mutable","name":"description","nameLocation":"12528:11:3","nodeType":"VariableDeclaration","scope":1289,"src":"12514:25:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1157,"name":"string","nodeType":"ElementaryTypeName","src":"12514:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1160,"mutability":"mutable","name":"proposer","nameLocation":"12557:8:3","nodeType":"VariableDeclaration","scope":1289,"src":"12549:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1159,"name":"address","nodeType":"ElementaryTypeName","src":"12549:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"12403:168:3"},"returnParameters":{"id":1164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1163,"mutability":"mutable","name":"proposalId","nameLocation":"12606:10:3","nodeType":"VariableDeclaration","scope":1289,"src":"12598:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1162,"name":"uint256","nodeType":"ElementaryTypeName","src":"12598:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12597:20:3"},"scope":2338,"src":"12386:1374:3","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[2708],"body":{"id":1356,"nodeType":"Block","src":"14005:542:3","statements":[{"assignments":[1307],"declarations":[{"constant":false,"id":1307,"mutability":"mutable","name":"proposalId","nameLocation":"14023:10:3","nodeType":"VariableDeclaration","scope":1356,"src":"14015:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1306,"name":"uint256","nodeType":"ElementaryTypeName","src":"14015:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1314,"initialValue":{"arguments":[{"id":1309,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1293,"src":"14050:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1310,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1296,"src":"14059:6:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1311,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1299,"src":"14067:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1312,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1301,"src":"14078:15:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1308,"name":"getProposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":783,"src":"14036:13:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32) view returns (uint256)"}},"id":1313,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14036:58:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"14015:79:3"},{"expression":{"arguments":[{"id":1316,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1307,"src":"14126:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"expression":{"id":1318,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"14157:13:3","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1319,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14171:9:3","memberName":"Succeeded","nodeType":"MemberAccess","referencedDeclaration":2354,"src":"14157:23:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}],"id":1317,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2158,"src":"14138:18:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2358_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1320,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14138:43:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1315,"name":"_validateStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2197,"src":"14105:20:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_bytes32_$returns$_t_enum$_ProposalState_$2358_$","typeString":"function (uint256,bytes32) view returns (enum IGovernor.ProposalState)"}},"id":1321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14105:77:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"id":1322,"nodeType":"ExpressionStatement","src":"14105:77:3"},{"assignments":[1324],"declarations":[{"constant":false,"id":1324,"mutability":"mutable","name":"etaSeconds","nameLocation":"14200:10:3","nodeType":"VariableDeclaration","scope":1356,"src":"14193:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":1323,"name":"uint48","nodeType":"ElementaryTypeName","src":"14193:6:3","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":1332,"initialValue":{"arguments":[{"id":1326,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1307,"src":"14230:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1327,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1293,"src":"14242:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1328,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1296,"src":"14251:6:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1329,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1299,"src":"14259:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1330,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1301,"src":"14270:15:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1325,"name":"_queueOperations","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1379,"src":"14213:16:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint48_$","typeString":"function (uint256,address[] memory,uint256[] memory,bytes memory[] memory,bytes32) returns (uint48)"}},"id":1331,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14213:73:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"14193:93:3"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":1335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1333,"name":"etaSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"14301:10:3","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1334,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14315:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14301:15:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1352,"nodeType":"Block","src":"14452:61:3","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":1349,"name":"GovernorQueueNotImplemented","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2423,"src":"14473:27:3","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":1350,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14473:29:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1351,"nodeType":"RevertStatement","src":"14466:36:3"}]},"id":1353,"nodeType":"IfStatement","src":"14297:216:3","trueBody":{"id":1348,"nodeType":"Block","src":"14318:128:3","statements":[{"expression":{"id":1341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1336,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":623,"src":"14332:10:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$596_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":1338,"indexExpression":{"id":1337,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1307,"src":"14343:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14332:22:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":1339,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14355:10:3","memberName":"etaSeconds","nodeType":"MemberAccess","referencedDeclaration":595,"src":"14332:33:3","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1340,"name":"etaSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"14368:10:3","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"14332:46:3","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":1342,"nodeType":"ExpressionStatement","src":"14332:46:3"},{"eventCall":{"arguments":[{"id":1344,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1307,"src":"14412:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1345,"name":"etaSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"14424:10:3","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":1343,"name":"ProposalQueued","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2477,"src":"14397:14:3","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":1346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14397:38:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1347,"nodeType":"EmitStatement","src":"14392:43:3"}]}},{"expression":{"id":1354,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1307,"src":"14530:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1305,"id":1355,"nodeType":"Return","src":"14523:17:3"}]},"documentation":{"id":1290,"nodeType":"StructuredDocumentation","src":"13766:46:3","text":" @dev See {IGovernor-queue}."},"functionSelector":"160cbed7","id":1357,"implemented":true,"kind":"function","modifiers":[],"name":"queue","nameLocation":"13826:5:3","nodeType":"FunctionDefinition","parameters":{"id":1302,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1293,"mutability":"mutable","name":"targets","nameLocation":"13858:7:3","nodeType":"VariableDeclaration","scope":1357,"src":"13841:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1291,"name":"address","nodeType":"ElementaryTypeName","src":"13841:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1292,"nodeType":"ArrayTypeName","src":"13841:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1296,"mutability":"mutable","name":"values","nameLocation":"13892:6:3","nodeType":"VariableDeclaration","scope":1357,"src":"13875:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1294,"name":"uint256","nodeType":"ElementaryTypeName","src":"13875:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1295,"nodeType":"ArrayTypeName","src":"13875:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1299,"mutability":"mutable","name":"calldatas","nameLocation":"13923:9:3","nodeType":"VariableDeclaration","scope":1357,"src":"13908:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1297,"name":"bytes","nodeType":"ElementaryTypeName","src":"13908:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1298,"nodeType":"ArrayTypeName","src":"13908:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1301,"mutability":"mutable","name":"descriptionHash","nameLocation":"13950:15:3","nodeType":"VariableDeclaration","scope":1357,"src":"13942:23:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1300,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13942:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"13831:140:3"},"returnParameters":{"id":1305,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1304,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1357,"src":"13996:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1303,"name":"uint256","nodeType":"ElementaryTypeName","src":"13996:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13995:9:3"},"scope":2338,"src":"13817:730:3","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1378,"nodeType":"Block","src":"15521:25:3","statements":[{"expression":{"hexValue":"30","id":1376,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15538:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":1375,"id":1377,"nodeType":"Return","src":"15531:8:3"}]},"documentation":{"id":1358,"nodeType":"StructuredDocumentation","src":"14553:715:3","text":" @dev Internal queuing mechanism. Can be overridden (without a super call) to modify the way queuing is\n performed (for example adding a vault/timelock).\n This is empty by default, and must be overridden to implement queuing.\n This function returns a timestamp that describes the expected ETA for execution. If the returned value is 0\n (which is the default value), the core will consider queueing did not succeed, and the public {queue} function\n will revert.\n NOTE: Calling this function directly will NOT check the current state of the proposal, or emit the\n `ProposalQueued` event. Queuing a proposal should be done using {queue}."},"id":1379,"implemented":true,"kind":"function","modifiers":[],"name":"_queueOperations","nameLocation":"15282:16:3","nodeType":"FunctionDefinition","parameters":{"id":1372,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1360,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1379,"src":"15308:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1359,"name":"uint256","nodeType":"ElementaryTypeName","src":"15308:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1363,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1379,"src":"15340:16:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1361,"name":"address","nodeType":"ElementaryTypeName","src":"15340:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1362,"nodeType":"ArrayTypeName","src":"15340:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1366,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1379,"src":"15378:16:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1364,"name":"uint256","nodeType":"ElementaryTypeName","src":"15378:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1365,"nodeType":"ArrayTypeName","src":"15378:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1369,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1379,"src":"15415:14:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1367,"name":"bytes","nodeType":"ElementaryTypeName","src":"15415:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1368,"nodeType":"ArrayTypeName","src":"15415:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1371,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1379,"src":"15453:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1370,"name":"bytes32","nodeType":"ElementaryTypeName","src":"15453:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"15298:188:3"},"returnParameters":{"id":1375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1374,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1379,"src":"15513:6:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":1373,"name":"uint48","nodeType":"ElementaryTypeName","src":"15513:6:3","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"15512:8:3"},"scope":2338,"src":"15273:273:3","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[2725],"body":{"id":1500,"nodeType":"Block","src":"15803:1036:3","statements":[{"assignments":[1397],"declarations":[{"constant":false,"id":1397,"mutability":"mutable","name":"proposalId","nameLocation":"15821:10:3","nodeType":"VariableDeclaration","scope":1500,"src":"15813:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1396,"name":"uint256","nodeType":"ElementaryTypeName","src":"15813:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1404,"initialValue":{"arguments":[{"id":1399,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1383,"src":"15848:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1400,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1386,"src":"15857:6:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1401,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1389,"src":"15865:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1402,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1391,"src":"15876:15:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1398,"name":"getProposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":783,"src":"15834:13:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32) view returns (uint256)"}},"id":1403,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15834:58:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15813:79:3"},{"expression":{"arguments":[{"id":1406,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1397,"src":"15937:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1415,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":1408,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"15980:13:3","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1409,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15994:9:3","memberName":"Succeeded","nodeType":"MemberAccess","referencedDeclaration":2354,"src":"15980:23:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}],"id":1407,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2158,"src":"15961:18:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2358_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1410,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15961:43:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"arguments":[{"expression":{"id":1412,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"16026:13:3","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1413,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16040:6:3","memberName":"Queued","nodeType":"MemberAccess","referencedDeclaration":2355,"src":"16026:20:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}],"id":1411,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2158,"src":"16007:18:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2358_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1414,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16007:40:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"15961:86:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1405,"name":"_validateStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2197,"src":"15903:20:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_bytes32_$returns$_t_enum$_ProposalState_$2358_$","typeString":"function (uint256,bytes32) view returns (enum IGovernor.ProposalState)"}},"id":1416,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15903:154:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"id":1417,"nodeType":"ExpressionStatement","src":"15903:154:3"},{"expression":{"id":1423,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1418,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":623,"src":"16129:10:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$596_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":1420,"indexExpression":{"id":1419,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1397,"src":"16140:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16129:22:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":1421,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16152:8:3","memberName":"executed","nodeType":"MemberAccess","referencedDeclaration":591,"src":"16129:31:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1422,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"16163:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"16129:38:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1424,"nodeType":"ExpressionStatement","src":"16129:38:3"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1425,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2039,"src":"16244:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1426,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16244:11:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":1429,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"16267:4:3","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}],"id":1428,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16259:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1427,"name":"address","nodeType":"ElementaryTypeName","src":"16259:7:3","typeDescriptions":{}}},"id":1430,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16259:13:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16244:28:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1466,"nodeType":"IfStatement","src":"16240:258:3","trueBody":{"id":1465,"nodeType":"Block","src":"16274:224:3","statements":[{"body":{"id":1463,"nodeType":"Block","src":"16333:155:3","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":1443,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1383,"src":"16355:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1445,"indexExpression":{"id":1444,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1433,"src":"16363:1:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16355:10:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":1448,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"16377:4:3","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}],"id":1447,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16369:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1446,"name":"address","nodeType":"ElementaryTypeName","src":"16369:7:3","typeDescriptions":{}}},"id":1449,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16369:13:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16355:27:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1462,"nodeType":"IfStatement","src":"16351:123:3","trueBody":{"id":1461,"nodeType":"Block","src":"16384:90:3","statements":[{"expression":{"arguments":[{"arguments":[{"baseExpression":{"id":1455,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1389,"src":"16441:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":1457,"indexExpression":{"id":1456,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1433,"src":"16451:1:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16441:12:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1454,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"16431:9:3","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16431:23:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":1451,"name":"_governanceCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":626,"src":"16406:15:3","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage","typeString":"struct DoubleEndedQueue.Bytes32Deque storage ref"}},"id":1453,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16422:8:3","memberName":"pushBack","nodeType":"MemberAccess","referencedDeclaration":14990,"src":"16406:24:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Bytes32Deque_$14944_storage_ptr_$_t_bytes32_$returns$__$attached_to$_t_struct$_Bytes32Deque_$14944_storage_ptr_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer,bytes32)"}},"id":1459,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16406:49:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1460,"nodeType":"ExpressionStatement","src":"16406:49:3"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1436,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1433,"src":"16308:1:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":1437,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1383,"src":"16312:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16320:6:3","memberName":"length","nodeType":"MemberAccess","src":"16312:14:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16308:18:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1464,"initializationExpression":{"assignments":[1433],"declarations":[{"constant":false,"id":1433,"mutability":"mutable","name":"i","nameLocation":"16301:1:3","nodeType":"VariableDeclaration","scope":1464,"src":"16293:9:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1432,"name":"uint256","nodeType":"ElementaryTypeName","src":"16293:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1435,"initialValue":{"hexValue":"30","id":1434,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16305:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"16293:13:3"},"loopExpression":{"expression":{"id":1441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"16328:3:3","subExpression":{"id":1440,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1433,"src":"16330:1:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1442,"nodeType":"ExpressionStatement","src":"16328:3:3"},"nodeType":"ForStatement","src":"16288:200:3"}]}},{"expression":{"arguments":[{"id":1468,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1397,"src":"16527:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1469,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1383,"src":"16539:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1470,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1386,"src":"16548:6:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1471,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1389,"src":"16556:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1472,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1391,"src":"16567:15:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1467,"name":"_executeOperations","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1556,"src":"16508:18:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$__$","typeString":"function (uint256,address[] memory,uint256[] memory,bytes memory[] memory,bytes32)"}},"id":1473,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16508:75:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1474,"nodeType":"ExpressionStatement","src":"16508:75:3"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1486,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1475,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2039,"src":"16655:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1476,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16655:11:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":1479,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"16678:4:3","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}],"id":1478,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16670:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1477,"name":"address","nodeType":"ElementaryTypeName","src":"16670:7:3","typeDescriptions":{}}},"id":1480,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16670:13:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16655:28:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":1485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"16687:24:3","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1482,"name":"_governanceCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":626,"src":"16688:15:3","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage","typeString":"struct DoubleEndedQueue.Bytes32Deque storage ref"}},"id":1483,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16704:5:3","memberName":"empty","nodeType":"MemberAccess","referencedDeclaration":15283,"src":"16688:21:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Bytes32Deque_$14944_storage_ptr_$returns$_t_bool_$attached_to$_t_struct$_Bytes32Deque_$14944_storage_ptr_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer) view returns (bool)"}},"id":1484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16688:23:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16655:56:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1493,"nodeType":"IfStatement","src":"16651:110:3","trueBody":{"id":1492,"nodeType":"Block","src":"16713:48:3","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1487,"name":"_governanceCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":626,"src":"16727:15:3","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage","typeString":"struct DoubleEndedQueue.Bytes32Deque storage ref"}},"id":1489,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16743:5:3","memberName":"clear","nodeType":"MemberAccess","referencedDeclaration":15247,"src":"16727:21:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Bytes32Deque_$14944_storage_ptr_$returns$__$attached_to$_t_struct$_Bytes32Deque_$14944_storage_ptr_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer)"}},"id":1490,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16727:23:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1491,"nodeType":"ExpressionStatement","src":"16727:23:3"}]}},{"eventCall":{"arguments":[{"id":1495,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1397,"src":"16793:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1494,"name":"ProposalExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2482,"src":"16776:16:3","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":1496,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16776:28:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1497,"nodeType":"EmitStatement","src":"16771:33:3"},{"expression":{"id":1498,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1397,"src":"16822:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1395,"id":1499,"nodeType":"Return","src":"16815:17:3"}]},"documentation":{"id":1380,"nodeType":"StructuredDocumentation","src":"15552:48:3","text":" @dev See {IGovernor-execute}."},"functionSelector":"2656227d","id":1501,"implemented":true,"kind":"function","modifiers":[],"name":"execute","nameLocation":"15614:7:3","nodeType":"FunctionDefinition","parameters":{"id":1392,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1383,"mutability":"mutable","name":"targets","nameLocation":"15648:7:3","nodeType":"VariableDeclaration","scope":1501,"src":"15631:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1381,"name":"address","nodeType":"ElementaryTypeName","src":"15631:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1382,"nodeType":"ArrayTypeName","src":"15631:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1386,"mutability":"mutable","name":"values","nameLocation":"15682:6:3","nodeType":"VariableDeclaration","scope":1501,"src":"15665:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1384,"name":"uint256","nodeType":"ElementaryTypeName","src":"15665:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1385,"nodeType":"ArrayTypeName","src":"15665:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1389,"mutability":"mutable","name":"calldatas","nameLocation":"15713:9:3","nodeType":"VariableDeclaration","scope":1501,"src":"15698:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1387,"name":"bytes","nodeType":"ElementaryTypeName","src":"15698:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1388,"nodeType":"ArrayTypeName","src":"15698:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1391,"mutability":"mutable","name":"descriptionHash","nameLocation":"15740:15:3","nodeType":"VariableDeclaration","scope":1501,"src":"15732:23:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1390,"name":"bytes32","nodeType":"ElementaryTypeName","src":"15732:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"15621:140:3"},"returnParameters":{"id":1395,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1394,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1501,"src":"15794:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1393,"name":"uint256","nodeType":"ElementaryTypeName","src":"15794:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15793:9:3"},"scope":2338,"src":"15605:1234:3","stateMutability":"payable","virtual":true,"visibility":"public"},{"body":{"id":1555,"nodeType":"Block","src":"17483:234:3","statements":[{"body":{"id":1553,"nodeType":"Block","src":"17538:173:3","statements":[{"assignments":[1530,1532],"declarations":[{"constant":false,"id":1530,"mutability":"mutable","name":"success","nameLocation":"17558:7:3","nodeType":"VariableDeclaration","scope":1553,"src":"17553:12:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1529,"name":"bool","nodeType":"ElementaryTypeName","src":"17553:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1532,"mutability":"mutable","name":"returndata","nameLocation":"17580:10:3","nodeType":"VariableDeclaration","scope":1553,"src":"17567:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1531,"name":"bytes","nodeType":"ElementaryTypeName","src":"17567:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1545,"initialValue":{"arguments":[{"baseExpression":{"id":1541,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1513,"src":"17628:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":1543,"indexExpression":{"id":1542,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1519,"src":"17638:1:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17628:12:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"baseExpression":{"id":1533,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1507,"src":"17594:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1535,"indexExpression":{"id":1534,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1519,"src":"17602:1:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17594:10:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17605:4:3","memberName":"call","nodeType":"MemberAccess","src":"17594:15:3","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":1540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"baseExpression":{"id":1537,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1510,"src":"17617:6:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":1539,"indexExpression":{"id":1538,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1519,"src":"17624:1:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17617:9:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"17594:33:3","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":1544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17594:47:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"17552:89:3"},{"expression":{"arguments":[{"id":1549,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1530,"src":"17680:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":1550,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1532,"src":"17689:10:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":1546,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7098,"src":"17655:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$7098_$","typeString":"type(library Address)"}},"id":1548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17663:16:3","memberName":"verifyCallResult","nodeType":"MemberAccess","referencedDeclaration":7077,"src":"17655:24:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (bool,bytes memory) pure returns (bytes memory)"}},"id":1551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17655:45:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1552,"nodeType":"ExpressionStatement","src":"17655:45:3"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1522,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1519,"src":"17513:1:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":1523,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1507,"src":"17517:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":1524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17525:6:3","memberName":"length","nodeType":"MemberAccess","src":"17517:14:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17513:18:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1554,"initializationExpression":{"assignments":[1519],"declarations":[{"constant":false,"id":1519,"mutability":"mutable","name":"i","nameLocation":"17506:1:3","nodeType":"VariableDeclaration","scope":1554,"src":"17498:9:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1518,"name":"uint256","nodeType":"ElementaryTypeName","src":"17498:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1521,"initialValue":{"hexValue":"30","id":1520,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17510:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"17498:13:3"},"loopExpression":{"expression":{"id":1527,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"17533:3:3","subExpression":{"id":1526,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1519,"src":"17535:1:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1528,"nodeType":"ExpressionStatement","src":"17533:3:3"},"nodeType":"ForStatement","src":"17493:218:3"}]},"documentation":{"id":1502,"nodeType":"StructuredDocumentation","src":"16845:410:3","text":" @dev Internal execution mechanism. Can be overridden (without a super call) to modify the way execution is\n performed (for example adding a vault/timelock).\n NOTE: Calling this function directly will NOT check the current state of the proposal, set the executed flag to\n true or emit the `ProposalExecuted` event. Executing a proposal should be done using {execute}."},"id":1556,"implemented":true,"kind":"function","modifiers":[],"name":"_executeOperations","nameLocation":"17269:18:3","nodeType":"FunctionDefinition","parameters":{"id":1516,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1504,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1556,"src":"17297:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1503,"name":"uint256","nodeType":"ElementaryTypeName","src":"17297:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1507,"mutability":"mutable","name":"targets","nameLocation":"17348:7:3","nodeType":"VariableDeclaration","scope":1556,"src":"17331:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1505,"name":"address","nodeType":"ElementaryTypeName","src":"17331:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1506,"nodeType":"ArrayTypeName","src":"17331:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1510,"mutability":"mutable","name":"values","nameLocation":"17382:6:3","nodeType":"VariableDeclaration","scope":1556,"src":"17365:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1508,"name":"uint256","nodeType":"ElementaryTypeName","src":"17365:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1509,"nodeType":"ArrayTypeName","src":"17365:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1513,"mutability":"mutable","name":"calldatas","nameLocation":"17413:9:3","nodeType":"VariableDeclaration","scope":1556,"src":"17398:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1511,"name":"bytes","nodeType":"ElementaryTypeName","src":"17398:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1512,"nodeType":"ArrayTypeName","src":"17398:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1515,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1556,"src":"17432:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1514,"name":"bytes32","nodeType":"ElementaryTypeName","src":"17432:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"17287:178:3"},"returnParameters":{"id":1517,"nodeType":"ParameterList","parameters":[],"src":"17483:0:3"},"scope":2338,"src":"17260:457:3","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[2742],"body":{"id":1605,"nodeType":"Block","src":"17964:639:3","statements":[{"assignments":[1574],"declarations":[{"constant":false,"id":1574,"mutability":"mutable","name":"proposalId","nameLocation":"18314:10:3","nodeType":"VariableDeclaration","scope":1605,"src":"18306:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1573,"name":"uint256","nodeType":"ElementaryTypeName","src":"18306:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1581,"initialValue":{"arguments":[{"id":1576,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1560,"src":"18341:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1577,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1563,"src":"18350:6:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1578,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1566,"src":"18358:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1579,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1568,"src":"18369:15:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1575,"name":"getProposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":783,"src":"18327:13:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32) view returns (uint256)"}},"id":1580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18327:58:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18306:79:3"},{"assignments":[1583],"declarations":[{"constant":false,"id":1583,"mutability":"mutable","name":"caller","nameLocation":"18404:6:3","nodeType":"VariableDeclaration","scope":1605,"src":"18396:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1582,"name":"address","nodeType":"ElementaryTypeName","src":"18396:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1586,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1584,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"18413:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1585,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18413:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"18396:29:3"},{"condition":{"id":1591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"18439:36:3","subExpression":{"arguments":[{"id":1588,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1574,"src":"18456:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1589,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1583,"src":"18468:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1587,"name":"_validateCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2293,"src":"18440:15:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_address_$returns$_t_bool_$","typeString":"function (uint256,address) view returns (bool)"}},"id":1590,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18440:35:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1597,"nodeType":"IfStatement","src":"18435:91:3","trueBody":{"errorCall":{"arguments":[{"id":1593,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1574,"src":"18507:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1594,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1583,"src":"18519:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1592,"name":"GovernorUnableToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2445,"src":"18484:22:3","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_address_$returns$__$","typeString":"function (uint256,address) pure"}},"id":1595,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18484:42:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1596,"nodeType":"RevertStatement","src":"18477:49:3"}},{"expression":{"arguments":[{"id":1599,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1560,"src":"18552:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1600,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1563,"src":"18561:6:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1601,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1566,"src":"18569:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1602,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1568,"src":"18580:15:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1598,"name":"_cancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1666,"src":"18544:7:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32) returns (uint256)"}},"id":1603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18544:52:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1572,"id":1604,"nodeType":"Return","src":"18537:59:3"}]},"documentation":{"id":1557,"nodeType":"StructuredDocumentation","src":"17723:47:3","text":" @dev See {IGovernor-cancel}."},"functionSelector":"452115d6","id":1606,"implemented":true,"kind":"function","modifiers":[],"name":"cancel","nameLocation":"17784:6:3","nodeType":"FunctionDefinition","parameters":{"id":1569,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1560,"mutability":"mutable","name":"targets","nameLocation":"17817:7:3","nodeType":"VariableDeclaration","scope":1606,"src":"17800:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1558,"name":"address","nodeType":"ElementaryTypeName","src":"17800:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1559,"nodeType":"ArrayTypeName","src":"17800:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1563,"mutability":"mutable","name":"values","nameLocation":"17851:6:3","nodeType":"VariableDeclaration","scope":1606,"src":"17834:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1561,"name":"uint256","nodeType":"ElementaryTypeName","src":"17834:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1562,"nodeType":"ArrayTypeName","src":"17834:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1566,"mutability":"mutable","name":"calldatas","nameLocation":"17882:9:3","nodeType":"VariableDeclaration","scope":1606,"src":"17867:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1564,"name":"bytes","nodeType":"ElementaryTypeName","src":"17867:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1565,"nodeType":"ArrayTypeName","src":"17867:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1568,"mutability":"mutable","name":"descriptionHash","nameLocation":"17909:15:3","nodeType":"VariableDeclaration","scope":1606,"src":"17901:23:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1567,"name":"bytes32","nodeType":"ElementaryTypeName","src":"17901:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"17790:140:3"},"returnParameters":{"id":1572,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1571,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1606,"src":"17955:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1570,"name":"uint256","nodeType":"ElementaryTypeName","src":"17955:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17954:9:3"},"scope":2338,"src":"17775:828:3","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1665,"nodeType":"Block","src":"19080:503:3","statements":[{"assignments":[1624],"declarations":[{"constant":false,"id":1624,"mutability":"mutable","name":"proposalId","nameLocation":"19098:10:3","nodeType":"VariableDeclaration","scope":1665,"src":"19090:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1623,"name":"uint256","nodeType":"ElementaryTypeName","src":"19090:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1631,"initialValue":{"arguments":[{"id":1626,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1610,"src":"19125:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":1627,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1613,"src":"19134:6:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":1628,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1616,"src":"19142:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":1629,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1618,"src":"19153:15:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1625,"name":"getProposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":783,"src":"19111:13:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32) view returns (uint256)"}},"id":1630,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19111:58:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"19090:79:3"},{"expression":{"arguments":[{"id":1633,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1624,"src":"19214:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1649,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1644,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1634,"name":"ALL_PROPOSAL_STATES_BITMAP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":616,"src":"19238:26:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"arguments":[{"expression":{"id":1636,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"19302:13:3","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1637,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19316:8:3","memberName":"Canceled","nodeType":"MemberAccess","referencedDeclaration":2352,"src":"19302:22:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}],"id":1635,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2158,"src":"19283:18:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2358_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1638,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19283:42:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"19238:87:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"arguments":[{"expression":{"id":1641,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"19363:13:3","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1642,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19377:7:3","memberName":"Expired","nodeType":"MemberAccess","referencedDeclaration":2356,"src":"19363:21:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}],"id":1640,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2158,"src":"19344:18:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2358_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1643,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19344:41:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"19238:147:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"arguments":[{"expression":{"id":1646,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"19423:13:3","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1647,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19437:8:3","memberName":"Executed","nodeType":"MemberAccess","referencedDeclaration":2357,"src":"19423:22:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}],"id":1645,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2158,"src":"19404:18:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2358_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1648,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19404:42:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"19238:208:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1632,"name":"_validateStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2197,"src":"19180:20:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_bytes32_$returns$_t_enum$_ProposalState_$2358_$","typeString":"function (uint256,bytes32) view returns (enum IGovernor.ProposalState)"}},"id":1650,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19180:276:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"id":1651,"nodeType":"ExpressionStatement","src":"19180:276:3"},{"expression":{"id":1657,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1652,"name":"_proposals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":623,"src":"19467:10:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalCore_$596_storage_$","typeString":"mapping(uint256 => struct Governor.ProposalCore storage ref)"}},"id":1654,"indexExpression":{"id":1653,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1624,"src":"19478:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19467:22:3","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalCore_$596_storage","typeString":"struct Governor.ProposalCore storage ref"}},"id":1655,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"19490:8:3","memberName":"canceled","nodeType":"MemberAccess","referencedDeclaration":593,"src":"19467:31:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1656,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"19501:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"19467:38:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1658,"nodeType":"ExpressionStatement","src":"19467:38:3"},{"eventCall":{"arguments":[{"id":1660,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1624,"src":"19537:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1659,"name":"ProposalCanceled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2487,"src":"19520:16:3","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":1661,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19520:28:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1662,"nodeType":"EmitStatement","src":"19515:33:3"},{"expression":{"id":1663,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1624,"src":"19566:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1622,"id":1664,"nodeType":"Return","src":"19559:17:3"}]},"documentation":{"id":1607,"nodeType":"StructuredDocumentation","src":"18609:274:3","text":" @dev Internal cancel mechanism with minimal restrictions. A proposal can be cancelled in any state other than\n Canceled, Expired, or Executed. Once cancelled a proposal can't be re-submitted.\n Emits a {IGovernor-ProposalCanceled} event."},"id":1666,"implemented":true,"kind":"function","modifiers":[],"name":"_cancel","nameLocation":"18897:7:3","nodeType":"FunctionDefinition","parameters":{"id":1619,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1610,"mutability":"mutable","name":"targets","nameLocation":"18931:7:3","nodeType":"VariableDeclaration","scope":1666,"src":"18914:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1608,"name":"address","nodeType":"ElementaryTypeName","src":"18914:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1609,"nodeType":"ArrayTypeName","src":"18914:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1613,"mutability":"mutable","name":"values","nameLocation":"18965:6:3","nodeType":"VariableDeclaration","scope":1666,"src":"18948:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":1611,"name":"uint256","nodeType":"ElementaryTypeName","src":"18948:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1612,"nodeType":"ArrayTypeName","src":"18948:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":1616,"mutability":"mutable","name":"calldatas","nameLocation":"18996:9:3","nodeType":"VariableDeclaration","scope":1666,"src":"18981:24:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":1614,"name":"bytes","nodeType":"ElementaryTypeName","src":"18981:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":1615,"nodeType":"ArrayTypeName","src":"18981:7:3","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":1618,"mutability":"mutable","name":"descriptionHash","nameLocation":"19023:15:3","nodeType":"VariableDeclaration","scope":1666,"src":"19015:23:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1617,"name":"bytes32","nodeType":"ElementaryTypeName","src":"19015:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"18904:140:3"},"returnParameters":{"id":1622,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1621,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1666,"src":"19071:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1620,"name":"uint256","nodeType":"ElementaryTypeName","src":"19071:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19070:9:3"},"scope":2338,"src":"18888:695:3","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[2652],"body":{"id":1683,"nodeType":"Block","src":"19735:71:3","statements":[{"expression":{"arguments":[{"id":1677,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1669,"src":"19762:7:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1678,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1671,"src":"19771:9:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":1679,"name":"_defaultParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1073,"src":"19782:14:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_memory_ptr_$","typeString":"function () view returns (bytes memory)"}},"id":1680,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19782:16:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1676,"name":"_getVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1041,"src":"19752:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (address,uint256,bytes memory) view returns (uint256)"}},"id":1681,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19752:47:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1675,"id":1682,"nodeType":"Return","src":"19745:54:3"}]},"documentation":{"id":1667,"nodeType":"StructuredDocumentation","src":"19589:49:3","text":" @dev See {IGovernor-getVotes}."},"functionSelector":"eb9019d4","id":1684,"implemented":true,"kind":"function","modifiers":[],"name":"getVotes","nameLocation":"19652:8:3","nodeType":"FunctionDefinition","parameters":{"id":1672,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1669,"mutability":"mutable","name":"account","nameLocation":"19669:7:3","nodeType":"VariableDeclaration","scope":1684,"src":"19661:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1668,"name":"address","nodeType":"ElementaryTypeName","src":"19661:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1671,"mutability":"mutable","name":"timepoint","nameLocation":"19686:9:3","nodeType":"VariableDeclaration","scope":1684,"src":"19678:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1670,"name":"uint256","nodeType":"ElementaryTypeName","src":"19678:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19660:36:3"},"returnParameters":{"id":1675,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1674,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1684,"src":"19726:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1673,"name":"uint256","nodeType":"ElementaryTypeName","src":"19726:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19725:9:3"},"scope":2338,"src":"19643:163:3","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2664],"body":{"id":1702,"nodeType":"Block","src":"20029:61:3","statements":[{"expression":{"arguments":[{"id":1697,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1687,"src":"20056:7:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1698,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1689,"src":"20065:9:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1699,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1691,"src":"20076:6:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1696,"name":"_getVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1041,"src":"20046:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (address,uint256,bytes memory) view returns (uint256)"}},"id":1700,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20046:37:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1695,"id":1701,"nodeType":"Return","src":"20039:44:3"}]},"documentation":{"id":1685,"nodeType":"StructuredDocumentation","src":"19812:59:3","text":" @dev See {IGovernor-getVotesWithParams}."},"functionSelector":"9a802a6d","id":1703,"implemented":true,"kind":"function","modifiers":[],"name":"getVotesWithParams","nameLocation":"19885:18:3","nodeType":"FunctionDefinition","parameters":{"id":1692,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1687,"mutability":"mutable","name":"account","nameLocation":"19921:7:3","nodeType":"VariableDeclaration","scope":1703,"src":"19913:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1686,"name":"address","nodeType":"ElementaryTypeName","src":"19913:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1689,"mutability":"mutable","name":"timepoint","nameLocation":"19946:9:3","nodeType":"VariableDeclaration","scope":1703,"src":"19938:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1688,"name":"uint256","nodeType":"ElementaryTypeName","src":"19938:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1691,"mutability":"mutable","name":"params","nameLocation":"19978:6:3","nodeType":"VariableDeclaration","scope":1703,"src":"19965:19:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1690,"name":"bytes","nodeType":"ElementaryTypeName","src":"19965:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"19903:87:3"},"returnParameters":{"id":1695,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1694,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1703,"src":"20020:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1693,"name":"uint256","nodeType":"ElementaryTypeName","src":"20020:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20019:9:3"},"scope":2338,"src":"19876:214:3","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2752],"body":{"id":1725,"nodeType":"Block","src":"20236:103:3","statements":[{"assignments":[1714],"declarations":[{"constant":false,"id":1714,"mutability":"mutable","name":"voter","nameLocation":"20254:5:3","nodeType":"VariableDeclaration","scope":1725,"src":"20246:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1713,"name":"address","nodeType":"ElementaryTypeName","src":"20246:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1717,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1715,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"20262:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1716,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20262:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"20246:28:3"},{"expression":{"arguments":[{"id":1719,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1706,"src":"20301:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1720,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1714,"src":"20313:5:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1721,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1708,"src":"20320:7:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"hexValue":"","id":1722,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"20329:2:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":1718,"name":"_castVote","nodeType":"Identifier","overloadedDeclarations":[1921,1996],"referencedDeclaration":1921,"src":"20291:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_uint8_$_t_string_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,address,uint8,string memory) returns (uint256)"}},"id":1723,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20291:41:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1712,"id":1724,"nodeType":"Return","src":"20284:48:3"}]},"documentation":{"id":1704,"nodeType":"StructuredDocumentation","src":"20096:49:3","text":" @dev See {IGovernor-castVote}."},"functionSelector":"56781388","id":1726,"implemented":true,"kind":"function","modifiers":[],"name":"castVote","nameLocation":"20159:8:3","nodeType":"FunctionDefinition","parameters":{"id":1709,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1706,"mutability":"mutable","name":"proposalId","nameLocation":"20176:10:3","nodeType":"VariableDeclaration","scope":1726,"src":"20168:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1705,"name":"uint256","nodeType":"ElementaryTypeName","src":"20168:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1708,"mutability":"mutable","name":"support","nameLocation":"20194:7:3","nodeType":"VariableDeclaration","scope":1726,"src":"20188:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1707,"name":"uint8","nodeType":"ElementaryTypeName","src":"20188:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"20167:35:3"},"returnParameters":{"id":1712,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1711,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1726,"src":"20227:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1710,"name":"uint256","nodeType":"ElementaryTypeName","src":"20227:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20226:9:3"},"scope":2338,"src":"20150:189:3","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[2764],"body":{"id":1750,"nodeType":"Block","src":"20559:107:3","statements":[{"assignments":[1739],"declarations":[{"constant":false,"id":1739,"mutability":"mutable","name":"voter","nameLocation":"20577:5:3","nodeType":"VariableDeclaration","scope":1750,"src":"20569:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1738,"name":"address","nodeType":"ElementaryTypeName","src":"20569:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1742,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1740,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"20585:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1741,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20585:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"20569:28:3"},{"expression":{"arguments":[{"id":1744,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1729,"src":"20624:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1745,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1739,"src":"20636:5:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1746,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1731,"src":"20643:7:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1747,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1733,"src":"20652:6:3","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":1743,"name":"_castVote","nodeType":"Identifier","overloadedDeclarations":[1921,1996],"referencedDeclaration":1921,"src":"20614:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_uint8_$_t_string_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,address,uint8,string memory) returns (uint256)"}},"id":1748,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20614:45:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1737,"id":1749,"nodeType":"Return","src":"20607:52:3"}]},"documentation":{"id":1727,"nodeType":"StructuredDocumentation","src":"20345:59:3","text":" @dev See {IGovernor-castVoteWithReason}."},"functionSelector":"7b3c71d3","id":1751,"implemented":true,"kind":"function","modifiers":[],"name":"castVoteWithReason","nameLocation":"20418:18:3","nodeType":"FunctionDefinition","parameters":{"id":1734,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1729,"mutability":"mutable","name":"proposalId","nameLocation":"20454:10:3","nodeType":"VariableDeclaration","scope":1751,"src":"20446:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1728,"name":"uint256","nodeType":"ElementaryTypeName","src":"20446:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1731,"mutability":"mutable","name":"support","nameLocation":"20480:7:3","nodeType":"VariableDeclaration","scope":1751,"src":"20474:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1730,"name":"uint8","nodeType":"ElementaryTypeName","src":"20474:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1733,"mutability":"mutable","name":"reason","nameLocation":"20513:6:3","nodeType":"VariableDeclaration","scope":1751,"src":"20497:22:3","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":1732,"name":"string","nodeType":"ElementaryTypeName","src":"20497:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"20436:89:3"},"returnParameters":{"id":1737,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1736,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1751,"src":"20550:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1735,"name":"uint256","nodeType":"ElementaryTypeName","src":"20550:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20549:9:3"},"scope":2338,"src":"20409:257:3","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[2778],"body":{"id":1778,"nodeType":"Block","src":"20933:115:3","statements":[{"assignments":[1766],"declarations":[{"constant":false,"id":1766,"mutability":"mutable","name":"voter","nameLocation":"20951:5:3","nodeType":"VariableDeclaration","scope":1778,"src":"20943:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1765,"name":"address","nodeType":"ElementaryTypeName","src":"20943:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1769,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1767,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"20959:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":1768,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20959:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"20943:28:3"},{"expression":{"arguments":[{"id":1771,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1754,"src":"20998:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1772,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1766,"src":"21010:5:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1773,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1756,"src":"21017:7:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1774,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1758,"src":"21026:6:3","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},{"id":1775,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1760,"src":"21034:6:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1770,"name":"_castVote","nodeType":"Identifier","overloadedDeclarations":[1921,1996],"referencedDeclaration":1996,"src":"20988:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_uint8_$_t_string_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,address,uint8,string memory,bytes memory) returns (uint256)"}},"id":1776,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20988:53:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1764,"id":1777,"nodeType":"Return","src":"20981:60:3"}]},"documentation":{"id":1752,"nodeType":"StructuredDocumentation","src":"20672:68:3","text":" @dev See {IGovernor-castVoteWithReasonAndParams}."},"functionSelector":"5f398a14","id":1779,"implemented":true,"kind":"function","modifiers":[],"name":"castVoteWithReasonAndParams","nameLocation":"20754:27:3","nodeType":"FunctionDefinition","parameters":{"id":1761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1754,"mutability":"mutable","name":"proposalId","nameLocation":"20799:10:3","nodeType":"VariableDeclaration","scope":1779,"src":"20791:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1753,"name":"uint256","nodeType":"ElementaryTypeName","src":"20791:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1756,"mutability":"mutable","name":"support","nameLocation":"20825:7:3","nodeType":"VariableDeclaration","scope":1779,"src":"20819:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1755,"name":"uint8","nodeType":"ElementaryTypeName","src":"20819:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1758,"mutability":"mutable","name":"reason","nameLocation":"20858:6:3","nodeType":"VariableDeclaration","scope":1779,"src":"20842:22:3","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":1757,"name":"string","nodeType":"ElementaryTypeName","src":"20842:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1760,"mutability":"mutable","name":"params","nameLocation":"20887:6:3","nodeType":"VariableDeclaration","scope":1779,"src":"20874:19:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1759,"name":"bytes","nodeType":"ElementaryTypeName","src":"20874:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"20781:118:3"},"returnParameters":{"id":1764,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1763,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1779,"src":"20924:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1762,"name":"uint256","nodeType":"ElementaryTypeName","src":"20924:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20923:9:3"},"scope":2338,"src":"20745:303:3","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[2792],"body":{"id":1830,"nodeType":"Block","src":"21281:378:3","statements":[{"assignments":[1794],"declarations":[{"constant":false,"id":1794,"mutability":"mutable","name":"valid","nameLocation":"21296:5:3","nodeType":"VariableDeclaration","scope":1830,"src":"21291:10:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1793,"name":"bool","nodeType":"ElementaryTypeName","src":"21291:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":1814,"initialValue":{"arguments":[{"id":1797,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1786,"src":"21354:5:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"arguments":[{"arguments":[{"id":1802,"name":"BALLOT_TYPEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":578,"src":"21411:15:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1803,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1782,"src":"21428:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1804,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"21440:7:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1805,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1786,"src":"21449:5:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1807,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1786,"src":"21466:5:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1806,"name":"_useNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7192,"src":"21456:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$","typeString":"function (address) returns (uint256)"}},"id":1808,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21456:16:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1800,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967295,"src":"21400:3:3","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1801,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21404:6:3","memberName":"encode","nodeType":"MemberAccess","src":"21400:10:3","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1809,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21400:73:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1799,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"21390:9:3","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1810,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21390:84:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1798,"name":"_hashTypedDataV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9521,"src":"21373:16:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":1811,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21373:102:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1812,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1788,"src":"21489:9:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":1795,"name":"SignatureChecker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9782,"src":"21304:16:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SignatureChecker_$9782_$","typeString":"type(library SignatureChecker)"}},"id":1796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21321:19:3","memberName":"isValidSignatureNow","nodeType":"MemberAccess","referencedDeclaration":9729,"src":"21304:36:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,bytes32,bytes memory) view returns (bool)"}},"id":1813,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21304:204:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"21291:217:3"},{"condition":{"id":1816,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"21523:6:3","subExpression":{"id":1815,"name":"valid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1794,"src":"21524:5:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1822,"nodeType":"IfStatement","src":"21519:75:3","trueBody":{"id":1821,"nodeType":"Block","src":"21531:63:3","statements":[{"errorCall":{"arguments":[{"id":1818,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1786,"src":"21577:5:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1817,"name":"GovernorInvalidSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2438,"src":"21552:24:3","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1819,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21552:31:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1820,"nodeType":"RevertStatement","src":"21545:38:3"}]}},{"expression":{"arguments":[{"id":1824,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1782,"src":"21621:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1825,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1786,"src":"21633:5:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1826,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"21640:7:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"hexValue":"","id":1827,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21649:2:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":1823,"name":"_castVote","nodeType":"Identifier","overloadedDeclarations":[1921,1996],"referencedDeclaration":1921,"src":"21611:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_uint8_$_t_string_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,address,uint8,string memory) returns (uint256)"}},"id":1828,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21611:41:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1792,"id":1829,"nodeType":"Return","src":"21604:48:3"}]},"documentation":{"id":1780,"nodeType":"StructuredDocumentation","src":"21054:54:3","text":" @dev See {IGovernor-castVoteBySig}."},"functionSelector":"8ff262e3","id":1831,"implemented":true,"kind":"function","modifiers":[],"name":"castVoteBySig","nameLocation":"21122:13:3","nodeType":"FunctionDefinition","parameters":{"id":1789,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1782,"mutability":"mutable","name":"proposalId","nameLocation":"21153:10:3","nodeType":"VariableDeclaration","scope":1831,"src":"21145:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1781,"name":"uint256","nodeType":"ElementaryTypeName","src":"21145:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1784,"mutability":"mutable","name":"support","nameLocation":"21179:7:3","nodeType":"VariableDeclaration","scope":1831,"src":"21173:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1783,"name":"uint8","nodeType":"ElementaryTypeName","src":"21173:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1786,"mutability":"mutable","name":"voter","nameLocation":"21204:5:3","nodeType":"VariableDeclaration","scope":1831,"src":"21196:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1785,"name":"address","nodeType":"ElementaryTypeName","src":"21196:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1788,"mutability":"mutable","name":"signature","nameLocation":"21232:9:3","nodeType":"VariableDeclaration","scope":1831,"src":"21219:22:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1787,"name":"bytes","nodeType":"ElementaryTypeName","src":"21219:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"21135:112:3"},"returnParameters":{"id":1792,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1791,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1831,"src":"21272:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1790,"name":"uint256","nodeType":"ElementaryTypeName","src":"21272:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21271:9:3"},"scope":2338,"src":"21113:546:3","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[2810],"body":{"id":1896,"nodeType":"Block","src":"21991:702:3","statements":[{"assignments":[1850],"declarations":[{"constant":false,"id":1850,"mutability":"mutable","name":"valid","nameLocation":"22006:5:3","nodeType":"VariableDeclaration","scope":1896,"src":"22001:10:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1849,"name":"bool","nodeType":"ElementaryTypeName","src":"22001:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":1879,"initialValue":{"arguments":[{"id":1853,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1838,"src":"22064:5:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"arguments":[{"arguments":[{"id":1858,"name":"EXTENDED_BALLOT_TYPEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":583,"src":"22184:24:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1859,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1834,"src":"22234:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1860,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1836,"src":"22270:7:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1861,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1838,"src":"22303:5:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1863,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1838,"src":"22344:5:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1862,"name":"_useNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7192,"src":"22334:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$","typeString":"function (address) returns (uint256)"}},"id":1864,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22334:16:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"arguments":[{"id":1868,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1840,"src":"22392:6:3","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":1867,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22386:5:3","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":1866,"name":"bytes","nodeType":"ElementaryTypeName","src":"22386:5:3","typeDescriptions":{}}},"id":1869,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22386:13:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":1865,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"22376:9:3","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1870,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22376:24:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"id":1872,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1842,"src":"22436:6:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1871,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"22426:9:3","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1873,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22426:17:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":1856,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967295,"src":"22148:3:3","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1857,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"22152:6:3","memberName":"encode","nodeType":"MemberAccess","src":"22148:10:3","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22148:317:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1855,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"22117:9:3","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1875,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22117:366:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1854,"name":"_hashTypedDataV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9521,"src":"22083:16:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":1876,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22083:414:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1877,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1844,"src":"22511:9:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":1851,"name":"SignatureChecker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9782,"src":"22014:16:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SignatureChecker_$9782_$","typeString":"type(library SignatureChecker)"}},"id":1852,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22031:19:3","memberName":"isValidSignatureNow","nodeType":"MemberAccess","referencedDeclaration":9729,"src":"22014:36:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,bytes32,bytes memory) view returns (bool)"}},"id":1878,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22014:516:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"22001:529:3"},{"condition":{"id":1881,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"22545:6:3","subExpression":{"id":1880,"name":"valid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1850,"src":"22546:5:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1887,"nodeType":"IfStatement","src":"22541:75:3","trueBody":{"id":1886,"nodeType":"Block","src":"22553:63:3","statements":[{"errorCall":{"arguments":[{"id":1883,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1838,"src":"22599:5:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1882,"name":"GovernorInvalidSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2438,"src":"22574:24:3","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1884,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22574:31:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1885,"nodeType":"RevertStatement","src":"22567:38:3"}]}},{"expression":{"arguments":[{"id":1889,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1834,"src":"22643:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1890,"name":"voter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1838,"src":"22655:5:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1891,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1836,"src":"22662:7:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1892,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1840,"src":"22671:6:3","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},{"id":1893,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1842,"src":"22679:6:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1888,"name":"_castVote","nodeType":"Identifier","overloadedDeclarations":[1921,1996],"referencedDeclaration":1996,"src":"22633:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_uint8_$_t_string_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,address,uint8,string memory,bytes memory) returns (uint256)"}},"id":1894,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22633:53:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1848,"id":1895,"nodeType":"Return","src":"22626:60:3"}]},"documentation":{"id":1832,"nodeType":"StructuredDocumentation","src":"21665:73:3","text":" @dev See {IGovernor-castVoteWithReasonAndParamsBySig}."},"functionSelector":"5b8d0e0d","id":1897,"implemented":true,"kind":"function","modifiers":[],"name":"castVoteWithReasonAndParamsBySig","nameLocation":"21752:32:3","nodeType":"FunctionDefinition","parameters":{"id":1845,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1834,"mutability":"mutable","name":"proposalId","nameLocation":"21802:10:3","nodeType":"VariableDeclaration","scope":1897,"src":"21794:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1833,"name":"uint256","nodeType":"ElementaryTypeName","src":"21794:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1836,"mutability":"mutable","name":"support","nameLocation":"21828:7:3","nodeType":"VariableDeclaration","scope":1897,"src":"21822:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1835,"name":"uint8","nodeType":"ElementaryTypeName","src":"21822:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1838,"mutability":"mutable","name":"voter","nameLocation":"21853:5:3","nodeType":"VariableDeclaration","scope":1897,"src":"21845:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1837,"name":"address","nodeType":"ElementaryTypeName","src":"21845:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1840,"mutability":"mutable","name":"reason","nameLocation":"21884:6:3","nodeType":"VariableDeclaration","scope":1897,"src":"21868:22:3","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":1839,"name":"string","nodeType":"ElementaryTypeName","src":"21868:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1842,"mutability":"mutable","name":"params","nameLocation":"21913:6:3","nodeType":"VariableDeclaration","scope":1897,"src":"21900:19:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1841,"name":"bytes","nodeType":"ElementaryTypeName","src":"21900:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1844,"mutability":"mutable","name":"signature","nameLocation":"21942:9:3","nodeType":"VariableDeclaration","scope":1897,"src":"21929:22:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1843,"name":"bytes","nodeType":"ElementaryTypeName","src":"21929:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"21784:173:3"},"returnParameters":{"id":1848,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1847,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1897,"src":"21982:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1846,"name":"uint256","nodeType":"ElementaryTypeName","src":"21982:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21981:9:3"},"scope":2338,"src":"21743:950:3","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1920,"nodeType":"Block","src":"23168:89:3","statements":[{"expression":{"arguments":[{"id":1912,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1900,"src":"23195:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1913,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"23207:7:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1914,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1904,"src":"23216:7:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1915,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1906,"src":"23225:6:3","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[],"expression":{"argumentTypes":[],"id":1916,"name":"_defaultParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1073,"src":"23233:14:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_memory_ptr_$","typeString":"function () view returns (bytes memory)"}},"id":1917,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23233:16:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1911,"name":"_castVote","nodeType":"Identifier","overloadedDeclarations":[1921,1996],"referencedDeclaration":1996,"src":"23185:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_uint8_$_t_string_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,address,uint8,string memory,bytes memory) returns (uint256)"}},"id":1918,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23185:65:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1910,"id":1919,"nodeType":"Return","src":"23178:72:3"}]},"documentation":{"id":1898,"nodeType":"StructuredDocumentation","src":"22699:298:3","text":" @dev Internal vote casting mechanism: Check that the vote is pending, that it has not been cast yet, retrieve\n voting weight using {IGovernor-getVotes} and call the {_countVote} internal function. Uses the _defaultParams().\n Emits a {IGovernor-VoteCast} event."},"id":1921,"implemented":true,"kind":"function","modifiers":[],"name":"_castVote","nameLocation":"23011:9:3","nodeType":"FunctionDefinition","parameters":{"id":1907,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1900,"mutability":"mutable","name":"proposalId","nameLocation":"23038:10:3","nodeType":"VariableDeclaration","scope":1921,"src":"23030:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1899,"name":"uint256","nodeType":"ElementaryTypeName","src":"23030:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1902,"mutability":"mutable","name":"account","nameLocation":"23066:7:3","nodeType":"VariableDeclaration","scope":1921,"src":"23058:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1901,"name":"address","nodeType":"ElementaryTypeName","src":"23058:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1904,"mutability":"mutable","name":"support","nameLocation":"23089:7:3","nodeType":"VariableDeclaration","scope":1921,"src":"23083:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1903,"name":"uint8","nodeType":"ElementaryTypeName","src":"23083:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1906,"mutability":"mutable","name":"reason","nameLocation":"23120:6:3","nodeType":"VariableDeclaration","scope":1921,"src":"23106:20:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1905,"name":"string","nodeType":"ElementaryTypeName","src":"23106:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"23020:112:3"},"returnParameters":{"id":1910,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1909,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1921,"src":"23159:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1908,"name":"uint256","nodeType":"ElementaryTypeName","src":"23159:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23158:9:3"},"scope":2338,"src":"23002:255:3","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1995,"nodeType":"Block","src":"23734:574:3","statements":[{"expression":{"arguments":[{"id":1938,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1924,"src":"23765:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"expression":{"id":1940,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"23796:13:3","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":1941,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"23810:6:3","memberName":"Active","nodeType":"MemberAccess","referencedDeclaration":2351,"src":"23796:20:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}],"id":1939,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2158,"src":"23777:18:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2358_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":1942,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23777:40:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1937,"name":"_validateStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2197,"src":"23744:20:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_bytes32_$returns$_t_enum$_ProposalState_$2358_$","typeString":"function (uint256,bytes32) view returns (enum IGovernor.ProposalState)"}},"id":1943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23744:74:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"id":1944,"nodeType":"ExpressionStatement","src":"23744:74:3"},{"assignments":[1946],"declarations":[{"constant":false,"id":1946,"mutability":"mutable","name":"totalWeight","nameLocation":"23837:11:3","nodeType":"VariableDeclaration","scope":1995,"src":"23829:19:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1945,"name":"uint256","nodeType":"ElementaryTypeName","src":"23829:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1954,"initialValue":{"arguments":[{"id":1948,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1926,"src":"23861:7:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1950,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1924,"src":"23887:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1949,"name":"proposalSnapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":915,"src":"23870:16:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":1951,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23870:28:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1952,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1932,"src":"23900:6:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1947,"name":"_getVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1041,"src":"23851:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (address,uint256,bytes memory) view returns (uint256)"}},"id":1953,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23851:56:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23829:78:3"},{"assignments":[1956],"declarations":[{"constant":false,"id":1956,"mutability":"mutable","name":"votedWeight","nameLocation":"23925:11:3","nodeType":"VariableDeclaration","scope":1995,"src":"23917:19:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1955,"name":"uint256","nodeType":"ElementaryTypeName","src":"23917:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1964,"initialValue":{"arguments":[{"id":1958,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1924,"src":"23950:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1959,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1926,"src":"23962:7:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1960,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1928,"src":"23971:7:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1961,"name":"totalWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1946,"src":"23980:11:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1962,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1932,"src":"23993:6:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1957,"name":"_countVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1057,"src":"23939:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_uint8_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,address,uint8,uint256,bytes memory) returns (uint256)"}},"id":1963,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23939:61:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23917:83:3"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1965,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1932,"src":"24015:6:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1966,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24022:6:3","memberName":"length","nodeType":"MemberAccess","src":"24015:13:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1967,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24032:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24015:18:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1987,"nodeType":"Block","src":"24130:107:3","statements":[{"eventCall":{"arguments":[{"id":1979,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1926,"src":"24168:7:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1980,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1924,"src":"24177:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1981,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1928,"src":"24189:7:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1982,"name":"votedWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1956,"src":"24198:11:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1983,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1930,"src":"24211:6:3","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":1984,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1932,"src":"24219:6:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1978,"name":"VoteCastWithParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2515,"src":"24149:18:3","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint8_$_t_uint256_$_t_string_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,uint256,uint8,uint256,string memory,bytes memory)"}},"id":1985,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24149:77:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1986,"nodeType":"EmitStatement","src":"24144:82:3"}]},"id":1988,"nodeType":"IfStatement","src":"24011:226:3","trueBody":{"id":1977,"nodeType":"Block","src":"24035:89:3","statements":[{"eventCall":{"arguments":[{"id":1970,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1926,"src":"24063:7:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1971,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1924,"src":"24072:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1972,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1928,"src":"24084:7:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1973,"name":"votedWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1956,"src":"24093:11:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1974,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1930,"src":"24106:6:3","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1969,"name":"VoteCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2500,"src":"24054:8:3","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint8_$_t_uint256_$_t_string_memory_ptr_$returns$__$","typeString":"function (address,uint256,uint8,uint256,string memory)"}},"id":1975,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24054:59:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1976,"nodeType":"EmitStatement","src":"24049:64:3"}]}},{"expression":{"arguments":[{"id":1990,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1924,"src":"24261:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1989,"name":"_tallyUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1064,"src":"24247:13:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":1991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24247:25:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1992,"nodeType":"ExpressionStatement","src":"24247:25:3"},{"expression":{"id":1993,"name":"votedWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1956,"src":"24290:11:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1936,"id":1994,"nodeType":"Return","src":"24283:18:3"}]},"documentation":{"id":1922,"nodeType":"StructuredDocumentation","src":"23263:271:3","text":" @dev Internal vote casting mechanism: Check that the vote is pending, that it has not been cast yet, retrieve\n voting weight using {IGovernor-getVotes} and call the {_countVote} internal function.\n Emits a {IGovernor-VoteCast} event."},"id":1996,"implemented":true,"kind":"function","modifiers":[],"name":"_castVote","nameLocation":"23548:9:3","nodeType":"FunctionDefinition","parameters":{"id":1933,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1924,"mutability":"mutable","name":"proposalId","nameLocation":"23575:10:3","nodeType":"VariableDeclaration","scope":1996,"src":"23567:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1923,"name":"uint256","nodeType":"ElementaryTypeName","src":"23567:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1926,"mutability":"mutable","name":"account","nameLocation":"23603:7:3","nodeType":"VariableDeclaration","scope":1996,"src":"23595:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1925,"name":"address","nodeType":"ElementaryTypeName","src":"23595:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1928,"mutability":"mutable","name":"support","nameLocation":"23626:7:3","nodeType":"VariableDeclaration","scope":1996,"src":"23620:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1927,"name":"uint8","nodeType":"ElementaryTypeName","src":"23620:5:3","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1930,"mutability":"mutable","name":"reason","nameLocation":"23657:6:3","nodeType":"VariableDeclaration","scope":1996,"src":"23643:20:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1929,"name":"string","nodeType":"ElementaryTypeName","src":"23643:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1932,"mutability":"mutable","name":"params","nameLocation":"23686:6:3","nodeType":"VariableDeclaration","scope":1996,"src":"23673:19:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1931,"name":"bytes","nodeType":"ElementaryTypeName","src":"23673:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"23557:141:3"},"returnParameters":{"id":1936,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1935,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1996,"src":"23725:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1934,"name":"uint256","nodeType":"ElementaryTypeName","src":"23725:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23724:9:3"},"scope":2338,"src":"23539:769:3","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":2026,"nodeType":"Block","src":"24866:145:3","statements":[{"assignments":[2009,2011],"declarations":[{"constant":false,"id":2009,"mutability":"mutable","name":"success","nameLocation":"24882:7:3","nodeType":"VariableDeclaration","scope":2026,"src":"24877:12:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2008,"name":"bool","nodeType":"ElementaryTypeName","src":"24877:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2011,"mutability":"mutable","name":"returndata","nameLocation":"24904:10:3","nodeType":"VariableDeclaration","scope":2026,"src":"24891:23:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2010,"name":"bytes","nodeType":"ElementaryTypeName","src":"24891:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2018,"initialValue":{"arguments":[{"id":2016,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2003,"src":"24944:4:3","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":2012,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1999,"src":"24918:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24925:4:3","memberName":"call","nodeType":"MemberAccess","src":"24918:11:3","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":2015,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":2014,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2001,"src":"24937:5:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"24918:25:3","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":2017,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24918:31:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"24876:73:3"},{"expression":{"arguments":[{"id":2022,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2009,"src":"24984:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":2023,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2011,"src":"24993:10:3","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":2019,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7098,"src":"24959:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$7098_$","typeString":"type(library Address)"}},"id":2021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24967:16:3","memberName":"verifyCallResult","nodeType":"MemberAccess","referencedDeclaration":7077,"src":"24959:24:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (bool,bytes memory) pure returns (bytes memory)"}},"id":2024,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24959:45:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2025,"nodeType":"ExpressionStatement","src":"24959:45:3"}]},"documentation":{"id":1997,"nodeType":"StructuredDocumentation","src":"24314:440:3","text":" @dev Relays a transaction or function call to an arbitrary target. In cases where the governance executor\n is some contract other than the governor itself, like when using a timelock, this function can be invoked\n in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake.\n Note that if the executor is simply the governor itself, use of `relay` is redundant."},"functionSelector":"c28bc2fa","id":2027,"implemented":true,"kind":"function","modifiers":[{"id":2006,"kind":"modifierInvocation","modifierName":{"id":2005,"name":"onlyGovernance","nameLocations":["24851:14:3"],"nodeType":"IdentifierPath","referencedDeclaration":634,"src":"24851:14:3"},"nodeType":"ModifierInvocation","src":"24851:14:3"}],"name":"relay","nameLocation":"24768:5:3","nodeType":"FunctionDefinition","parameters":{"id":2004,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1999,"mutability":"mutable","name":"target","nameLocation":"24782:6:3","nodeType":"VariableDeclaration","scope":2027,"src":"24774:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1998,"name":"address","nodeType":"ElementaryTypeName","src":"24774:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2001,"mutability":"mutable","name":"value","nameLocation":"24798:5:3","nodeType":"VariableDeclaration","scope":2027,"src":"24790:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2000,"name":"uint256","nodeType":"ElementaryTypeName","src":"24790:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2003,"mutability":"mutable","name":"data","nameLocation":"24820:4:3","nodeType":"VariableDeclaration","scope":2027,"src":"24805:19:3","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":2002,"name":"bytes","nodeType":"ElementaryTypeName","src":"24805:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"24773:52:3"},"returnParameters":{"id":2007,"nodeType":"ParameterList","parameters":[],"src":"24866:0:3"},"scope":2338,"src":"24759:252:3","stateMutability":"payable","virtual":true,"visibility":"external"},{"body":{"id":2038,"nodeType":"Block","src":"25260:37:3","statements":[{"expression":{"arguments":[{"id":2035,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"25285:4:3","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}],"id":2034,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25277:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2033,"name":"address","nodeType":"ElementaryTypeName","src":"25277:7:3","typeDescriptions":{}}},"id":2036,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25277:13:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":2032,"id":2037,"nodeType":"Return","src":"25270:20:3"}]},"documentation":{"id":2028,"nodeType":"StructuredDocumentation","src":"25017:177:3","text":" @dev Address through which the governor executes action. Will be overloaded by module that execute actions\n through another contract such as a timelock."},"id":2039,"implemented":true,"kind":"function","modifiers":[],"name":"_executor","nameLocation":"25208:9:3","nodeType":"FunctionDefinition","parameters":{"id":2029,"nodeType":"ParameterList","parameters":[],"src":"25217:2:3"},"returnParameters":{"id":2032,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2031,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2039,"src":"25251:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2030,"name":"address","nodeType":"ElementaryTypeName","src":"25251:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"25250:9:3"},"scope":2338,"src":"25199:98:3","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[6810],"body":{"id":2069,"nodeType":"Block","src":"25601:154:3","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2059,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":2053,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2039,"src":"25615:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":2054,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25615:11:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":2057,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"25638:4:3","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}],"id":2056,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25630:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2055,"name":"address","nodeType":"ElementaryTypeName","src":"25630:7:3","typeDescriptions":{}}},"id":2058,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25630:13:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"25615:28:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2064,"nodeType":"IfStatement","src":"25611:91:3","trueBody":{"id":2063,"nodeType":"Block","src":"25645:57:3","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":2060,"name":"GovernorDisabledDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2375,"src":"25666:23:3","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":2061,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25666:25:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2062,"nodeType":"RevertStatement","src":"25659:32:3"}]}},{"expression":{"expression":{"expression":{"id":2065,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"25718:4:3","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}},"id":2066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25723:16:3","memberName":"onERC721Received","nodeType":"MemberAccess","referencedDeclaration":2070,"src":"25718:21:3","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (address,address,uint256,bytes memory) external returns (bytes4)"}},"id":2067,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25740:8:3","memberName":"selector","nodeType":"MemberAccess","src":"25718:30:3","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":2052,"id":2068,"nodeType":"Return","src":"25711:37:3"}]},"documentation":{"id":2040,"nodeType":"StructuredDocumentation","src":"25303:194:3","text":" @dev See {IERC721Receiver-onERC721Received}.\n Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock)."},"functionSelector":"150b7a02","id":2070,"implemented":true,"kind":"function","modifiers":[],"name":"onERC721Received","nameLocation":"25511:16:3","nodeType":"FunctionDefinition","parameters":{"id":2049,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2042,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2070,"src":"25528:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2041,"name":"address","nodeType":"ElementaryTypeName","src":"25528:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2044,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2070,"src":"25537:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2043,"name":"address","nodeType":"ElementaryTypeName","src":"25537:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2046,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2070,"src":"25546:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2045,"name":"uint256","nodeType":"ElementaryTypeName","src":"25546:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2048,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2070,"src":"25555:12:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2047,"name":"bytes","nodeType":"ElementaryTypeName","src":"25555:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"25527:41:3"},"returnParameters":{"id":2052,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2051,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2070,"src":"25593:6:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":2050,"name":"bytes4","nodeType":"ElementaryTypeName","src":"25593:6:3","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"25592:8:3"},"scope":2338,"src":"25502:253:3","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[5752],"body":{"id":2102,"nodeType":"Block","src":"26071:155:3","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2092,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":2086,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2039,"src":"26085:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":2087,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26085:11:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":2090,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"26108:4:3","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}],"id":2089,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26100:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2088,"name":"address","nodeType":"ElementaryTypeName","src":"26100:7:3","typeDescriptions":{}}},"id":2091,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26100:13:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"26085:28:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2097,"nodeType":"IfStatement","src":"26081:91:3","trueBody":{"id":2096,"nodeType":"Block","src":"26115:57:3","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":2093,"name":"GovernorDisabledDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2375,"src":"26136:23:3","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":2094,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26136:25:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2095,"nodeType":"RevertStatement","src":"26129:32:3"}]}},{"expression":{"expression":{"expression":{"id":2098,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"26188:4:3","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}},"id":2099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26193:17:3","memberName":"onERC1155Received","nodeType":"MemberAccess","referencedDeclaration":2103,"src":"26188:22:3","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (address,address,uint256,uint256,bytes memory) external returns (bytes4)"}},"id":2100,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26211:8:3","memberName":"selector","nodeType":"MemberAccess","src":"26188:31:3","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":2085,"id":2101,"nodeType":"Return","src":"26181:38:3"}]},"documentation":{"id":2071,"nodeType":"StructuredDocumentation","src":"25761:196:3","text":" @dev See {IERC1155Receiver-onERC1155Received}.\n Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock)."},"functionSelector":"f23a6e61","id":2103,"implemented":true,"kind":"function","modifiers":[],"name":"onERC1155Received","nameLocation":"25971:17:3","nodeType":"FunctionDefinition","parameters":{"id":2082,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2073,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2103,"src":"25989:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2072,"name":"address","nodeType":"ElementaryTypeName","src":"25989:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2075,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2103,"src":"25998:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2074,"name":"address","nodeType":"ElementaryTypeName","src":"25998:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2077,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2103,"src":"26007:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2076,"name":"uint256","nodeType":"ElementaryTypeName","src":"26007:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2079,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2103,"src":"26016:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2078,"name":"uint256","nodeType":"ElementaryTypeName","src":"26016:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2081,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2103,"src":"26025:12:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2080,"name":"bytes","nodeType":"ElementaryTypeName","src":"26025:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"25988:50:3"},"returnParameters":{"id":2085,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2084,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2103,"src":"26063:6:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":2083,"name":"bytes4","nodeType":"ElementaryTypeName","src":"26063:6:3","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"26062:8:3"},"scope":2338,"src":"25962:264:3","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[5770],"body":{"id":2137,"nodeType":"Block","src":"26616:160:3","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2127,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":2121,"name":"_executor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2039,"src":"26630:9:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":2122,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26630:11:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":2125,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"26653:4:3","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}],"id":2124,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26645:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2123,"name":"address","nodeType":"ElementaryTypeName","src":"26645:7:3","typeDescriptions":{}}},"id":2126,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26645:13:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"26630:28:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2132,"nodeType":"IfStatement","src":"26626:91:3","trueBody":{"id":2131,"nodeType":"Block","src":"26660:57:3","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":2128,"name":"GovernorDisabledDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2375,"src":"26681:23:3","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":2129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26681:25:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2130,"nodeType":"RevertStatement","src":"26674:32:3"}]}},{"expression":{"expression":{"expression":{"id":2133,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"26733:4:3","typeDescriptions":{"typeIdentifier":"t_contract$_Governor_$2338","typeString":"contract Governor"}},"id":2134,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26738:22:3","memberName":"onERC1155BatchReceived","nodeType":"MemberAccess","referencedDeclaration":2138,"src":"26733:27:3","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (address,address,uint256[] memory,uint256[] memory,bytes memory) external returns (bytes4)"}},"id":2135,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26761:8:3","memberName":"selector","nodeType":"MemberAccess","src":"26733:36:3","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":2120,"id":2136,"nodeType":"Return","src":"26726:43:3"}]},"documentation":{"id":2104,"nodeType":"StructuredDocumentation","src":"26232:201:3","text":" @dev See {IERC1155Receiver-onERC1155BatchReceived}.\n Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock)."},"functionSelector":"bc197c81","id":2138,"implemented":true,"kind":"function","modifiers":[],"name":"onERC1155BatchReceived","nameLocation":"26447:22:3","nodeType":"FunctionDefinition","parameters":{"id":2117,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2106,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2138,"src":"26479:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2105,"name":"address","nodeType":"ElementaryTypeName","src":"26479:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2108,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2138,"src":"26496:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2107,"name":"address","nodeType":"ElementaryTypeName","src":"26496:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2111,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2138,"src":"26513:16:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2109,"name":"uint256","nodeType":"ElementaryTypeName","src":"26513:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2110,"nodeType":"ArrayTypeName","src":"26513:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2114,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2138,"src":"26539:16:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2112,"name":"uint256","nodeType":"ElementaryTypeName","src":"26539:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2113,"nodeType":"ArrayTypeName","src":"26539:9:3","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2116,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2138,"src":"26565:12:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2115,"name":"bytes","nodeType":"ElementaryTypeName","src":"26565:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"26469:114:3"},"returnParameters":{"id":2120,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2119,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2138,"src":"26608:6:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":2118,"name":"bytes4","nodeType":"ElementaryTypeName","src":"26608:6:3","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"26607:8:3"},"scope":2338,"src":"26438:338:3","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":2157,"nodeType":"Block","src":"27275:58:3","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2154,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":2149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27300:1:3","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"arguments":[{"id":2152,"name":"proposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2142,"src":"27311:13:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}],"id":2151,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27305:5:3","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":2150,"name":"uint8","nodeType":"ElementaryTypeName","src":"27305:5:3","typeDescriptions":{}}},"id":2153,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27305:20:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"27300:25:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2148,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27292:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":2147,"name":"bytes32","nodeType":"ElementaryTypeName","src":"27292:7:3","typeDescriptions":{}}},"id":2155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27292:34:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":2146,"id":2156,"nodeType":"Return","src":"27285:41:3"}]},"documentation":{"id":2139,"nodeType":"StructuredDocumentation","src":"26782:399:3","text":" @dev Encodes a `ProposalState` into a `bytes32` representation where each bit enabled corresponds to\n the underlying position in the `ProposalState` enum. For example:\n 0x000...10000\n ^^^^^^------ ...\n ^----- Succeeded\n ^---- Defeated\n ^--- Canceled\n ^-- Active\n ^- Pending"},"id":2158,"implemented":true,"kind":"function","modifiers":[],"name":"_encodeStateBitmap","nameLocation":"27195:18:3","nodeType":"FunctionDefinition","parameters":{"id":2143,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2142,"mutability":"mutable","name":"proposalState","nameLocation":"27228:13:3","nodeType":"VariableDeclaration","scope":2158,"src":"27214:27:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":2141,"nodeType":"UserDefinedTypeName","pathNode":{"id":2140,"name":"ProposalState","nameLocations":["27214:13:3"],"nodeType":"IdentifierPath","referencedDeclaration":2358,"src":"27214:13:3"},"referencedDeclaration":2358,"src":"27214:13:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"27213:29:3"},"returnParameters":{"id":2146,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2145,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2158,"src":"27266:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2144,"name":"bytes32","nodeType":"ElementaryTypeName","src":"27266:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"27265:9:3"},"scope":2338,"src":"27186:147:3","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2196,"nodeType":"Block","src":"27749:273:3","statements":[{"assignments":[2171],"declarations":[{"constant":false,"id":2171,"mutability":"mutable","name":"currentState","nameLocation":"27773:12:3","nodeType":"VariableDeclaration","scope":2196,"src":"27759:26:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":2170,"nodeType":"UserDefinedTypeName","pathNode":{"id":2169,"name":"ProposalState","nameLocations":["27759:13:3"],"nodeType":"IdentifierPath","referencedDeclaration":2358,"src":"27759:13:3"},"referencedDeclaration":2358,"src":"27759:13:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"id":2175,"initialValue":{"arguments":[{"id":2173,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2161,"src":"27794:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2172,"name":"state","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":892,"src":"27788:5:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_enum$_ProposalState_$2358_$","typeString":"function (uint256) view returns (enum IGovernor.ProposalState)"}},"id":2174,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27788:17:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"nodeType":"VariableDeclarationStatement","src":"27759:46:3"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2185,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2177,"name":"currentState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2171,"src":"27838:12:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}],"id":2176,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2158,"src":"27819:18:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ProposalState_$2358_$returns$_t_bytes32_$","typeString":"function (enum IGovernor.ProposalState) pure returns (bytes32)"}},"id":2178,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27819:32:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":2179,"name":"allowedStates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2163,"src":"27854:13:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"27819:48:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":2183,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27879:1:3","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2182,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27871:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":2181,"name":"bytes32","nodeType":"ElementaryTypeName","src":"27871:7:3","typeDescriptions":{}}},"id":2184,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27871:10:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"27819:62:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2193,"nodeType":"IfStatement","src":"27815:172:3","trueBody":{"id":2192,"nodeType":"Block","src":"27883:104:3","statements":[{"errorCall":{"arguments":[{"id":2187,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2161,"src":"27936:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2188,"name":"currentState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2171,"src":"27948:12:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},{"id":2189,"name":"allowedStates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2163,"src":"27962:13:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2186,"name":"GovernorUnexpectedProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2395,"src":"27904:31:3","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_enum$_ProposalState_$2358_$_t_bytes32_$returns$__$","typeString":"function (uint256,enum IGovernor.ProposalState,bytes32) pure"}},"id":2190,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27904:72:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2191,"nodeType":"RevertStatement","src":"27897:79:3"}]}},{"expression":{"id":2194,"name":"currentState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2171,"src":"28003:12:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":2168,"id":2195,"nodeType":"Return","src":"27996:19:3"}]},"documentation":{"id":2159,"nodeType":"StructuredDocumentation","src":"27339:294:3","text":" @dev Check that the current state of a proposal matches the requirements described by the `allowedStates` bitmap.\n This bitmap should be built using `_encodeStateBitmap`.\n If requirements are not met, reverts with a {GovernorUnexpectedProposalState} error."},"id":2197,"implemented":true,"kind":"function","modifiers":[],"name":"_validateStateBitmap","nameLocation":"27647:20:3","nodeType":"FunctionDefinition","parameters":{"id":2164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2161,"mutability":"mutable","name":"proposalId","nameLocation":"27676:10:3","nodeType":"VariableDeclaration","scope":2197,"src":"27668:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2160,"name":"uint256","nodeType":"ElementaryTypeName","src":"27668:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2163,"mutability":"mutable","name":"allowedStates","nameLocation":"27696:13:3","nodeType":"VariableDeclaration","scope":2197,"src":"27688:21:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2162,"name":"bytes32","nodeType":"ElementaryTypeName","src":"27688:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"27667:43:3"},"returnParameters":{"id":2168,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2167,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2197,"src":"27734:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":2166,"nodeType":"UserDefinedTypeName","pathNode":{"id":2165,"name":"ProposalState","nameLocations":["27734:13:3"],"nodeType":"IdentifierPath","referencedDeclaration":2358,"src":"27734:13:3"},"referencedDeclaration":2358,"src":"27734:13:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"27733:15:3"},"scope":2338,"src":"27638:384:3","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":2267,"nodeType":"Block","src":"29292:855:3","statements":[{"id":2266,"nodeType":"UncheckedBlock","src":"29302:839:3","statements":[{"assignments":[2207],"declarations":[{"constant":false,"id":2207,"mutability":"mutable","name":"length","nameLocation":"29334:6:3","nodeType":"VariableDeclaration","scope":2266,"src":"29326:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2206,"name":"uint256","nodeType":"ElementaryTypeName","src":"29326:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2213,"initialValue":{"expression":{"arguments":[{"id":2210,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2201,"src":"29349:11:3","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2209,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29343:5:3","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2208,"name":"bytes","nodeType":"ElementaryTypeName","src":"29343:5:3","typeDescriptions":{}}},"id":2211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29343:18:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29362:6:3","memberName":"length","nodeType":"MemberAccess","src":"29343:25:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"29326:42:3"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2216,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2214,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2207,"src":"29457:6:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3532","id":2215,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29466:2:3","typeDescriptions":{"typeIdentifier":"t_rational_52_by_1","typeString":"int_const 52"},"value":"52"},"src":"29457:11:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2220,"nodeType":"IfStatement","src":"29453:61:3","trueBody":{"id":2219,"nodeType":"Block","src":"29470:44:3","statements":[{"expression":{"hexValue":"74727565","id":2217,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"29495:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":2205,"id":2218,"nodeType":"Return","src":"29488:11:3"}]}},{"assignments":[2222],"declarations":[{"constant":false,"id":2222,"mutability":"mutable","name":"marker","nameLocation":"29618:6:3","nodeType":"VariableDeclaration","scope":2266,"src":"29610:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":2221,"name":"bytes10","nodeType":"ElementaryTypeName","src":"29610:7:3","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"id":2235,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":2228,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2201,"src":"29664:11:3","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2227,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29658:5:3","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2226,"name":"bytes","nodeType":"ElementaryTypeName","src":"29658:5:3","typeDescriptions":{}}},"id":2229,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29658:18:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2232,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2230,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2207,"src":"29678:6:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"3532","id":2231,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29687:2:3","typeDescriptions":{"typeIdentifier":"t_rational_52_by_1","typeString":"int_const 52"},"value":"52"},"src":"29678:11:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2225,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2337,"src":"29635:22:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":2233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29635:55:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2224,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29627:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes10_$","typeString":"type(bytes10)"},"typeName":{"id":2223,"name":"bytes10","nodeType":"ElementaryTypeName","src":"29627:7:3","typeDescriptions":{}}},"id":2234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29627:64:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"VariableDeclarationStatement","src":"29610:81:3"},{"condition":{"commonType":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"id":2241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2236,"name":"marker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2222,"src":"29790:6:3","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"2370726f706f7365723d","id":2239,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"29808:12:3","typeDescriptions":{"typeIdentifier":"t_stringliteral_4824063d6bdb82ec89a8f29b476cefaf04a89262d201a8de38709c6cdfee4574","typeString":"literal_string \"#proposer=\""},"value":"#proposer="}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_4824063d6bdb82ec89a8f29b476cefaf04a89262d201a8de38709c6cdfee4574","typeString":"literal_string \"#proposer=\""}],"id":2238,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29800:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes10_$","typeString":"type(bytes10)"},"typeName":{"id":2237,"name":"bytes10","nodeType":"ElementaryTypeName","src":"29800:7:3","typeDescriptions":{}}},"id":2240,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29800:21:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"src":"29790:31:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2245,"nodeType":"IfStatement","src":"29786:81:3","trueBody":{"id":2244,"nodeType":"Block","src":"29823:44:3","statements":[{"expression":{"hexValue":"74727565","id":2242,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"29848:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":2205,"id":2243,"nodeType":"Return","src":"29841:11:3"}]}},{"assignments":[2247,2249],"declarations":[{"constant":false,"id":2247,"mutability":"mutable","name":"success","nameLocation":"29989:7:3","nodeType":"VariableDeclaration","scope":2266,"src":"29984:12:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2246,"name":"bool","nodeType":"ElementaryTypeName","src":"29984:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2249,"mutability":"mutable","name":"recovered","nameLocation":"30006:9:3","nodeType":"VariableDeclaration","scope":2266,"src":"29998:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2248,"name":"address","nodeType":"ElementaryTypeName","src":"29998:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2258,"initialValue":{"arguments":[{"id":2252,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2201,"src":"30043:11:3","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2253,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2207,"src":"30056:6:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"3432","id":2254,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30065:2:3","typeDescriptions":{"typeIdentifier":"t_rational_42_by_1","typeString":"int_const 42"},"value":"42"},"src":"30056:11:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2256,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2207,"src":"30069:6:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2250,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9013,"src":"30019:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Strings_$9013_$","typeString":"type(library Strings)"}},"id":2251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30027:15:3","memberName":"tryParseAddress","nodeType":"MemberAccess","referencedDeclaration":8774,"src":"30019:23:3","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_address_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,address)"}},"id":2257,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30019:57:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"nodeType":"VariableDeclarationStatement","src":"29983:93:3"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2264,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"30097:8:3","subExpression":{"id":2259,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2247,"src":"30098:7:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2261,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2249,"src":"30109:9:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2262,"name":"proposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2199,"src":"30122:8:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"30109:21:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"30097:33:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2205,"id":2265,"nodeType":"Return","src":"30090:40:3"}]}]},"id":2268,"implemented":true,"kind":"function","modifiers":[],"name":"_isValidDescriptionForProposer","nameLocation":"29157:30:3","nodeType":"FunctionDefinition","parameters":{"id":2202,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2199,"mutability":"mutable","name":"proposer","nameLocation":"29205:8:3","nodeType":"VariableDeclaration","scope":2268,"src":"29197:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2198,"name":"address","nodeType":"ElementaryTypeName","src":"29197:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2201,"mutability":"mutable","name":"description","nameLocation":"29237:11:3","nodeType":"VariableDeclaration","scope":2268,"src":"29223:25:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2200,"name":"string","nodeType":"ElementaryTypeName","src":"29223:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"29187:67:3"},"returnParameters":{"id":2205,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2204,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2268,"src":"29286:4:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2203,"name":"bool","nodeType":"ElementaryTypeName","src":"29286:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"29285:6:3"},"scope":2338,"src":"29148:999:3","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":2292,"nodeType":"Block","src":"30473:110:3","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"},"id":2283,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2279,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2271,"src":"30497:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2278,"name":"state","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":892,"src":"30491:5:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_enum$_ProposalState_$2358_$","typeString":"function (uint256) view returns (enum IGovernor.ProposalState)"}},"id":2280,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30491:17:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":2281,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"30512:13:3","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":2282,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"30526:7:3","memberName":"Pending","nodeType":"MemberAccess","referencedDeclaration":2350,"src":"30512:21:3","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"src":"30491:42:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":2284,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"30490:44:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2285,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2273,"src":"30538:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":2287,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2271,"src":"30565:10:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2286,"name":"proposalProposer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":948,"src":"30548:16:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":2288,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30548:28:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"30538:38:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"30490:86:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2277,"id":2291,"nodeType":"Return","src":"30483:93:3"}]},"documentation":{"id":2269,"nodeType":"StructuredDocumentation","src":"30153:217:3","text":" @dev Check if the `caller` can cancel the proposal with the given `proposalId`.\n The default implementation allows the proposal proposer to cancel the proposal during the pending state."},"id":2293,"implemented":true,"kind":"function","modifiers":[],"name":"_validateCancel","nameLocation":"30384:15:3","nodeType":"FunctionDefinition","parameters":{"id":2274,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2271,"mutability":"mutable","name":"proposalId","nameLocation":"30408:10:3","nodeType":"VariableDeclaration","scope":2293,"src":"30400:18:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2270,"name":"uint256","nodeType":"ElementaryTypeName","src":"30400:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2273,"mutability":"mutable","name":"caller","nameLocation":"30428:6:3","nodeType":"VariableDeclaration","scope":2293,"src":"30420:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2272,"name":"address","nodeType":"ElementaryTypeName","src":"30420:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"30399:36:3"},"returnParameters":{"id":2277,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2276,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2293,"src":"30467:4:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2275,"name":"bool","nodeType":"ElementaryTypeName","src":"30467:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"30466:6:3"},"scope":2338,"src":"30375:208:3","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[5585],"documentation":{"id":2294,"nodeType":"StructuredDocumentation","src":"30589:39:3","text":" @inheritdoc IERC6372"},"functionSelector":"91ddadf4","id":2299,"implemented":false,"kind":"function","modifiers":[],"name":"clock","nameLocation":"30642:5:3","nodeType":"FunctionDefinition","parameters":{"id":2295,"nodeType":"ParameterList","parameters":[],"src":"30647:2:3"},"returnParameters":{"id":2298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2297,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2299,"src":"30679:6:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":2296,"name":"uint48","nodeType":"ElementaryTypeName","src":"30679:6:3","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"30678:8:3"},"scope":2338,"src":"30633:54:3","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5591],"documentation":{"id":2300,"nodeType":"StructuredDocumentation","src":"30693:39:3","text":" @inheritdoc IERC6372"},"functionSelector":"4bf5d7e9","id":2305,"implemented":false,"kind":"function","modifiers":[],"name":"CLOCK_MODE","nameLocation":"30799:10:3","nodeType":"FunctionDefinition","parameters":{"id":2301,"nodeType":"ParameterList","parameters":[],"src":"30809:2:3"},"returnParameters":{"id":2304,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2303,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2305,"src":"30841:13:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2302,"name":"string","nodeType":"ElementaryTypeName","src":"30841:6:3","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"30840:15:3"},"scope":2338,"src":"30790:66:3","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2628],"documentation":{"id":2306,"nodeType":"StructuredDocumentation","src":"30862:40:3","text":" @inheritdoc IGovernor"},"functionSelector":"3932abb1","id":2311,"implemented":false,"kind":"function","modifiers":[],"name":"votingDelay","nameLocation":"30916:11:3","nodeType":"FunctionDefinition","parameters":{"id":2307,"nodeType":"ParameterList","parameters":[],"src":"30927:2:3"},"returnParameters":{"id":2310,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2309,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2311,"src":"30959:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2308,"name":"uint256","nodeType":"ElementaryTypeName","src":"30959:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30958:9:3"},"scope":2338,"src":"30907:61:3","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2634],"documentation":{"id":2312,"nodeType":"StructuredDocumentation","src":"30974:40:3","text":" @inheritdoc IGovernor"},"functionSelector":"02a251a3","id":2317,"implemented":false,"kind":"function","modifiers":[],"name":"votingPeriod","nameLocation":"31028:12:3","nodeType":"FunctionDefinition","parameters":{"id":2313,"nodeType":"ParameterList","parameters":[],"src":"31040:2:3"},"returnParameters":{"id":2316,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2315,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2317,"src":"31072:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2314,"name":"uint256","nodeType":"ElementaryTypeName","src":"31072:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31071:9:3"},"scope":2338,"src":"31019:62:3","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2642],"documentation":{"id":2318,"nodeType":"StructuredDocumentation","src":"31087:40:3","text":" @inheritdoc IGovernor"},"functionSelector":"f8ce560a","id":2325,"implemented":false,"kind":"function","modifiers":[],"name":"quorum","nameLocation":"31141:6:3","nodeType":"FunctionDefinition","parameters":{"id":2321,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2320,"mutability":"mutable","name":"timepoint","nameLocation":"31156:9:3","nodeType":"VariableDeclaration","scope":2325,"src":"31148:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2319,"name":"uint256","nodeType":"ElementaryTypeName","src":"31148:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31147:19:3"},"returnParameters":{"id":2324,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2323,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2325,"src":"31196:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2322,"name":"uint256","nodeType":"ElementaryTypeName","src":"31196:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31195:9:3"},"scope":2338,"src":"31132:73:3","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":2336,"nodeType":"Block","src":"31590:225:3","statements":[{"AST":{"nodeType":"YulBlock","src":"31739:70:3","statements":[{"nodeType":"YulAssignment","src":"31753:46:3","value":{"arguments":[{"arguments":[{"name":"buffer","nodeType":"YulIdentifier","src":"31772:6:3"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"31784:4:3","type":"","value":"0x20"},{"name":"offset","nodeType":"YulIdentifier","src":"31790:6:3"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31780:3:3"},"nodeType":"YulFunctionCall","src":"31780:17:3"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31768:3:3"},"nodeType":"YulFunctionCall","src":"31768:30:3"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"31762:5:3"},"nodeType":"YulFunctionCall","src":"31762:37:3"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"31753:5:3"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":2328,"isOffset":false,"isSlot":false,"src":"31772:6:3","valueSize":1},{"declaration":2330,"isOffset":false,"isSlot":false,"src":"31790:6:3","valueSize":1},{"declaration":2333,"isOffset":false,"isSlot":false,"src":"31753:5:3","valueSize":1}],"flags":["memory-safe"],"id":2335,"nodeType":"InlineAssembly","src":"31714:95:3"}]},"documentation":{"id":2326,"nodeType":"StructuredDocumentation","src":"31211:268:3","text":" @dev Reads a bytes32 from a bytes array without bounds checking.\n NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the\n assembly block as such would prevent some optimizations."},"id":2337,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeReadBytesOffset","nameLocation":"31493:22:3","nodeType":"FunctionDefinition","parameters":{"id":2331,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2328,"mutability":"mutable","name":"buffer","nameLocation":"31529:6:3","nodeType":"VariableDeclaration","scope":2337,"src":"31516:19:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2327,"name":"bytes","nodeType":"ElementaryTypeName","src":"31516:5:3","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2330,"mutability":"mutable","name":"offset","nameLocation":"31545:6:3","nodeType":"VariableDeclaration","scope":2337,"src":"31537:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2329,"name":"uint256","nodeType":"ElementaryTypeName","src":"31537:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31515:37:3"},"returnParameters":{"id":2334,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2333,"mutability":"mutable","name":"value","nameLocation":"31583:5:3","nodeType":"VariableDeclaration","scope":2337,"src":"31575:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2332,"name":"bytes32","nodeType":"ElementaryTypeName","src":"31575:7:3","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"31574:15:3"},"scope":2338,"src":"31484:331:3","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":2339,"src":"1262:30555:3","usedErrors":[2367,2372,2375,2380,2385,2395,2400,2409,2414,2417,2420,2423,2428,2433,2438,2445,7141,7160,7284,7286,11449],"usedEvents":[2470,2477,2482,2487,2500,2515,5546]}],"src":"107:31711:3"},"id":3},"@openzeppelin/contracts/governance/IGovernor.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/IGovernor.sol","exportedSymbols":{"IERC165":[9818],"IERC6372":[5592],"IGovernor":[2811]},"id":2812,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2340,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"108:24:4"},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","file":"../interfaces/IERC165.sol","id":2342,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2812,"sourceUnit":5542,"src":"134:50:4","symbolAliases":[{"foreign":{"id":2341,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9818,"src":"142:7:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC6372.sol","file":"../interfaces/IERC6372.sol","id":2344,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2812,"sourceUnit":5593,"src":"185:52:4","symbolAliases":[{"foreign":{"id":2343,"name":"IERC6372","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5592,"src":"193:8:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":2346,"name":"IERC165","nameLocations":["522:7:4"],"nodeType":"IdentifierPath","referencedDeclaration":9818,"src":"522:7:4"},"id":2347,"nodeType":"InheritanceSpecifier","src":"522:7:4"},{"baseName":{"id":2348,"name":"IERC6372","nameLocations":["531:8:4"],"nodeType":"IdentifierPath","referencedDeclaration":5592,"src":"531:8:4"},"id":2349,"nodeType":"InheritanceSpecifier","src":"531:8:4"}],"canonicalName":"IGovernor","contractDependencies":[],"contractKind":"interface","documentation":{"id":2345,"nodeType":"StructuredDocumentation","src":"239:259:4","text":" @dev Interface of the {Governor} core.\n NOTE: Event parameters lack the `indexed` keyword for compatibility with GovernorBravo events.\n Making event parameters `indexed` affects how events are decoded, potentially breaking existing indexers."},"fullyImplemented":false,"id":2811,"linearizedBaseContracts":[2811,5592,9818],"name":"IGovernor","nameLocation":"509:9:4","nodeType":"ContractDefinition","nodes":[{"canonicalName":"IGovernor.ProposalState","id":2358,"members":[{"id":2350,"name":"Pending","nameLocation":"575:7:4","nodeType":"EnumValue","src":"575:7:4"},{"id":2351,"name":"Active","nameLocation":"592:6:4","nodeType":"EnumValue","src":"592:6:4"},{"id":2352,"name":"Canceled","nameLocation":"608:8:4","nodeType":"EnumValue","src":"608:8:4"},{"id":2353,"name":"Defeated","nameLocation":"626:8:4","nodeType":"EnumValue","src":"626:8:4"},{"id":2354,"name":"Succeeded","nameLocation":"644:9:4","nodeType":"EnumValue","src":"644:9:4"},{"id":2355,"name":"Queued","nameLocation":"663:6:4","nodeType":"EnumValue","src":"663:6:4"},{"id":2356,"name":"Expired","nameLocation":"679:7:4","nodeType":"EnumValue","src":"679:7:4"},{"id":2357,"name":"Executed","nameLocation":"696:8:4","nodeType":"EnumValue","src":"696:8:4"}],"name":"ProposalState","nameLocation":"551:13:4","nodeType":"EnumDefinition","src":"546:164:4"},{"documentation":{"id":2359,"nodeType":"StructuredDocumentation","src":"716:103:4","text":" @dev Empty proposal or a mismatch between the parameters length for a proposal call."},"errorSelector":"447b05d0","id":2367,"name":"GovernorInvalidProposalLength","nameLocation":"830:29:4","nodeType":"ErrorDefinition","parameters":{"id":2366,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2361,"mutability":"mutable","name":"targets","nameLocation":"868:7:4","nodeType":"VariableDeclaration","scope":2367,"src":"860:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2360,"name":"uint256","nodeType":"ElementaryTypeName","src":"860:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2363,"mutability":"mutable","name":"calldatas","nameLocation":"885:9:4","nodeType":"VariableDeclaration","scope":2367,"src":"877:17:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2362,"name":"uint256","nodeType":"ElementaryTypeName","src":"877:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2365,"mutability":"mutable","name":"values","nameLocation":"904:6:4","nodeType":"VariableDeclaration","scope":2367,"src":"896:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2364,"name":"uint256","nodeType":"ElementaryTypeName","src":"896:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"859:52:4"},"src":"824:88:4"},{"documentation":{"id":2368,"nodeType":"StructuredDocumentation","src":"918:50:4","text":" @dev The vote was already cast."},"errorSelector":"71c6af49","id":2372,"name":"GovernorAlreadyCastVote","nameLocation":"979:23:4","nodeType":"ErrorDefinition","parameters":{"id":2371,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2370,"mutability":"mutable","name":"voter","nameLocation":"1011:5:4","nodeType":"VariableDeclaration","scope":2372,"src":"1003:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2369,"name":"address","nodeType":"ElementaryTypeName","src":"1003:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1002:15:4"},"src":"973:45:4"},{"documentation":{"id":2373,"nodeType":"StructuredDocumentation","src":"1024:69:4","text":" @dev Token deposits are disabled in this contract."},"errorSelector":"e90a651e","id":2375,"name":"GovernorDisabledDeposit","nameLocation":"1104:23:4","nodeType":"ErrorDefinition","parameters":{"id":2374,"nodeType":"ParameterList","parameters":[],"src":"1127:2:4"},"src":"1098:32:4"},{"documentation":{"id":2376,"nodeType":"StructuredDocumentation","src":"1136:69:4","text":" @dev The `account` is not the governance executor."},"errorSelector":"47096e47","id":2380,"name":"GovernorOnlyExecutor","nameLocation":"1216:20:4","nodeType":"ErrorDefinition","parameters":{"id":2379,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2378,"mutability":"mutable","name":"account","nameLocation":"1245:7:4","nodeType":"VariableDeclaration","scope":2380,"src":"1237:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2377,"name":"address","nodeType":"ElementaryTypeName","src":"1237:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1236:17:4"},"src":"1210:44:4"},{"documentation":{"id":2381,"nodeType":"StructuredDocumentation","src":"1260:55:4","text":" @dev The `proposalId` doesn't exist."},"errorSelector":"6ad06075","id":2385,"name":"GovernorNonexistentProposal","nameLocation":"1326:27:4","nodeType":"ErrorDefinition","parameters":{"id":2384,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2383,"mutability":"mutable","name":"proposalId","nameLocation":"1362:10:4","nodeType":"VariableDeclaration","scope":2385,"src":"1354:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2382,"name":"uint256","nodeType":"ElementaryTypeName","src":"1354:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1353:20:4"},"src":"1320:54:4"},{"documentation":{"id":2386,"nodeType":"StructuredDocumentation","src":"1380:530:4","text":" @dev The current state of a proposal is not the required for performing an operation.\n The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position\n counting from right to left.\n NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist).\n This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated).\n See {Governor-_encodeStateBitmap}."},"errorSelector":"31b75e4d","id":2395,"name":"GovernorUnexpectedProposalState","nameLocation":"1921:31:4","nodeType":"ErrorDefinition","parameters":{"id":2394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2388,"mutability":"mutable","name":"proposalId","nameLocation":"1961:10:4","nodeType":"VariableDeclaration","scope":2395,"src":"1953:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2387,"name":"uint256","nodeType":"ElementaryTypeName","src":"1953:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2391,"mutability":"mutable","name":"current","nameLocation":"1987:7:4","nodeType":"VariableDeclaration","scope":2395,"src":"1973:21:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":2390,"nodeType":"UserDefinedTypeName","pathNode":{"id":2389,"name":"ProposalState","nameLocations":["1973:13:4"],"nodeType":"IdentifierPath","referencedDeclaration":2358,"src":"1973:13:4"},"referencedDeclaration":2358,"src":"1973:13:4","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"},{"constant":false,"id":2393,"mutability":"mutable","name":"expectedStates","nameLocation":"2004:14:4","nodeType":"VariableDeclaration","scope":2395,"src":"1996:22:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2392,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1996:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1952:67:4"},"src":"1915:105:4"},{"documentation":{"id":2396,"nodeType":"StructuredDocumentation","src":"2026:68:4","text":" @dev The voting period set is not a valid period."},"errorSelector":"f1cfbf05","id":2400,"name":"GovernorInvalidVotingPeriod","nameLocation":"2105:27:4","nodeType":"ErrorDefinition","parameters":{"id":2399,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2398,"mutability":"mutable","name":"votingPeriod","nameLocation":"2141:12:4","nodeType":"VariableDeclaration","scope":2400,"src":"2133:20:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2397,"name":"uint256","nodeType":"ElementaryTypeName","src":"2133:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2132:22:4"},"src":"2099:56:4"},{"documentation":{"id":2401,"nodeType":"StructuredDocumentation","src":"2161:93:4","text":" @dev The `proposer` does not have the required votes to create a proposal."},"errorSelector":"c242ee16","id":2409,"name":"GovernorInsufficientProposerVotes","nameLocation":"2265:33:4","nodeType":"ErrorDefinition","parameters":{"id":2408,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2403,"mutability":"mutable","name":"proposer","nameLocation":"2307:8:4","nodeType":"VariableDeclaration","scope":2409,"src":"2299:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2402,"name":"address","nodeType":"ElementaryTypeName","src":"2299:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2405,"mutability":"mutable","name":"votes","nameLocation":"2325:5:4","nodeType":"VariableDeclaration","scope":2409,"src":"2317:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2404,"name":"uint256","nodeType":"ElementaryTypeName","src":"2317:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2407,"mutability":"mutable","name":"threshold","nameLocation":"2340:9:4","nodeType":"VariableDeclaration","scope":2409,"src":"2332:17:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2406,"name":"uint256","nodeType":"ElementaryTypeName","src":"2332:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2298:52:4"},"src":"2259:92:4"},{"documentation":{"id":2410,"nodeType":"StructuredDocumentation","src":"2357:75:4","text":" @dev The `proposer` is not allowed to create a proposal."},"errorSelector":"d9b39557","id":2414,"name":"GovernorRestrictedProposer","nameLocation":"2443:26:4","nodeType":"ErrorDefinition","parameters":{"id":2413,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2412,"mutability":"mutable","name":"proposer","nameLocation":"2478:8:4","nodeType":"VariableDeclaration","scope":2414,"src":"2470:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2411,"name":"address","nodeType":"ElementaryTypeName","src":"2470:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2469:18:4"},"src":"2437:51:4"},{"documentation":{"id":2415,"nodeType":"StructuredDocumentation","src":"2494:94:4","text":" @dev The vote type used is not valid for the corresponding counting module."},"errorSelector":"06b337c2","id":2417,"name":"GovernorInvalidVoteType","nameLocation":"2599:23:4","nodeType":"ErrorDefinition","parameters":{"id":2416,"nodeType":"ParameterList","parameters":[],"src":"2622:2:4"},"src":"2593:32:4"},{"documentation":{"id":2418,"nodeType":"StructuredDocumentation","src":"2631:91:4","text":" @dev The provided params buffer is not supported by the counting module."},"errorSelector":"867db771","id":2420,"name":"GovernorInvalidVoteParams","nameLocation":"2733:25:4","nodeType":"ErrorDefinition","parameters":{"id":2419,"nodeType":"ParameterList","parameters":[],"src":"2758:2:4"},"src":"2727:34:4"},{"documentation":{"id":2421,"nodeType":"StructuredDocumentation","src":"2767:112:4","text":" @dev Queue operation is not implemented for this governor. Execute should be called directly."},"errorSelector":"90884a46","id":2423,"name":"GovernorQueueNotImplemented","nameLocation":"2890:27:4","nodeType":"ErrorDefinition","parameters":{"id":2422,"nodeType":"ParameterList","parameters":[],"src":"2917:2:4"},"src":"2884:36:4"},{"documentation":{"id":2424,"nodeType":"StructuredDocumentation","src":"2926:60:4","text":" @dev The proposal hasn't been queued yet."},"errorSelector":"d5ddb825","id":2428,"name":"GovernorNotQueuedProposal","nameLocation":"2997:25:4","nodeType":"ErrorDefinition","parameters":{"id":2427,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2426,"mutability":"mutable","name":"proposalId","nameLocation":"3031:10:4","nodeType":"VariableDeclaration","scope":2428,"src":"3023:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2425,"name":"uint256","nodeType":"ElementaryTypeName","src":"3023:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3022:20:4"},"src":"2991:52:4"},{"documentation":{"id":2429,"nodeType":"StructuredDocumentation","src":"3049:61:4","text":" @dev The proposal has already been queued."},"errorSelector":"f20e7d37","id":2433,"name":"GovernorAlreadyQueuedProposal","nameLocation":"3121:29:4","nodeType":"ErrorDefinition","parameters":{"id":2432,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2431,"mutability":"mutable","name":"proposalId","nameLocation":"3159:10:4","nodeType":"VariableDeclaration","scope":2433,"src":"3151:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2430,"name":"uint256","nodeType":"ElementaryTypeName","src":"3151:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3150:20:4"},"src":"3115:56:4"},{"documentation":{"id":2434,"nodeType":"StructuredDocumentation","src":"3177:184:4","text":" @dev The provided signature is not valid for the expected `voter`.\n If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}."},"errorSelector":"94ab6c07","id":2438,"name":"GovernorInvalidSignature","nameLocation":"3372:24:4","nodeType":"ErrorDefinition","parameters":{"id":2437,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2436,"mutability":"mutable","name":"voter","nameLocation":"3405:5:4","nodeType":"VariableDeclaration","scope":2438,"src":"3397:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2435,"name":"address","nodeType":"ElementaryTypeName","src":"3397:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3396:15:4"},"src":"3366:46:4"},{"documentation":{"id":2439,"nodeType":"StructuredDocumentation","src":"3418:101:4","text":" @dev The given `account` is unable to cancel the proposal with given `proposalId`."},"errorSelector":"8fe5d8a9","id":2445,"name":"GovernorUnableToCancel","nameLocation":"3530:22:4","nodeType":"ErrorDefinition","parameters":{"id":2444,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2441,"mutability":"mutable","name":"proposalId","nameLocation":"3561:10:4","nodeType":"VariableDeclaration","scope":2445,"src":"3553:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2440,"name":"uint256","nodeType":"ElementaryTypeName","src":"3553:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2443,"mutability":"mutable","name":"account","nameLocation":"3581:7:4","nodeType":"VariableDeclaration","scope":2445,"src":"3573:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2442,"name":"address","nodeType":"ElementaryTypeName","src":"3573:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3552:37:4"},"src":"3524:66:4"},{"anonymous":false,"documentation":{"id":2446,"nodeType":"StructuredDocumentation","src":"3596:59:4","text":" @dev Emitted when a proposal is created."},"eventSelector":"7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e0","id":2470,"name":"ProposalCreated","nameLocation":"3666:15:4","nodeType":"EventDefinition","parameters":{"id":2469,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2448,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"3699:10:4","nodeType":"VariableDeclaration","scope":2470,"src":"3691:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2447,"name":"uint256","nodeType":"ElementaryTypeName","src":"3691:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2450,"indexed":false,"mutability":"mutable","name":"proposer","nameLocation":"3727:8:4","nodeType":"VariableDeclaration","scope":2470,"src":"3719:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2449,"name":"address","nodeType":"ElementaryTypeName","src":"3719:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2453,"indexed":false,"mutability":"mutable","name":"targets","nameLocation":"3755:7:4","nodeType":"VariableDeclaration","scope":2470,"src":"3745:17:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2451,"name":"address","nodeType":"ElementaryTypeName","src":"3745:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2452,"nodeType":"ArrayTypeName","src":"3745:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2456,"indexed":false,"mutability":"mutable","name":"values","nameLocation":"3782:6:4","nodeType":"VariableDeclaration","scope":2470,"src":"3772:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2454,"name":"uint256","nodeType":"ElementaryTypeName","src":"3772:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2455,"nodeType":"ArrayTypeName","src":"3772:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2459,"indexed":false,"mutability":"mutable","name":"signatures","nameLocation":"3807:10:4","nodeType":"VariableDeclaration","scope":2470,"src":"3798:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":2457,"name":"string","nodeType":"ElementaryTypeName","src":"3798:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":2458,"nodeType":"ArrayTypeName","src":"3798:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":2462,"indexed":false,"mutability":"mutable","name":"calldatas","nameLocation":"3835:9:4","nodeType":"VariableDeclaration","scope":2470,"src":"3827:17:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2460,"name":"bytes","nodeType":"ElementaryTypeName","src":"3827:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2461,"nodeType":"ArrayTypeName","src":"3827:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2464,"indexed":false,"mutability":"mutable","name":"voteStart","nameLocation":"3862:9:4","nodeType":"VariableDeclaration","scope":2470,"src":"3854:17:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2463,"name":"uint256","nodeType":"ElementaryTypeName","src":"3854:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2466,"indexed":false,"mutability":"mutable","name":"voteEnd","nameLocation":"3889:7:4","nodeType":"VariableDeclaration","scope":2470,"src":"3881:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2465,"name":"uint256","nodeType":"ElementaryTypeName","src":"3881:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2468,"indexed":false,"mutability":"mutable","name":"description","nameLocation":"3913:11:4","nodeType":"VariableDeclaration","scope":2470,"src":"3906:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2467,"name":"string","nodeType":"ElementaryTypeName","src":"3906:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3681:249:4"},"src":"3660:271:4"},{"anonymous":false,"documentation":{"id":2471,"nodeType":"StructuredDocumentation","src":"3937:58:4","text":" @dev Emitted when a proposal is queued."},"eventSelector":"9a2e42fd6722813d69113e7d0079d3d940171428df7373df9c7f7617cfda2892","id":2477,"name":"ProposalQueued","nameLocation":"4006:14:4","nodeType":"EventDefinition","parameters":{"id":2476,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2473,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"4029:10:4","nodeType":"VariableDeclaration","scope":2477,"src":"4021:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2472,"name":"uint256","nodeType":"ElementaryTypeName","src":"4021:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2475,"indexed":false,"mutability":"mutable","name":"etaSeconds","nameLocation":"4049:10:4","nodeType":"VariableDeclaration","scope":2477,"src":"4041:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2474,"name":"uint256","nodeType":"ElementaryTypeName","src":"4041:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4020:40:4"},"src":"4000:61:4"},{"anonymous":false,"documentation":{"id":2478,"nodeType":"StructuredDocumentation","src":"4067:60:4","text":" @dev Emitted when a proposal is executed."},"eventSelector":"712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f","id":2482,"name":"ProposalExecuted","nameLocation":"4138:16:4","nodeType":"EventDefinition","parameters":{"id":2481,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2480,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"4163:10:4","nodeType":"VariableDeclaration","scope":2482,"src":"4155:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2479,"name":"uint256","nodeType":"ElementaryTypeName","src":"4155:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4154:20:4"},"src":"4132:43:4"},{"anonymous":false,"documentation":{"id":2483,"nodeType":"StructuredDocumentation","src":"4181:60:4","text":" @dev Emitted when a proposal is canceled."},"eventSelector":"789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c","id":2487,"name":"ProposalCanceled","nameLocation":"4252:16:4","nodeType":"EventDefinition","parameters":{"id":2486,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2485,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"4277:10:4","nodeType":"VariableDeclaration","scope":2487,"src":"4269:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2484,"name":"uint256","nodeType":"ElementaryTypeName","src":"4269:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4268:20:4"},"src":"4246:43:4"},{"anonymous":false,"documentation":{"id":2488,"nodeType":"StructuredDocumentation","src":"4295:187:4","text":" @dev Emitted when a vote is cast without params.\n Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used."},"eventSelector":"b8e138887d0aa13bab447e82de9d5c1777041ecd21ca36ba824ff1e6c07ddda4","id":2500,"name":"VoteCast","nameLocation":"4493:8:4","nodeType":"EventDefinition","parameters":{"id":2499,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2490,"indexed":true,"mutability":"mutable","name":"voter","nameLocation":"4518:5:4","nodeType":"VariableDeclaration","scope":2500,"src":"4502:21:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2489,"name":"address","nodeType":"ElementaryTypeName","src":"4502:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2492,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"4533:10:4","nodeType":"VariableDeclaration","scope":2500,"src":"4525:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2491,"name":"uint256","nodeType":"ElementaryTypeName","src":"4525:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2494,"indexed":false,"mutability":"mutable","name":"support","nameLocation":"4551:7:4","nodeType":"VariableDeclaration","scope":2500,"src":"4545:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2493,"name":"uint8","nodeType":"ElementaryTypeName","src":"4545:5:4","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2496,"indexed":false,"mutability":"mutable","name":"weight","nameLocation":"4568:6:4","nodeType":"VariableDeclaration","scope":2500,"src":"4560:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2495,"name":"uint256","nodeType":"ElementaryTypeName","src":"4560:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2498,"indexed":false,"mutability":"mutable","name":"reason","nameLocation":"4583:6:4","nodeType":"VariableDeclaration","scope":2500,"src":"4576:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2497,"name":"string","nodeType":"ElementaryTypeName","src":"4576:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4501:89:4"},"src":"4487:104:4"},{"anonymous":false,"documentation":{"id":2501,"nodeType":"StructuredDocumentation","src":"4597:297:4","text":" @dev Emitted when a vote is cast with params.\n Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\n `params` are additional encoded parameters. Their interpretation also depends on the voting module used."},"eventSelector":"e2babfbac5889a709b63bb7f598b324e08bc5a4fb9ec647fb3cbc9ec07eb8712","id":2515,"name":"VoteCastWithParams","nameLocation":"4905:18:4","nodeType":"EventDefinition","parameters":{"id":2514,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2503,"indexed":true,"mutability":"mutable","name":"voter","nameLocation":"4949:5:4","nodeType":"VariableDeclaration","scope":2515,"src":"4933:21:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2502,"name":"address","nodeType":"ElementaryTypeName","src":"4933:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2505,"indexed":false,"mutability":"mutable","name":"proposalId","nameLocation":"4972:10:4","nodeType":"VariableDeclaration","scope":2515,"src":"4964:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2504,"name":"uint256","nodeType":"ElementaryTypeName","src":"4964:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2507,"indexed":false,"mutability":"mutable","name":"support","nameLocation":"4998:7:4","nodeType":"VariableDeclaration","scope":2515,"src":"4992:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2506,"name":"uint8","nodeType":"ElementaryTypeName","src":"4992:5:4","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2509,"indexed":false,"mutability":"mutable","name":"weight","nameLocation":"5023:6:4","nodeType":"VariableDeclaration","scope":2515,"src":"5015:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2508,"name":"uint256","nodeType":"ElementaryTypeName","src":"5015:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2511,"indexed":false,"mutability":"mutable","name":"reason","nameLocation":"5046:6:4","nodeType":"VariableDeclaration","scope":2515,"src":"5039:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2510,"name":"string","nodeType":"ElementaryTypeName","src":"5039:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2513,"indexed":false,"mutability":"mutable","name":"params","nameLocation":"5068:6:4","nodeType":"VariableDeclaration","scope":2515,"src":"5062:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2512,"name":"bytes","nodeType":"ElementaryTypeName","src":"5062:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4923:157:4"},"src":"4899:182:4"},{"documentation":{"id":2516,"nodeType":"StructuredDocumentation","src":"5087:129:4","text":" @notice module:core\n @dev Name of the governor instance (used in building the EIP-712 domain separator)."},"functionSelector":"06fdde03","id":2521,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"5230:4:4","nodeType":"FunctionDefinition","parameters":{"id":2517,"nodeType":"ParameterList","parameters":[],"src":"5234:2:4"},"returnParameters":{"id":2520,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2519,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2521,"src":"5260:13:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2518,"name":"string","nodeType":"ElementaryTypeName","src":"5260:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5259:15:4"},"scope":2811,"src":"5221:54:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2522,"nodeType":"StructuredDocumentation","src":"5281:145:4","text":" @notice module:core\n @dev Version of the governor instance (used in building the EIP-712 domain separator). Default: \"1\""},"functionSelector":"54fd4d50","id":2527,"implemented":false,"kind":"function","modifiers":[],"name":"version","nameLocation":"5440:7:4","nodeType":"FunctionDefinition","parameters":{"id":2523,"nodeType":"ParameterList","parameters":[],"src":"5447:2:4"},"returnParameters":{"id":2526,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2525,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2527,"src":"5473:13:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2524,"name":"string","nodeType":"ElementaryTypeName","src":"5473:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5472:15:4"},"scope":2811,"src":"5431:57:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2528,"nodeType":"StructuredDocumentation","src":"5494:1315:4","text":" @notice module:voting\n @dev A description of the possible `support` values for {castVote} and the way these votes are counted, meant to\n be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of\n key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`.\n There are 2 standard keys: `support` and `quorum`.\n - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`.\n - `quorum=bravo` means that only For votes are counted towards quorum.\n - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum.\n If a counting module makes use of encoded `params`, it should include this under a `params` key with a unique\n name that describes the behavior. For example:\n - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain.\n - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote.\n NOTE: The string can be decoded by the standard\n https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`]\n JavaScript class."},"functionSelector":"dd4e2ba5","id":2533,"implemented":false,"kind":"function","modifiers":[],"name":"COUNTING_MODE","nameLocation":"6876:13:4","nodeType":"FunctionDefinition","parameters":{"id":2529,"nodeType":"ParameterList","parameters":[],"src":"6889:2:4"},"returnParameters":{"id":2532,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2531,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2533,"src":"6915:13:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2530,"name":"string","nodeType":"ElementaryTypeName","src":"6915:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6914:15:4"},"scope":2811,"src":"6867:63:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2534,"nodeType":"StructuredDocumentation","src":"6936:207:4","text":" @notice module:core\n @dev Hashing function used to (re)build the proposal id from the proposal details.\n NOTE: For all off-chain and external calls, use {getProposalId}."},"functionSelector":"c59057e4","id":2550,"implemented":false,"kind":"function","modifiers":[],"name":"hashProposal","nameLocation":"7157:12:4","nodeType":"FunctionDefinition","parameters":{"id":2546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2537,"mutability":"mutable","name":"targets","nameLocation":"7196:7:4","nodeType":"VariableDeclaration","scope":2550,"src":"7179:24:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2535,"name":"address","nodeType":"ElementaryTypeName","src":"7179:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2536,"nodeType":"ArrayTypeName","src":"7179:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2540,"mutability":"mutable","name":"values","nameLocation":"7230:6:4","nodeType":"VariableDeclaration","scope":2550,"src":"7213:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2538,"name":"uint256","nodeType":"ElementaryTypeName","src":"7213:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2539,"nodeType":"ArrayTypeName","src":"7213:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2543,"mutability":"mutable","name":"calldatas","nameLocation":"7261:9:4","nodeType":"VariableDeclaration","scope":2550,"src":"7246:24:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2541,"name":"bytes","nodeType":"ElementaryTypeName","src":"7246:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2542,"nodeType":"ArrayTypeName","src":"7246:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2545,"mutability":"mutable","name":"descriptionHash","nameLocation":"7288:15:4","nodeType":"VariableDeclaration","scope":2550,"src":"7280:23:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2544,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7280:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7169:140:4"},"returnParameters":{"id":2549,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2548,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2550,"src":"7333:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2547,"name":"uint256","nodeType":"ElementaryTypeName","src":"7333:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7332:9:4"},"scope":2811,"src":"7148:194:4","stateMutability":"pure","virtual":false,"visibility":"external"},{"documentation":{"id":2551,"nodeType":"StructuredDocumentation","src":"7348:114:4","text":" @notice module:core\n @dev Function used to get the proposal id from the proposal details."},"functionSelector":"a8f8a668","id":2567,"implemented":false,"kind":"function","modifiers":[],"name":"getProposalId","nameLocation":"7476:13:4","nodeType":"FunctionDefinition","parameters":{"id":2563,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2554,"mutability":"mutable","name":"targets","nameLocation":"7516:7:4","nodeType":"VariableDeclaration","scope":2567,"src":"7499:24:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2552,"name":"address","nodeType":"ElementaryTypeName","src":"7499:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2553,"nodeType":"ArrayTypeName","src":"7499:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2557,"mutability":"mutable","name":"values","nameLocation":"7550:6:4","nodeType":"VariableDeclaration","scope":2567,"src":"7533:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2555,"name":"uint256","nodeType":"ElementaryTypeName","src":"7533:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2556,"nodeType":"ArrayTypeName","src":"7533:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2560,"mutability":"mutable","name":"calldatas","nameLocation":"7581:9:4","nodeType":"VariableDeclaration","scope":2567,"src":"7566:24:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2558,"name":"bytes","nodeType":"ElementaryTypeName","src":"7566:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2559,"nodeType":"ArrayTypeName","src":"7566:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2562,"mutability":"mutable","name":"descriptionHash","nameLocation":"7608:15:4","nodeType":"VariableDeclaration","scope":2567,"src":"7600:23:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2561,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7600:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7489:140:4"},"returnParameters":{"id":2566,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2565,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2567,"src":"7653:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2564,"name":"uint256","nodeType":"ElementaryTypeName","src":"7653:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7652:9:4"},"scope":2811,"src":"7467:195:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2568,"nodeType":"StructuredDocumentation","src":"7668:111:4","text":" @notice module:core\n @dev Current state of a proposal, following Compound's convention"},"functionSelector":"3e4f49e6","id":2576,"implemented":false,"kind":"function","modifiers":[],"name":"state","nameLocation":"7793:5:4","nodeType":"FunctionDefinition","parameters":{"id":2571,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2570,"mutability":"mutable","name":"proposalId","nameLocation":"7807:10:4","nodeType":"VariableDeclaration","scope":2576,"src":"7799:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2569,"name":"uint256","nodeType":"ElementaryTypeName","src":"7799:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7798:20:4"},"returnParameters":{"id":2575,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2574,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2576,"src":"7842:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":2573,"nodeType":"UserDefinedTypeName","pathNode":{"id":2572,"name":"ProposalState","nameLocations":["7842:13:4"],"nodeType":"IdentifierPath","referencedDeclaration":2358,"src":"7842:13:4"},"referencedDeclaration":2358,"src":"7842:13:4","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"7841:15:4"},"scope":2811,"src":"7784:73:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2577,"nodeType":"StructuredDocumentation","src":"7863:122:4","text":" @notice module:core\n @dev The number of votes required in order for a voter to become a proposer."},"functionSelector":"b58131b0","id":2582,"implemented":false,"kind":"function","modifiers":[],"name":"proposalThreshold","nameLocation":"7999:17:4","nodeType":"FunctionDefinition","parameters":{"id":2578,"nodeType":"ParameterList","parameters":[],"src":"8016:2:4"},"returnParameters":{"id":2581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2580,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2582,"src":"8042:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2579,"name":"uint256","nodeType":"ElementaryTypeName","src":"8042:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8041:9:4"},"scope":2811,"src":"7990:61:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2583,"nodeType":"StructuredDocumentation","src":"8057:296:4","text":" @notice module:core\n @dev Timepoint used to retrieve user's votes and quorum. If using block number (as per Compound's Comp), the\n snapshot is performed at the end of this block. Hence, voting for this proposal starts at the beginning of the\n following block."},"functionSelector":"2d63f693","id":2590,"implemented":false,"kind":"function","modifiers":[],"name":"proposalSnapshot","nameLocation":"8367:16:4","nodeType":"FunctionDefinition","parameters":{"id":2586,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2585,"mutability":"mutable","name":"proposalId","nameLocation":"8392:10:4","nodeType":"VariableDeclaration","scope":2590,"src":"8384:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2584,"name":"uint256","nodeType":"ElementaryTypeName","src":"8384:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8383:20:4"},"returnParameters":{"id":2589,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2588,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2590,"src":"8427:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2587,"name":"uint256","nodeType":"ElementaryTypeName","src":"8427:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8426:9:4"},"scope":2811,"src":"8358:78:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2591,"nodeType":"StructuredDocumentation","src":"8442:202:4","text":" @notice module:core\n @dev Timepoint at which votes close. If using block number, votes close at the end of this block, so it is\n possible to cast a vote during this block."},"functionSelector":"c01f9e37","id":2598,"implemented":false,"kind":"function","modifiers":[],"name":"proposalDeadline","nameLocation":"8658:16:4","nodeType":"FunctionDefinition","parameters":{"id":2594,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2593,"mutability":"mutable","name":"proposalId","nameLocation":"8683:10:4","nodeType":"VariableDeclaration","scope":2598,"src":"8675:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2592,"name":"uint256","nodeType":"ElementaryTypeName","src":"8675:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8674:20:4"},"returnParameters":{"id":2597,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2596,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2598,"src":"8718:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2595,"name":"uint256","nodeType":"ElementaryTypeName","src":"8718:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8717:9:4"},"scope":2811,"src":"8649:78:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2599,"nodeType":"StructuredDocumentation","src":"8733:87:4","text":" @notice module:core\n @dev The account that created a proposal."},"functionSelector":"143489d0","id":2606,"implemented":false,"kind":"function","modifiers":[],"name":"proposalProposer","nameLocation":"8834:16:4","nodeType":"FunctionDefinition","parameters":{"id":2602,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2601,"mutability":"mutable","name":"proposalId","nameLocation":"8859:10:4","nodeType":"VariableDeclaration","scope":2606,"src":"8851:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2600,"name":"uint256","nodeType":"ElementaryTypeName","src":"8851:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8850:20:4"},"returnParameters":{"id":2605,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2604,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2606,"src":"8894:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2603,"name":"address","nodeType":"ElementaryTypeName","src":"8894:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8893:9:4"},"scope":2811,"src":"8825:78:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2607,"nodeType":"StructuredDocumentation","src":"8909:318:4","text":" @notice module:core\n @dev The time when a queued proposal becomes executable (\"ETA\"). Unlike {proposalSnapshot} and\n {proposalDeadline}, this doesn't use the governor clock, and instead relies on the executor's clock which may be\n different. In most cases this will be a timestamp."},"functionSelector":"ab58fb8e","id":2614,"implemented":false,"kind":"function","modifiers":[],"name":"proposalEta","nameLocation":"9241:11:4","nodeType":"FunctionDefinition","parameters":{"id":2610,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2609,"mutability":"mutable","name":"proposalId","nameLocation":"9261:10:4","nodeType":"VariableDeclaration","scope":2614,"src":"9253:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2608,"name":"uint256","nodeType":"ElementaryTypeName","src":"9253:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9252:20:4"},"returnParameters":{"id":2613,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2612,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2614,"src":"9296:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2611,"name":"uint256","nodeType":"ElementaryTypeName","src":"9296:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9295:9:4"},"scope":2811,"src":"9232:73:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2615,"nodeType":"StructuredDocumentation","src":"9311:106:4","text":" @notice module:core\n @dev Whether a proposal needs to be queued before execution."},"functionSelector":"a9a95294","id":2622,"implemented":false,"kind":"function","modifiers":[],"name":"proposalNeedsQueuing","nameLocation":"9431:20:4","nodeType":"FunctionDefinition","parameters":{"id":2618,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2617,"mutability":"mutable","name":"proposalId","nameLocation":"9460:10:4","nodeType":"VariableDeclaration","scope":2622,"src":"9452:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2616,"name":"uint256","nodeType":"ElementaryTypeName","src":"9452:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9451:20:4"},"returnParameters":{"id":2621,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2620,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2622,"src":"9495:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2619,"name":"bool","nodeType":"ElementaryTypeName","src":"9495:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9494:6:4"},"scope":2811,"src":"9422:79:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2623,"nodeType":"StructuredDocumentation","src":"9507:599:4","text":" @notice module:user-config\n @dev Delay, between the proposal is created and the vote starts. The unit this duration is expressed in depends\n on the clock (see ERC-6372) this contract uses.\n This can be increased to leave time for users to buy voting power, or delegate it, before the voting of a\n proposal starts.\n NOTE: While this interface returns a uint256, timepoints are stored as uint48 following the ERC-6372 clock type.\n Consequently this value must fit in a uint48 (when added to the current clock). See {IERC6372-clock}."},"functionSelector":"3932abb1","id":2628,"implemented":false,"kind":"function","modifiers":[],"name":"votingDelay","nameLocation":"10120:11:4","nodeType":"FunctionDefinition","parameters":{"id":2624,"nodeType":"ParameterList","parameters":[],"src":"10131:2:4"},"returnParameters":{"id":2627,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2626,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2628,"src":"10157:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2625,"name":"uint256","nodeType":"ElementaryTypeName","src":"10157:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10156:9:4"},"scope":2811,"src":"10111:55:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2629,"nodeType":"StructuredDocumentation","src":"10172:686:4","text":" @notice module:user-config\n @dev Delay between the vote start and vote end. The unit this duration is expressed in depends on the clock\n (see ERC-6372) this contract uses.\n NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting\n duration compared to the voting delay.\n NOTE: This value is stored when the proposal is submitted so that possible changes to the value do not affect\n proposals that have already been submitted. The type used to save it is a uint32. Consequently, while this\n interface returns a uint256, the value it returns should fit in a uint32."},"functionSelector":"02a251a3","id":2634,"implemented":false,"kind":"function","modifiers":[],"name":"votingPeriod","nameLocation":"10872:12:4","nodeType":"FunctionDefinition","parameters":{"id":2630,"nodeType":"ParameterList","parameters":[],"src":"10884:2:4"},"returnParameters":{"id":2633,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2632,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2634,"src":"10910:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2631,"name":"uint256","nodeType":"ElementaryTypeName","src":"10910:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10909:9:4"},"scope":2811,"src":"10863:56:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2635,"nodeType":"StructuredDocumentation","src":"10925:358:4","text":" @notice module:user-config\n @dev Minimum number of cast voted required for a proposal to be successful.\n NOTE: The `timepoint` parameter corresponds to the snapshot used for counting vote. This allows to scale the\n quorum depending on values such as the totalSupply of a token at this timepoint (see {ERC20Votes})."},"functionSelector":"f8ce560a","id":2642,"implemented":false,"kind":"function","modifiers":[],"name":"quorum","nameLocation":"11297:6:4","nodeType":"FunctionDefinition","parameters":{"id":2638,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2637,"mutability":"mutable","name":"timepoint","nameLocation":"11312:9:4","nodeType":"VariableDeclaration","scope":2642,"src":"11304:17:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2636,"name":"uint256","nodeType":"ElementaryTypeName","src":"11304:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11303:19:4"},"returnParameters":{"id":2641,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2640,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2642,"src":"11346:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2639,"name":"uint256","nodeType":"ElementaryTypeName","src":"11346:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11345:9:4"},"scope":2811,"src":"11288:67:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2643,"nodeType":"StructuredDocumentation","src":"11361:274:4","text":" @notice module:reputation\n @dev Voting power of an `account` at a specific `timepoint`.\n Note: this can be implemented in a number of ways, for example by reading the delegated balance from one (or\n multiple), {ERC20Votes} tokens."},"functionSelector":"eb9019d4","id":2652,"implemented":false,"kind":"function","modifiers":[],"name":"getVotes","nameLocation":"11649:8:4","nodeType":"FunctionDefinition","parameters":{"id":2648,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2645,"mutability":"mutable","name":"account","nameLocation":"11666:7:4","nodeType":"VariableDeclaration","scope":2652,"src":"11658:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2644,"name":"address","nodeType":"ElementaryTypeName","src":"11658:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2647,"mutability":"mutable","name":"timepoint","nameLocation":"11683:9:4","nodeType":"VariableDeclaration","scope":2652,"src":"11675:17:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2646,"name":"uint256","nodeType":"ElementaryTypeName","src":"11675:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11657:36:4"},"returnParameters":{"id":2651,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2650,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2652,"src":"11717:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2649,"name":"uint256","nodeType":"ElementaryTypeName","src":"11717:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11716:9:4"},"scope":2811,"src":"11640:86:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2653,"nodeType":"StructuredDocumentation","src":"11732:148:4","text":" @notice module:reputation\n @dev Voting power of an `account` at a specific `timepoint` given additional encoded parameters."},"functionSelector":"9a802a6d","id":2664,"implemented":false,"kind":"function","modifiers":[],"name":"getVotesWithParams","nameLocation":"11894:18:4","nodeType":"FunctionDefinition","parameters":{"id":2660,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2655,"mutability":"mutable","name":"account","nameLocation":"11930:7:4","nodeType":"VariableDeclaration","scope":2664,"src":"11922:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2654,"name":"address","nodeType":"ElementaryTypeName","src":"11922:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2657,"mutability":"mutable","name":"timepoint","nameLocation":"11955:9:4","nodeType":"VariableDeclaration","scope":2664,"src":"11947:17:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2656,"name":"uint256","nodeType":"ElementaryTypeName","src":"11947:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2659,"mutability":"mutable","name":"params","nameLocation":"11987:6:4","nodeType":"VariableDeclaration","scope":2664,"src":"11974:19:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2658,"name":"bytes","nodeType":"ElementaryTypeName","src":"11974:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"11912:87:4"},"returnParameters":{"id":2663,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2662,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2664,"src":"12023:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2661,"name":"uint256","nodeType":"ElementaryTypeName","src":"12023:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12022:9:4"},"scope":2811,"src":"11885:147:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2665,"nodeType":"StructuredDocumentation","src":"12038:111:4","text":" @notice module:voting\n @dev Returns whether `account` has cast a vote on `proposalId`."},"functionSelector":"43859632","id":2674,"implemented":false,"kind":"function","modifiers":[],"name":"hasVoted","nameLocation":"12163:8:4","nodeType":"FunctionDefinition","parameters":{"id":2670,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2667,"mutability":"mutable","name":"proposalId","nameLocation":"12180:10:4","nodeType":"VariableDeclaration","scope":2674,"src":"12172:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2666,"name":"uint256","nodeType":"ElementaryTypeName","src":"12172:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2669,"mutability":"mutable","name":"account","nameLocation":"12200:7:4","nodeType":"VariableDeclaration","scope":2674,"src":"12192:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2668,"name":"address","nodeType":"ElementaryTypeName","src":"12192:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"12171:37:4"},"returnParameters":{"id":2673,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2672,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2674,"src":"12232:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2671,"name":"bool","nodeType":"ElementaryTypeName","src":"12232:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"12231:6:4"},"scope":2811,"src":"12154:84:4","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":2675,"nodeType":"StructuredDocumentation","src":"12244:746:4","text":" @dev Create a new proposal. Vote start after a delay specified by {IGovernor-votingDelay} and lasts for a\n duration specified by {IGovernor-votingPeriod}.\n Emits a {ProposalCreated} event.\n NOTE: The state of the Governor and `targets` may change between the proposal creation and its execution.\n This may be the result of third party actions on the targeted contracts, or other governor proposals.\n For example, the balance of this contract could be updated or its access control permissions may be modified,\n possibly compromising the proposal's ability to execute successfully (e.g. the governor doesn't have enough\n value to cover a proposal with multiple transfers)."},"functionSelector":"7d5e81e2","id":2691,"implemented":false,"kind":"function","modifiers":[],"name":"propose","nameLocation":"13004:7:4","nodeType":"FunctionDefinition","parameters":{"id":2687,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2678,"mutability":"mutable","name":"targets","nameLocation":"13038:7:4","nodeType":"VariableDeclaration","scope":2691,"src":"13021:24:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2676,"name":"address","nodeType":"ElementaryTypeName","src":"13021:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2677,"nodeType":"ArrayTypeName","src":"13021:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2681,"mutability":"mutable","name":"values","nameLocation":"13072:6:4","nodeType":"VariableDeclaration","scope":2691,"src":"13055:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2679,"name":"uint256","nodeType":"ElementaryTypeName","src":"13055:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2680,"nodeType":"ArrayTypeName","src":"13055:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2684,"mutability":"mutable","name":"calldatas","nameLocation":"13103:9:4","nodeType":"VariableDeclaration","scope":2691,"src":"13088:24:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2682,"name":"bytes","nodeType":"ElementaryTypeName","src":"13088:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2683,"nodeType":"ArrayTypeName","src":"13088:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2686,"mutability":"mutable","name":"description","nameLocation":"13136:11:4","nodeType":"VariableDeclaration","scope":2691,"src":"13122:25:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2685,"name":"string","nodeType":"ElementaryTypeName","src":"13122:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"13011:142:4"},"returnParameters":{"id":2690,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2689,"mutability":"mutable","name":"proposalId","nameLocation":"13180:10:4","nodeType":"VariableDeclaration","scope":2691,"src":"13172:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2688,"name":"uint256","nodeType":"ElementaryTypeName","src":"13172:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13171:20:4"},"scope":2811,"src":"12995:197:4","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2692,"nodeType":"StructuredDocumentation","src":"13198:347:4","text":" @dev Queue a proposal. Some governors require this step to be performed before execution can happen. If queuing\n is not necessary, this function may revert.\n Queuing a proposal requires the quorum to be reached, the vote to be successful, and the deadline to be reached.\n Emits a {ProposalQueued} event."},"functionSelector":"160cbed7","id":2708,"implemented":false,"kind":"function","modifiers":[],"name":"queue","nameLocation":"13559:5:4","nodeType":"FunctionDefinition","parameters":{"id":2704,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2695,"mutability":"mutable","name":"targets","nameLocation":"13591:7:4","nodeType":"VariableDeclaration","scope":2708,"src":"13574:24:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2693,"name":"address","nodeType":"ElementaryTypeName","src":"13574:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2694,"nodeType":"ArrayTypeName","src":"13574:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2698,"mutability":"mutable","name":"values","nameLocation":"13625:6:4","nodeType":"VariableDeclaration","scope":2708,"src":"13608:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2696,"name":"uint256","nodeType":"ElementaryTypeName","src":"13608:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2697,"nodeType":"ArrayTypeName","src":"13608:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2701,"mutability":"mutable","name":"calldatas","nameLocation":"13656:9:4","nodeType":"VariableDeclaration","scope":2708,"src":"13641:24:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2699,"name":"bytes","nodeType":"ElementaryTypeName","src":"13641:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2700,"nodeType":"ArrayTypeName","src":"13641:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2703,"mutability":"mutable","name":"descriptionHash","nameLocation":"13683:15:4","nodeType":"VariableDeclaration","scope":2708,"src":"13675:23:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2702,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13675:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"13564:140:4"},"returnParameters":{"id":2707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2706,"mutability":"mutable","name":"proposalId","nameLocation":"13731:10:4","nodeType":"VariableDeclaration","scope":2708,"src":"13723:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2705,"name":"uint256","nodeType":"ElementaryTypeName","src":"13723:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13722:20:4"},"scope":2811,"src":"13550:193:4","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2709,"nodeType":"StructuredDocumentation","src":"13749:446:4","text":" @dev Execute a successful proposal. This requires the quorum to be reached, the vote to be successful, and the\n deadline to be reached. Depending on the governor it might also be required that the proposal was queued and\n that some delay passed.\n Emits a {ProposalExecuted} event.\n NOTE: Some modules can modify the requirements for execution, for example by adding an additional timelock."},"functionSelector":"2656227d","id":2725,"implemented":false,"kind":"function","modifiers":[],"name":"execute","nameLocation":"14209:7:4","nodeType":"FunctionDefinition","parameters":{"id":2721,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2712,"mutability":"mutable","name":"targets","nameLocation":"14243:7:4","nodeType":"VariableDeclaration","scope":2725,"src":"14226:24:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2710,"name":"address","nodeType":"ElementaryTypeName","src":"14226:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2711,"nodeType":"ArrayTypeName","src":"14226:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2715,"mutability":"mutable","name":"values","nameLocation":"14277:6:4","nodeType":"VariableDeclaration","scope":2725,"src":"14260:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2713,"name":"uint256","nodeType":"ElementaryTypeName","src":"14260:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2714,"nodeType":"ArrayTypeName","src":"14260:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2718,"mutability":"mutable","name":"calldatas","nameLocation":"14308:9:4","nodeType":"VariableDeclaration","scope":2725,"src":"14293:24:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2716,"name":"bytes","nodeType":"ElementaryTypeName","src":"14293:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2717,"nodeType":"ArrayTypeName","src":"14293:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2720,"mutability":"mutable","name":"descriptionHash","nameLocation":"14335:15:4","nodeType":"VariableDeclaration","scope":2725,"src":"14327:23:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2719,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14327:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"14216:140:4"},"returnParameters":{"id":2724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2723,"mutability":"mutable","name":"proposalId","nameLocation":"14391:10:4","nodeType":"VariableDeclaration","scope":2725,"src":"14383:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2722,"name":"uint256","nodeType":"ElementaryTypeName","src":"14383:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14382:20:4"},"scope":2811,"src":"14200:203:4","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":2726,"nodeType":"StructuredDocumentation","src":"14409:205:4","text":" @dev Cancel a proposal. A proposal is cancellable by the proposer, but only while it is Pending state, i.e.\n before the vote starts.\n Emits a {ProposalCanceled} event."},"functionSelector":"452115d6","id":2742,"implemented":false,"kind":"function","modifiers":[],"name":"cancel","nameLocation":"14628:6:4","nodeType":"FunctionDefinition","parameters":{"id":2738,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2729,"mutability":"mutable","name":"targets","nameLocation":"14661:7:4","nodeType":"VariableDeclaration","scope":2742,"src":"14644:24:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2727,"name":"address","nodeType":"ElementaryTypeName","src":"14644:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2728,"nodeType":"ArrayTypeName","src":"14644:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2732,"mutability":"mutable","name":"values","nameLocation":"14695:6:4","nodeType":"VariableDeclaration","scope":2742,"src":"14678:23:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2730,"name":"uint256","nodeType":"ElementaryTypeName","src":"14678:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2731,"nodeType":"ArrayTypeName","src":"14678:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2735,"mutability":"mutable","name":"calldatas","nameLocation":"14726:9:4","nodeType":"VariableDeclaration","scope":2742,"src":"14711:24:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":2733,"name":"bytes","nodeType":"ElementaryTypeName","src":"14711:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":2734,"nodeType":"ArrayTypeName","src":"14711:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":2737,"mutability":"mutable","name":"descriptionHash","nameLocation":"14753:15:4","nodeType":"VariableDeclaration","scope":2742,"src":"14745:23:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2736,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14745:7:4","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"14634:140:4"},"returnParameters":{"id":2741,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2740,"mutability":"mutable","name":"proposalId","nameLocation":"14801:10:4","nodeType":"VariableDeclaration","scope":2742,"src":"14793:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2739,"name":"uint256","nodeType":"ElementaryTypeName","src":"14793:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14792:20:4"},"scope":2811,"src":"14619:194:4","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2743,"nodeType":"StructuredDocumentation","src":"14819:75:4","text":" @dev Cast a vote\n Emits a {VoteCast} event."},"functionSelector":"56781388","id":2752,"implemented":false,"kind":"function","modifiers":[],"name":"castVote","nameLocation":"14908:8:4","nodeType":"FunctionDefinition","parameters":{"id":2748,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2745,"mutability":"mutable","name":"proposalId","nameLocation":"14925:10:4","nodeType":"VariableDeclaration","scope":2752,"src":"14917:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2744,"name":"uint256","nodeType":"ElementaryTypeName","src":"14917:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2747,"mutability":"mutable","name":"support","nameLocation":"14943:7:4","nodeType":"VariableDeclaration","scope":2752,"src":"14937:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2746,"name":"uint8","nodeType":"ElementaryTypeName","src":"14937:5:4","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"14916:35:4"},"returnParameters":{"id":2751,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2750,"mutability":"mutable","name":"balance","nameLocation":"14978:7:4","nodeType":"VariableDeclaration","scope":2752,"src":"14970:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2749,"name":"uint256","nodeType":"ElementaryTypeName","src":"14970:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14969:17:4"},"scope":2811,"src":"14899:88:4","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2753,"nodeType":"StructuredDocumentation","src":"14993:89:4","text":" @dev Cast a vote with a reason\n Emits a {VoteCast} event."},"functionSelector":"7b3c71d3","id":2764,"implemented":false,"kind":"function","modifiers":[],"name":"castVoteWithReason","nameLocation":"15096:18:4","nodeType":"FunctionDefinition","parameters":{"id":2760,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2755,"mutability":"mutable","name":"proposalId","nameLocation":"15132:10:4","nodeType":"VariableDeclaration","scope":2764,"src":"15124:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2754,"name":"uint256","nodeType":"ElementaryTypeName","src":"15124:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2757,"mutability":"mutable","name":"support","nameLocation":"15158:7:4","nodeType":"VariableDeclaration","scope":2764,"src":"15152:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2756,"name":"uint8","nodeType":"ElementaryTypeName","src":"15152:5:4","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2759,"mutability":"mutable","name":"reason","nameLocation":"15191:6:4","nodeType":"VariableDeclaration","scope":2764,"src":"15175:22:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":2758,"name":"string","nodeType":"ElementaryTypeName","src":"15175:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"15114:89:4"},"returnParameters":{"id":2763,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2762,"mutability":"mutable","name":"balance","nameLocation":"15230:7:4","nodeType":"VariableDeclaration","scope":2764,"src":"15222:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2761,"name":"uint256","nodeType":"ElementaryTypeName","src":"15222:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15221:17:4"},"scope":2811,"src":"15087:152:4","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2765,"nodeType":"StructuredDocumentation","src":"15245:181:4","text":" @dev Cast a vote with a reason and additional encoded parameters\n Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params."},"functionSelector":"5f398a14","id":2778,"implemented":false,"kind":"function","modifiers":[],"name":"castVoteWithReasonAndParams","nameLocation":"15440:27:4","nodeType":"FunctionDefinition","parameters":{"id":2774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2767,"mutability":"mutable","name":"proposalId","nameLocation":"15485:10:4","nodeType":"VariableDeclaration","scope":2778,"src":"15477:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2766,"name":"uint256","nodeType":"ElementaryTypeName","src":"15477:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2769,"mutability":"mutable","name":"support","nameLocation":"15511:7:4","nodeType":"VariableDeclaration","scope":2778,"src":"15505:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2768,"name":"uint8","nodeType":"ElementaryTypeName","src":"15505:5:4","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2771,"mutability":"mutable","name":"reason","nameLocation":"15544:6:4","nodeType":"VariableDeclaration","scope":2778,"src":"15528:22:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":2770,"name":"string","nodeType":"ElementaryTypeName","src":"15528:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2773,"mutability":"mutable","name":"params","nameLocation":"15573:6:4","nodeType":"VariableDeclaration","scope":2778,"src":"15560:19:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2772,"name":"bytes","nodeType":"ElementaryTypeName","src":"15560:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15467:118:4"},"returnParameters":{"id":2777,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2776,"mutability":"mutable","name":"balance","nameLocation":"15612:7:4","nodeType":"VariableDeclaration","scope":2778,"src":"15604:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2775,"name":"uint256","nodeType":"ElementaryTypeName","src":"15604:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15603:17:4"},"scope":2811,"src":"15431:190:4","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2779,"nodeType":"StructuredDocumentation","src":"15627:142:4","text":" @dev Cast a vote using the voter's signature, including ERC-1271 signature support.\n Emits a {VoteCast} event."},"functionSelector":"8ff262e3","id":2792,"implemented":false,"kind":"function","modifiers":[],"name":"castVoteBySig","nameLocation":"15783:13:4","nodeType":"FunctionDefinition","parameters":{"id":2788,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2781,"mutability":"mutable","name":"proposalId","nameLocation":"15814:10:4","nodeType":"VariableDeclaration","scope":2792,"src":"15806:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2780,"name":"uint256","nodeType":"ElementaryTypeName","src":"15806:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2783,"mutability":"mutable","name":"support","nameLocation":"15840:7:4","nodeType":"VariableDeclaration","scope":2792,"src":"15834:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2782,"name":"uint8","nodeType":"ElementaryTypeName","src":"15834:5:4","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2785,"mutability":"mutable","name":"voter","nameLocation":"15865:5:4","nodeType":"VariableDeclaration","scope":2792,"src":"15857:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2784,"name":"address","nodeType":"ElementaryTypeName","src":"15857:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2787,"mutability":"mutable","name":"signature","nameLocation":"15893:9:4","nodeType":"VariableDeclaration","scope":2792,"src":"15880:22:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2786,"name":"bytes","nodeType":"ElementaryTypeName","src":"15880:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15796:112:4"},"returnParameters":{"id":2791,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2790,"mutability":"mutable","name":"balance","nameLocation":"15935:7:4","nodeType":"VariableDeclaration","scope":2792,"src":"15927:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2789,"name":"uint256","nodeType":"ElementaryTypeName","src":"15927:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15926:17:4"},"scope":2811,"src":"15774:170:4","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":2793,"nodeType":"StructuredDocumentation","src":"15950:255:4","text":" @dev Cast a vote with a reason and additional encoded parameters using the voter's signature,\n including ERC-1271 signature support.\n Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params."},"functionSelector":"5b8d0e0d","id":2810,"implemented":false,"kind":"function","modifiers":[],"name":"castVoteWithReasonAndParamsBySig","nameLocation":"16219:32:4","nodeType":"FunctionDefinition","parameters":{"id":2806,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2795,"mutability":"mutable","name":"proposalId","nameLocation":"16269:10:4","nodeType":"VariableDeclaration","scope":2810,"src":"16261:18:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2794,"name":"uint256","nodeType":"ElementaryTypeName","src":"16261:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2797,"mutability":"mutable","name":"support","nameLocation":"16295:7:4","nodeType":"VariableDeclaration","scope":2810,"src":"16289:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2796,"name":"uint8","nodeType":"ElementaryTypeName","src":"16289:5:4","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":2799,"mutability":"mutable","name":"voter","nameLocation":"16320:5:4","nodeType":"VariableDeclaration","scope":2810,"src":"16312:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2798,"name":"address","nodeType":"ElementaryTypeName","src":"16312:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2801,"mutability":"mutable","name":"reason","nameLocation":"16351:6:4","nodeType":"VariableDeclaration","scope":2810,"src":"16335:22:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":2800,"name":"string","nodeType":"ElementaryTypeName","src":"16335:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2803,"mutability":"mutable","name":"params","nameLocation":"16380:6:4","nodeType":"VariableDeclaration","scope":2810,"src":"16367:19:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2802,"name":"bytes","nodeType":"ElementaryTypeName","src":"16367:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2805,"mutability":"mutable","name":"signature","nameLocation":"16409:9:4","nodeType":"VariableDeclaration","scope":2810,"src":"16396:22:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2804,"name":"bytes","nodeType":"ElementaryTypeName","src":"16396:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16251:173:4"},"returnParameters":{"id":2809,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2808,"mutability":"mutable","name":"balance","nameLocation":"16451:7:4","nodeType":"VariableDeclaration","scope":2810,"src":"16443:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2807,"name":"uint256","nodeType":"ElementaryTypeName","src":"16443:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16442:17:4"},"scope":2811,"src":"16210:250:4","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":2812,"src":"499:15963:4","usedErrors":[2367,2372,2375,2380,2385,2395,2400,2409,2414,2417,2420,2423,2428,2433,2438,2445],"usedEvents":[2470,2477,2482,2487,2500,2515]}],"src":"108:16355:4"},"id":4},"@openzeppelin/contracts/governance/TimelockController.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/TimelockController.sol","exportedSymbols":{"AccessControl":[295],"Address":[7098],"ERC1155Holder":[5852],"ERC721Holder":[6838],"TimelockController":[3831]},"id":3832,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2813,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"117:24:5"},{"absolutePath":"@openzeppelin/contracts/access/AccessControl.sol","file":"../access/AccessControl.sol","id":2815,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3832,"sourceUnit":296,"src":"143:58:5","symbolAliases":[{"foreign":{"id":2814,"name":"AccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":295,"src":"151:13:5","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol","file":"../token/ERC721/utils/ERC721Holder.sol","id":2817,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3832,"sourceUnit":6839,"src":"202:68:5","symbolAliases":[{"foreign":{"id":2816,"name":"ERC721Holder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6838,"src":"210:12:5","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol","file":"../token/ERC1155/utils/ERC1155Holder.sol","id":2819,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3832,"sourceUnit":5853,"src":"271:71:5","symbolAliases":[{"foreign":{"id":2818,"name":"ERC1155Holder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"279:13:5","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"../utils/Address.sol","id":2821,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3832,"sourceUnit":7099,"src":"343:45:5","symbolAliases":[{"foreign":{"id":2820,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7098,"src":"351:7:5","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":2823,"name":"AccessControl","nameLocations":["1115:13:5"],"nodeType":"IdentifierPath","referencedDeclaration":295,"src":"1115:13:5"},"id":2824,"nodeType":"InheritanceSpecifier","src":"1115:13:5"},{"baseName":{"id":2825,"name":"ERC721Holder","nameLocations":["1130:12:5"],"nodeType":"IdentifierPath","referencedDeclaration":6838,"src":"1130:12:5"},"id":2826,"nodeType":"InheritanceSpecifier","src":"1130:12:5"},{"baseName":{"id":2827,"name":"ERC1155Holder","nameLocations":["1144:13:5"],"nodeType":"IdentifierPath","referencedDeclaration":5852,"src":"1144:13:5"},"id":2828,"nodeType":"InheritanceSpecifier","src":"1144:13:5"}],"canonicalName":"TimelockController","contractDependencies":[],"contractKind":"contract","documentation":{"id":2822,"nodeType":"StructuredDocumentation","src":"390:693:5","text":" @dev Contract module which acts as a timelocked controller. When set as the\n owner of an `Ownable` smart contract, it enforces a timelock on all\n `onlyOwner` maintenance operations. This gives time for users of the\n controlled contract to exit before a potentially dangerous maintenance\n operation is applied.\n By default, this contract is self administered, meaning administration tasks\n have to go through the timelock process. The proposer (resp executor) role\n is in charge of proposing (resp executing) operations. A common use case is\n to position this {TimelockController} as the owner of a smart contract, with\n a multisig or a DAO as the sole proposer."},"fullyImplemented":true,"id":3831,"linearizedBaseContracts":[3831,5852,5771,6838,6811,295,9806,9818,378,7128],"name":"TimelockController","nameLocation":"1093:18:5","nodeType":"ContractDefinition","nodes":[{"constant":true,"functionSelector":"8f61f4f5","id":2833,"mutability":"constant","name":"PROPOSER_ROLE","nameLocation":"1188:13:5","nodeType":"VariableDeclaration","scope":3831,"src":"1164:66:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2829,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1164:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"50524f504f5345525f524f4c45","id":2831,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1214:15:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_b09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1","typeString":"literal_string \"PROPOSER_ROLE\""},"value":"PROPOSER_ROLE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_b09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1","typeString":"literal_string \"PROPOSER_ROLE\""}],"id":2830,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"1204:9:5","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":2832,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1204:26:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"functionSelector":"07bd0265","id":2838,"mutability":"constant","name":"EXECUTOR_ROLE","nameLocation":"1260:13:5","nodeType":"VariableDeclaration","scope":3831,"src":"1236:66:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2834,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1236:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"4558454355544f525f524f4c45","id":2836,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1286:15:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_d8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63","typeString":"literal_string \"EXECUTOR_ROLE\""},"value":"EXECUTOR_ROLE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_d8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63","typeString":"literal_string \"EXECUTOR_ROLE\""}],"id":2835,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"1276:9:5","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":2837,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1276:26:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"functionSelector":"b08e51c0","id":2843,"mutability":"constant","name":"CANCELLER_ROLE","nameLocation":"1332:14:5","nodeType":"VariableDeclaration","scope":3831,"src":"1308:68:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2839,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1308:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"43414e43454c4c45525f524f4c45","id":2841,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1359:16:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_fd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f783","typeString":"literal_string \"CANCELLER_ROLE\""},"value":"CANCELLER_ROLE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_fd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f783","typeString":"literal_string \"CANCELLER_ROLE\""}],"id":2840,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"1349:9:5","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":2842,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1349:27:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"id":2849,"mutability":"constant","name":"_DONE_TIMESTAMP","nameLocation":"1408:15:5","nodeType":"VariableDeclaration","scope":3831,"src":"1382:54:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2844,"name":"uint256","nodeType":"ElementaryTypeName","src":"1382:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"arguments":[{"hexValue":"31","id":2847,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1434:1:5","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":2846,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1426:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2845,"name":"uint256","nodeType":"ElementaryTypeName","src":"1426:7:5","typeDescriptions":{}}},"id":2848,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1426:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2853,"mutability":"mutable","name":"_timestamps","nameLocation":"1482:11:5","nodeType":"VariableDeclaration","scope":3831,"src":"1443:50:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_uint256_$","typeString":"mapping(bytes32 => uint256)"},"typeName":{"id":2852,"keyName":"id","keyNameLocation":"1459:2:5","keyType":{"id":2850,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1451:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"1443:30:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_uint256_$","typeString":"mapping(bytes32 => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2851,"name":"uint256","nodeType":"ElementaryTypeName","src":"1465:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":2855,"mutability":"mutable","name":"_minDelay","nameLocation":"1515:9:5","nodeType":"VariableDeclaration","scope":3831,"src":"1499:25:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2854,"name":"uint256","nodeType":"ElementaryTypeName","src":"1499:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"canonicalName":"TimelockController.OperationState","id":2860,"members":[{"id":2856,"name":"Unset","nameLocation":"1561:5:5","nodeType":"EnumValue","src":"1561:5:5"},{"id":2857,"name":"Waiting","nameLocation":"1576:7:5","nodeType":"EnumValue","src":"1576:7:5"},{"id":2858,"name":"Ready","nameLocation":"1593:5:5","nodeType":"EnumValue","src":"1593:5:5"},{"id":2859,"name":"Done","nameLocation":"1608:4:5","nodeType":"EnumValue","src":"1608:4:5"}],"name":"OperationState","nameLocation":"1536:14:5","nodeType":"EnumDefinition","src":"1531:87:5"},{"documentation":{"id":2861,"nodeType":"StructuredDocumentation","src":"1624:85:5","text":" @dev Mismatch between the parameters length for an operation call."},"errorSelector":"ffb03211","id":2869,"name":"TimelockInvalidOperationLength","nameLocation":"1720:30:5","nodeType":"ErrorDefinition","parameters":{"id":2868,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2863,"mutability":"mutable","name":"targets","nameLocation":"1759:7:5","nodeType":"VariableDeclaration","scope":2869,"src":"1751:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2862,"name":"uint256","nodeType":"ElementaryTypeName","src":"1751:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2865,"mutability":"mutable","name":"payloads","nameLocation":"1776:8:5","nodeType":"VariableDeclaration","scope":2869,"src":"1768:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2864,"name":"uint256","nodeType":"ElementaryTypeName","src":"1768:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2867,"mutability":"mutable","name":"values","nameLocation":"1794:6:5","nodeType":"VariableDeclaration","scope":2869,"src":"1786:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2866,"name":"uint256","nodeType":"ElementaryTypeName","src":"1786:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1750:51:5"},"src":"1714:88:5"},{"documentation":{"id":2870,"nodeType":"StructuredDocumentation","src":"1808:78:5","text":" @dev The schedule operation doesn't meet the minimum delay."},"errorSelector":"54336609","id":2876,"name":"TimelockInsufficientDelay","nameLocation":"1897:25:5","nodeType":"ErrorDefinition","parameters":{"id":2875,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2872,"mutability":"mutable","name":"delay","nameLocation":"1931:5:5","nodeType":"VariableDeclaration","scope":2876,"src":"1923:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2871,"name":"uint256","nodeType":"ElementaryTypeName","src":"1923:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2874,"mutability":"mutable","name":"minDelay","nameLocation":"1946:8:5","nodeType":"VariableDeclaration","scope":2876,"src":"1938:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2873,"name":"uint256","nodeType":"ElementaryTypeName","src":"1938:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1922:33:5"},"src":"1891:65:5"},{"documentation":{"id":2877,"nodeType":"StructuredDocumentation","src":"1962:253:5","text":" @dev The current state of an operation is not as required.\n The `expectedStates` is a bitmap with the bits enabled for each OperationState enum position\n counting from right to left.\n See {_encodeStateBitmap}."},"errorSelector":"5ead8eb5","id":2883,"name":"TimelockUnexpectedOperationState","nameLocation":"2226:32:5","nodeType":"ErrorDefinition","parameters":{"id":2882,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2879,"mutability":"mutable","name":"operationId","nameLocation":"2267:11:5","nodeType":"VariableDeclaration","scope":2883,"src":"2259:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2878,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2259:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2881,"mutability":"mutable","name":"expectedStates","nameLocation":"2288:14:5","nodeType":"VariableDeclaration","scope":2883,"src":"2280:22:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2880,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2280:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2258:45:5"},"src":"2220:84:5"},{"documentation":{"id":2884,"nodeType":"StructuredDocumentation","src":"2310:69:5","text":" @dev The predecessor to an operation not yet done."},"errorSelector":"90a9a618","id":2888,"name":"TimelockUnexecutedPredecessor","nameLocation":"2390:29:5","nodeType":"ErrorDefinition","parameters":{"id":2887,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2886,"mutability":"mutable","name":"predecessorId","nameLocation":"2428:13:5","nodeType":"VariableDeclaration","scope":2888,"src":"2420:21:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2885,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2420:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2419:23:5"},"src":"2384:59:5"},{"documentation":{"id":2889,"nodeType":"StructuredDocumentation","src":"2449:61:5","text":" @dev The caller account is not authorized."},"errorSelector":"e2850c59","id":2893,"name":"TimelockUnauthorizedCaller","nameLocation":"2521:26:5","nodeType":"ErrorDefinition","parameters":{"id":2892,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2891,"mutability":"mutable","name":"caller","nameLocation":"2556:6:5","nodeType":"VariableDeclaration","scope":2893,"src":"2548:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2890,"name":"address","nodeType":"ElementaryTypeName","src":"2548:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2547:16:5"},"src":"2515:49:5"},{"anonymous":false,"documentation":{"id":2894,"nodeType":"StructuredDocumentation","src":"2570:83:5","text":" @dev Emitted when a call is scheduled as part of operation `id`."},"eventSelector":"4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca","id":2910,"name":"CallScheduled","nameLocation":"2664:13:5","nodeType":"EventDefinition","parameters":{"id":2909,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2896,"indexed":true,"mutability":"mutable","name":"id","nameLocation":"2703:2:5","nodeType":"VariableDeclaration","scope":2910,"src":"2687:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2895,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2687:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2898,"indexed":true,"mutability":"mutable","name":"index","nameLocation":"2731:5:5","nodeType":"VariableDeclaration","scope":2910,"src":"2715:21:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2897,"name":"uint256","nodeType":"ElementaryTypeName","src":"2715:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2900,"indexed":false,"mutability":"mutable","name":"target","nameLocation":"2754:6:5","nodeType":"VariableDeclaration","scope":2910,"src":"2746:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2899,"name":"address","nodeType":"ElementaryTypeName","src":"2746:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2902,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"2778:5:5","nodeType":"VariableDeclaration","scope":2910,"src":"2770:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2901,"name":"uint256","nodeType":"ElementaryTypeName","src":"2770:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2904,"indexed":false,"mutability":"mutable","name":"data","nameLocation":"2799:4:5","nodeType":"VariableDeclaration","scope":2910,"src":"2793:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2903,"name":"bytes","nodeType":"ElementaryTypeName","src":"2793:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2906,"indexed":false,"mutability":"mutable","name":"predecessor","nameLocation":"2821:11:5","nodeType":"VariableDeclaration","scope":2910,"src":"2813:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2905,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2813:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2908,"indexed":false,"mutability":"mutable","name":"delay","nameLocation":"2850:5:5","nodeType":"VariableDeclaration","scope":2910,"src":"2842:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2907,"name":"uint256","nodeType":"ElementaryTypeName","src":"2842:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2677:184:5"},"src":"2658:204:5"},{"anonymous":false,"documentation":{"id":2911,"nodeType":"StructuredDocumentation","src":"2868:83:5","text":" @dev Emitted when a call is performed as part of operation `id`."},"eventSelector":"c2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b58","id":2923,"name":"CallExecuted","nameLocation":"2962:12:5","nodeType":"EventDefinition","parameters":{"id":2922,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2913,"indexed":true,"mutability":"mutable","name":"id","nameLocation":"2991:2:5","nodeType":"VariableDeclaration","scope":2923,"src":"2975:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2912,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2975:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2915,"indexed":true,"mutability":"mutable","name":"index","nameLocation":"3011:5:5","nodeType":"VariableDeclaration","scope":2923,"src":"2995:21:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2914,"name":"uint256","nodeType":"ElementaryTypeName","src":"2995:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2917,"indexed":false,"mutability":"mutable","name":"target","nameLocation":"3026:6:5","nodeType":"VariableDeclaration","scope":2923,"src":"3018:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2916,"name":"address","nodeType":"ElementaryTypeName","src":"3018:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2919,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"3042:5:5","nodeType":"VariableDeclaration","scope":2923,"src":"3034:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2918,"name":"uint256","nodeType":"ElementaryTypeName","src":"3034:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2921,"indexed":false,"mutability":"mutable","name":"data","nameLocation":"3055:4:5","nodeType":"VariableDeclaration","scope":2923,"src":"3049:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2920,"name":"bytes","nodeType":"ElementaryTypeName","src":"3049:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2974:86:5"},"src":"2956:105:5"},{"anonymous":false,"documentation":{"id":2924,"nodeType":"StructuredDocumentation","src":"3067:82:5","text":" @dev Emitted when new proposal is scheduled with non-zero salt."},"eventSelector":"20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d0387","id":2930,"name":"CallSalt","nameLocation":"3160:8:5","nodeType":"EventDefinition","parameters":{"id":2929,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2926,"indexed":true,"mutability":"mutable","name":"id","nameLocation":"3185:2:5","nodeType":"VariableDeclaration","scope":2930,"src":"3169:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2925,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3169:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":2928,"indexed":false,"mutability":"mutable","name":"salt","nameLocation":"3197:4:5","nodeType":"VariableDeclaration","scope":2930,"src":"3189:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2927,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3189:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3168:34:5"},"src":"3154:49:5"},{"anonymous":false,"documentation":{"id":2931,"nodeType":"StructuredDocumentation","src":"3209:65:5","text":" @dev Emitted when operation `id` is cancelled."},"eventSelector":"baa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb70","id":2935,"name":"Cancelled","nameLocation":"3285:9:5","nodeType":"EventDefinition","parameters":{"id":2934,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2933,"indexed":true,"mutability":"mutable","name":"id","nameLocation":"3311:2:5","nodeType":"VariableDeclaration","scope":2935,"src":"3295:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2932,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3295:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3294:20:5"},"src":"3279:36:5"},{"anonymous":false,"documentation":{"id":2936,"nodeType":"StructuredDocumentation","src":"3321:89:5","text":" @dev Emitted when the minimum delay for future operations is modified."},"eventSelector":"11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5","id":2942,"name":"MinDelayChange","nameLocation":"3421:14:5","nodeType":"EventDefinition","parameters":{"id":2941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2938,"indexed":false,"mutability":"mutable","name":"oldDuration","nameLocation":"3444:11:5","nodeType":"VariableDeclaration","scope":2942,"src":"3436:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2937,"name":"uint256","nodeType":"ElementaryTypeName","src":"3436:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2940,"indexed":false,"mutability":"mutable","name":"newDuration","nameLocation":"3465:11:5","nodeType":"VariableDeclaration","scope":2942,"src":"3457:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2939,"name":"uint256","nodeType":"ElementaryTypeName","src":"3457:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3435:42:5"},"src":"3415:63:5"},{"body":{"id":3033,"nodeType":"Block","src":"4349:660:5","statements":[{"expression":{"arguments":[{"id":2957,"name":"DEFAULT_ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29,"src":"4401:18:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"id":2960,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"4429:4:5","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}],"id":2959,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4421:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2958,"name":"address","nodeType":"ElementaryTypeName","src":"4421:7:5","typeDescriptions":{}}},"id":2961,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4421:13:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2956,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"4390:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":2962,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4390:45:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2963,"nodeType":"ExpressionStatement","src":"4390:45:5"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2964,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2953,"src":"4476:5:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2967,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4493:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2966,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4485:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2965,"name":"address","nodeType":"ElementaryTypeName","src":"4485:7:5","typeDescriptions":{}}},"id":2968,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4485:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4476:19:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2976,"nodeType":"IfStatement","src":"4472:87:5","trueBody":{"id":2975,"nodeType":"Block","src":"4497:62:5","statements":[{"expression":{"arguments":[{"id":2971,"name":"DEFAULT_ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29,"src":"4522:18:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":2972,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2953,"src":"4542:5:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2970,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"4511:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":2973,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4511:37:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2974,"nodeType":"ExpressionStatement","src":"4511:37:5"}]}},{"body":{"id":3002,"nodeType":"Block","src":"4661:118:5","statements":[{"expression":{"arguments":[{"id":2989,"name":"PROPOSER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2833,"src":"4686:13:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"baseExpression":{"id":2990,"name":"proposers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2948,"src":"4701:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":2992,"indexExpression":{"id":2991,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2978,"src":"4711:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4701:12:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2988,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"4675:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":2993,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4675:39:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2994,"nodeType":"ExpressionStatement","src":"4675:39:5"},{"expression":{"arguments":[{"id":2996,"name":"CANCELLER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2843,"src":"4739:14:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"baseExpression":{"id":2997,"name":"proposers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2948,"src":"4755:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":2999,"indexExpression":{"id":2998,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2978,"src":"4765:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4755:12:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":2995,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"4728:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":3000,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4728:40:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3001,"nodeType":"ExpressionStatement","src":"4728:40:5"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2981,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2978,"src":"4634:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":2982,"name":"proposers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2948,"src":"4638:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":2983,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4648:6:5","memberName":"length","nodeType":"MemberAccess","src":"4638:16:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4634:20:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3003,"initializationExpression":{"assignments":[2978],"declarations":[{"constant":false,"id":2978,"mutability":"mutable","name":"i","nameLocation":"4627:1:5","nodeType":"VariableDeclaration","scope":3003,"src":"4619:9:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2977,"name":"uint256","nodeType":"ElementaryTypeName","src":"4619:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2980,"initialValue":{"hexValue":"30","id":2979,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4631:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"4619:13:5"},"loopExpression":{"expression":{"id":2986,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"4656:3:5","subExpression":{"id":2985,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2978,"src":"4658:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2987,"nodeType":"ExpressionStatement","src":"4656:3:5"},"nodeType":"ForStatement","src":"4614:165:5"},{"body":{"id":3022,"nodeType":"Block","src":"4866:64:5","statements":[{"expression":{"arguments":[{"id":3016,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2838,"src":"4891:13:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"baseExpression":{"id":3017,"name":"executors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2951,"src":"4906:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":3019,"indexExpression":{"id":3018,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3005,"src":"4916:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4906:12:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":3015,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"4880:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":3020,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4880:39:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3021,"nodeType":"ExpressionStatement","src":"4880:39:5"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3011,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3008,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3005,"src":"4839:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":3009,"name":"executors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2951,"src":"4843:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":3010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4853:6:5","memberName":"length","nodeType":"MemberAccess","src":"4843:16:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4839:20:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3023,"initializationExpression":{"assignments":[3005],"declarations":[{"constant":false,"id":3005,"mutability":"mutable","name":"i","nameLocation":"4832:1:5","nodeType":"VariableDeclaration","scope":3023,"src":"4824:9:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3004,"name":"uint256","nodeType":"ElementaryTypeName","src":"4824:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3007,"initialValue":{"hexValue":"30","id":3006,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4836:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"4824:13:5"},"loopExpression":{"expression":{"id":3013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"4861:3:5","subExpression":{"id":3012,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3005,"src":"4863:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3014,"nodeType":"ExpressionStatement","src":"4861:3:5"},"nodeType":"ForStatement","src":"4819:111:5"},{"expression":{"id":3026,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3024,"name":"_minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2855,"src":"4940:9:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3025,"name":"minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2945,"src":"4952:8:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4940:20:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3027,"nodeType":"ExpressionStatement","src":"4940:20:5"},{"eventCall":{"arguments":[{"hexValue":"30","id":3029,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4990:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":3030,"name":"minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2945,"src":"4993:8:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3028,"name":"MinDelayChange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2942,"src":"4975:14:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":3031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4975:27:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3032,"nodeType":"EmitStatement","src":"4970:32:5"}]},"documentation":{"id":2943,"nodeType":"StructuredDocumentation","src":"3484:759:5","text":" @dev Initializes the contract with the following parameters:\n - `minDelay`: initial minimum delay in seconds for operations\n - `proposers`: accounts to be granted proposer and canceller roles\n - `executors`: accounts to be granted executor role\n - `admin`: optional account to be granted admin role; disable with zero address\n IMPORTANT: The optional admin can aid with initial configuration of roles after deployment\n without being subject to delay, but this role should be subsequently renounced in favor of\n administration through timelocked proposals. Previous versions of this contract would assign\n this admin to the deployer automatically and should be renounced as well."},"id":3034,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":2954,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2945,"mutability":"mutable","name":"minDelay","nameLocation":"4268:8:5","nodeType":"VariableDeclaration","scope":3034,"src":"4260:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2944,"name":"uint256","nodeType":"ElementaryTypeName","src":"4260:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2948,"mutability":"mutable","name":"proposers","nameLocation":"4295:9:5","nodeType":"VariableDeclaration","scope":3034,"src":"4278:26:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2946,"name":"address","nodeType":"ElementaryTypeName","src":"4278:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2947,"nodeType":"ArrayTypeName","src":"4278:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2951,"mutability":"mutable","name":"executors","nameLocation":"4323:9:5","nodeType":"VariableDeclaration","scope":3034,"src":"4306:26:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2949,"name":"address","nodeType":"ElementaryTypeName","src":"4306:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2950,"nodeType":"ArrayTypeName","src":"4306:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2953,"mutability":"mutable","name":"admin","nameLocation":"4342:5:5","nodeType":"VariableDeclaration","scope":3034,"src":"4334:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2952,"name":"address","nodeType":"ElementaryTypeName","src":"4334:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4259:89:5"},"returnParameters":{"id":2955,"nodeType":"ParameterList","parameters":[],"src":"4349:0:5"},"scope":3831,"src":"4248:761:5","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":3056,"nodeType":"Block","src":"5333:114:5","statements":[{"condition":{"id":3046,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5347:26:5","subExpression":{"arguments":[{"id":3040,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3037,"src":"5356:4:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"hexValue":"30","id":3043,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5370:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":3042,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5362:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3041,"name":"address","nodeType":"ElementaryTypeName","src":"5362:7:5","typeDescriptions":{}}},"id":3044,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5362:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":3039,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":80,"src":"5348:7:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":3045,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5348:25:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3054,"nodeType":"IfStatement","src":"5343:87:5","trueBody":{"id":3053,"nodeType":"Block","src":"5375:55:5","statements":[{"expression":{"arguments":[{"id":3048,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3037,"src":"5400:4:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":3049,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"5406:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":3050,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5406:12:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":3047,"name":"_checkRole","nodeType":"Identifier","overloadedDeclarations":[93,114],"referencedDeclaration":114,"src":"5389:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$__$","typeString":"function (bytes32,address) view"}},"id":3051,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5389:30:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3052,"nodeType":"ExpressionStatement","src":"5389:30:5"}]}},{"id":3055,"nodeType":"PlaceholderStatement","src":"5439:1:5"}]},"documentation":{"id":3035,"nodeType":"StructuredDocumentation","src":"5015:271:5","text":" @dev Modifier to make a function callable only by a certain role. In\n addition to checking the sender's role, `address(0)` 's role is also\n considered. Granting a role to `address(0)` is equivalent to enabling\n this role for everyone."},"id":3057,"name":"onlyRoleOrOpenRole","nameLocation":"5300:18:5","nodeType":"ModifierDefinition","parameters":{"id":3038,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3037,"mutability":"mutable","name":"role","nameLocation":"5327:4:5","nodeType":"VariableDeclaration","scope":3057,"src":"5319:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3036,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5319:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5318:14:5"},"src":"5291:156:5","virtual":false,"visibility":"internal"},{"body":{"id":3061,"nodeType":"Block","src":"5584:2:5","statements":[]},"documentation":{"id":3058,"nodeType":"StructuredDocumentation","src":"5453:91:5","text":" @dev Contract might receive/hold ETH as part of the maintenance process."},"id":3062,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":3059,"nodeType":"ParameterList","parameters":[],"src":"5556:2:5"},"returnParameters":{"id":3060,"nodeType":"ParameterList","parameters":[],"src":"5584:0:5"},"scope":3831,"src":"5549:37:5","stateMutability":"payable","virtual":true,"visibility":"external"},{"baseFunctions":[62,5807],"body":{"id":3078,"nodeType":"Block","src":"5788:60:5","statements":[{"expression":{"arguments":[{"id":3075,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3065,"src":"5829:11:5","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":3073,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"5805:5:5","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TimelockController_$3831_$","typeString":"type(contract super TimelockController)"}},"id":3074,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5811:17:5","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":5807,"src":"5805:23:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":3076,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5805:36:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3072,"id":3077,"nodeType":"Return","src":"5798:43:5"}]},"documentation":{"id":3063,"nodeType":"StructuredDocumentation","src":"5592:56:5","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":3079,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"5662:17:5","nodeType":"FunctionDefinition","overrides":{"id":3069,"nodeType":"OverrideSpecifier","overrides":[{"id":3067,"name":"AccessControl","nameLocations":["5743:13:5"],"nodeType":"IdentifierPath","referencedDeclaration":295,"src":"5743:13:5"},{"id":3068,"name":"ERC1155Holder","nameLocations":["5758:13:5"],"nodeType":"IdentifierPath","referencedDeclaration":5852,"src":"5758:13:5"}],"src":"5734:38:5"},"parameters":{"id":3066,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3065,"mutability":"mutable","name":"interfaceId","nameLocation":"5696:11:5","nodeType":"VariableDeclaration","scope":3079,"src":"5689:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":3064,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5689:6:5","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"5679:34:5"},"returnParameters":{"id":3072,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3071,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3079,"src":"5782:4:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3070,"name":"bool","nodeType":"ElementaryTypeName","src":"5782:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5781:6:5"},"scope":3831,"src":"5653:195:5","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":3094,"nodeType":"Block","src":"6066:69:5","statements":[{"expression":{"commonType":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"},"id":3092,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":3088,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3082,"src":"6101:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3087,"name":"getOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3211,"src":"6083:17:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_enum$_OperationState_$2860_$","typeString":"function (bytes32) view returns (enum TimelockController.OperationState)"}},"id":3089,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6083:21:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":3090,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2860,"src":"6108:14:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2860_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3091,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6123:5:5","memberName":"Unset","nodeType":"MemberAccess","referencedDeclaration":2856,"src":"6108:20:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}},"src":"6083:45:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3086,"id":3093,"nodeType":"Return","src":"6076:52:5"}]},"documentation":{"id":3080,"nodeType":"StructuredDocumentation","src":"5854:147:5","text":" @dev Returns whether an id corresponds to a registered operation. This\n includes both Waiting, Ready, and Done operations."},"functionSelector":"31d50750","id":3095,"implemented":true,"kind":"function","modifiers":[],"name":"isOperation","nameLocation":"6015:11:5","nodeType":"FunctionDefinition","parameters":{"id":3083,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3082,"mutability":"mutable","name":"id","nameLocation":"6035:2:5","nodeType":"VariableDeclaration","scope":3095,"src":"6027:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3081,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6027:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6026:12:5"},"returnParameters":{"id":3086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3085,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3095,"src":"6060:4:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3084,"name":"bool","nodeType":"ElementaryTypeName","src":"6060:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6059:6:5"},"scope":3831,"src":"6006:129:5","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":3120,"nodeType":"Block","src":"6337:142:5","statements":[{"assignments":[3105],"declarations":[{"constant":false,"id":3105,"mutability":"mutable","name":"state","nameLocation":"6362:5:5","nodeType":"VariableDeclaration","scope":3120,"src":"6347:20:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"},"typeName":{"id":3104,"nodeType":"UserDefinedTypeName","pathNode":{"id":3103,"name":"OperationState","nameLocations":["6347:14:5"],"nodeType":"IdentifierPath","referencedDeclaration":2860,"src":"6347:14:5"},"referencedDeclaration":2860,"src":"6347:14:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}},"visibility":"internal"}],"id":3109,"initialValue":{"arguments":[{"id":3107,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3098,"src":"6388:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3106,"name":"getOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3211,"src":"6370:17:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_enum$_OperationState_$2860_$","typeString":"function (bytes32) view returns (enum TimelockController.OperationState)"}},"id":3108,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6370:21:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}},"nodeType":"VariableDeclarationStatement","src":"6347:44:5"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3118,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"},"id":3113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3110,"name":"state","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3105,"src":"6408:5:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":3111,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2860,"src":"6417:14:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2860_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3112,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6432:7:5","memberName":"Waiting","nodeType":"MemberAccess","referencedDeclaration":2857,"src":"6417:22:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}},"src":"6408:31:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"},"id":3117,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3114,"name":"state","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3105,"src":"6443:5:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":3115,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2860,"src":"6452:14:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2860_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3116,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6467:5:5","memberName":"Ready","nodeType":"MemberAccess","referencedDeclaration":2858,"src":"6452:20:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}},"src":"6443:29:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6408:64:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3102,"id":3119,"nodeType":"Return","src":"6401:71:5"}]},"documentation":{"id":3096,"nodeType":"StructuredDocumentation","src":"6141:124:5","text":" @dev Returns whether an operation is pending or not. Note that a \"pending\" operation may also be \"ready\"."},"functionSelector":"584b153e","id":3121,"implemented":true,"kind":"function","modifiers":[],"name":"isOperationPending","nameLocation":"6279:18:5","nodeType":"FunctionDefinition","parameters":{"id":3099,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3098,"mutability":"mutable","name":"id","nameLocation":"6306:2:5","nodeType":"VariableDeclaration","scope":3121,"src":"6298:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3097,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6298:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6297:12:5"},"returnParameters":{"id":3102,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3101,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3121,"src":"6331:4:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3100,"name":"bool","nodeType":"ElementaryTypeName","src":"6331:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6330:6:5"},"scope":3831,"src":"6270:209:5","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":3136,"nodeType":"Block","src":"6680:69:5","statements":[{"expression":{"commonType":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"},"id":3134,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":3130,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3124,"src":"6715:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3129,"name":"getOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3211,"src":"6697:17:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_enum$_OperationState_$2860_$","typeString":"function (bytes32) view returns (enum TimelockController.OperationState)"}},"id":3131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6697:21:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":3132,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2860,"src":"6722:14:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2860_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3133,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6737:5:5","memberName":"Ready","nodeType":"MemberAccess","referencedDeclaration":2858,"src":"6722:20:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}},"src":"6697:45:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3128,"id":3135,"nodeType":"Return","src":"6690:52:5"}]},"documentation":{"id":3122,"nodeType":"StructuredDocumentation","src":"6485:125:5","text":" @dev Returns whether an operation is ready for execution. Note that a \"ready\" operation is also \"pending\"."},"functionSelector":"13bc9f20","id":3137,"implemented":true,"kind":"function","modifiers":[],"name":"isOperationReady","nameLocation":"6624:16:5","nodeType":"FunctionDefinition","parameters":{"id":3125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3124,"mutability":"mutable","name":"id","nameLocation":"6649:2:5","nodeType":"VariableDeclaration","scope":3137,"src":"6641:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3123,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6641:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6640:12:5"},"returnParameters":{"id":3128,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3127,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3137,"src":"6674:4:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3126,"name":"bool","nodeType":"ElementaryTypeName","src":"6674:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6673:6:5"},"scope":3831,"src":"6615:134:5","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":3152,"nodeType":"Block","src":"6892:68:5","statements":[{"expression":{"commonType":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"},"id":3150,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":3146,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3140,"src":"6927:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3145,"name":"getOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3211,"src":"6909:17:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_enum$_OperationState_$2860_$","typeString":"function (bytes32) view returns (enum TimelockController.OperationState)"}},"id":3147,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6909:21:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":3148,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2860,"src":"6934:14:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2860_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3149,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6949:4:5","memberName":"Done","nodeType":"MemberAccess","referencedDeclaration":2859,"src":"6934:19:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}},"src":"6909:44:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3144,"id":3151,"nodeType":"Return","src":"6902:51:5"}]},"documentation":{"id":3138,"nodeType":"StructuredDocumentation","src":"6755:68:5","text":" @dev Returns whether an operation is done or not."},"functionSelector":"2ab0f529","id":3153,"implemented":true,"kind":"function","modifiers":[],"name":"isOperationDone","nameLocation":"6837:15:5","nodeType":"FunctionDefinition","parameters":{"id":3141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3140,"mutability":"mutable","name":"id","nameLocation":"6861:2:5","nodeType":"VariableDeclaration","scope":3153,"src":"6853:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3139,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6853:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6852:12:5"},"returnParameters":{"id":3144,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3143,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3153,"src":"6886:4:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3142,"name":"bool","nodeType":"ElementaryTypeName","src":"6886:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6885:6:5"},"scope":3831,"src":"6828:132:5","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":3165,"nodeType":"Block","src":"7180:39:5","statements":[{"expression":{"baseExpression":{"id":3161,"name":"_timestamps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2853,"src":"7197:11:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_uint256_$","typeString":"mapping(bytes32 => uint256)"}},"id":3163,"indexExpression":{"id":3162,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3156,"src":"7209:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7197:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3160,"id":3164,"nodeType":"Return","src":"7190:22:5"}]},"documentation":{"id":3154,"nodeType":"StructuredDocumentation","src":"6966:137:5","text":" @dev Returns the timestamp at which an operation becomes ready (0 for\n unset operations, 1 for done operations)."},"functionSelector":"d45c4435","id":3166,"implemented":true,"kind":"function","modifiers":[],"name":"getTimestamp","nameLocation":"7117:12:5","nodeType":"FunctionDefinition","parameters":{"id":3157,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3156,"mutability":"mutable","name":"id","nameLocation":"7138:2:5","nodeType":"VariableDeclaration","scope":3166,"src":"7130:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3155,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7130:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7129:12:5"},"returnParameters":{"id":3160,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3159,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3166,"src":"7171:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3158,"name":"uint256","nodeType":"ElementaryTypeName","src":"7171:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7170:9:5"},"scope":3831,"src":"7108:111:5","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":3210,"nodeType":"Block","src":"7362:376:5","statements":[{"assignments":[3176],"declarations":[{"constant":false,"id":3176,"mutability":"mutable","name":"timestamp","nameLocation":"7380:9:5","nodeType":"VariableDeclaration","scope":3210,"src":"7372:17:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3175,"name":"uint256","nodeType":"ElementaryTypeName","src":"7372:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3180,"initialValue":{"arguments":[{"id":3178,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3169,"src":"7405:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3177,"name":"getTimestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3166,"src":"7392:12:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_uint256_$","typeString":"function (bytes32) view returns (uint256)"}},"id":3179,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7392:16:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7372:36:5"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3181,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3176,"src":"7422:9:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":3182,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7435:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7422:14:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3190,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3188,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3176,"src":"7500:9:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3189,"name":"_DONE_TIMESTAMP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2849,"src":"7513:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7500:28:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3198,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3195,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3176,"src":"7591:9:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":3196,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967292,"src":"7603:5:5","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7609:9:5","memberName":"timestamp","nodeType":"MemberAccess","src":"7603:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7591:27:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3206,"nodeType":"Block","src":"7680:52:5","statements":[{"expression":{"expression":{"id":3203,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2860,"src":"7701:14:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2860_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3204,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7716:5:5","memberName":"Ready","nodeType":"MemberAccess","referencedDeclaration":2858,"src":"7701:20:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}},"functionReturnParameters":3174,"id":3205,"nodeType":"Return","src":"7694:27:5"}]},"id":3207,"nodeType":"IfStatement","src":"7587:145:5","trueBody":{"id":3202,"nodeType":"Block","src":"7620:54:5","statements":[{"expression":{"expression":{"id":3199,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2860,"src":"7641:14:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2860_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3200,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7656:7:5","memberName":"Waiting","nodeType":"MemberAccess","referencedDeclaration":2857,"src":"7641:22:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}},"functionReturnParameters":3174,"id":3201,"nodeType":"Return","src":"7634:29:5"}]}},"id":3208,"nodeType":"IfStatement","src":"7496:236:5","trueBody":{"id":3194,"nodeType":"Block","src":"7530:51:5","statements":[{"expression":{"expression":{"id":3191,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2860,"src":"7551:14:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2860_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3192,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7566:4:5","memberName":"Done","nodeType":"MemberAccess","referencedDeclaration":2859,"src":"7551:19:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}},"functionReturnParameters":3174,"id":3193,"nodeType":"Return","src":"7544:26:5"}]}},"id":3209,"nodeType":"IfStatement","src":"7418:314:5","trueBody":{"id":3187,"nodeType":"Block","src":"7438:52:5","statements":[{"expression":{"expression":{"id":3184,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2860,"src":"7459:14:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2860_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3185,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7474:5:5","memberName":"Unset","nodeType":"MemberAccess","referencedDeclaration":2856,"src":"7459:20:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}},"functionReturnParameters":3174,"id":3186,"nodeType":"Return","src":"7452:27:5"}]}}]},"documentation":{"id":3167,"nodeType":"StructuredDocumentation","src":"7225:48:5","text":" @dev Returns operation state."},"functionSelector":"7958004c","id":3211,"implemented":true,"kind":"function","modifiers":[],"name":"getOperationState","nameLocation":"7287:17:5","nodeType":"FunctionDefinition","parameters":{"id":3170,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3169,"mutability":"mutable","name":"id","nameLocation":"7313:2:5","nodeType":"VariableDeclaration","scope":3211,"src":"7305:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3168,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7305:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7304:12:5"},"returnParameters":{"id":3174,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3173,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3211,"src":"7346:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"},"typeName":{"id":3172,"nodeType":"UserDefinedTypeName","pathNode":{"id":3171,"name":"OperationState","nameLocations":["7346:14:5"],"nodeType":"IdentifierPath","referencedDeclaration":2860,"src":"7346:14:5"},"referencedDeclaration":2860,"src":"7346:14:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}},"visibility":"internal"}],"src":"7345:16:5"},"scope":3831,"src":"7278:460:5","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":3219,"nodeType":"Block","src":"7996:33:5","statements":[{"expression":{"id":3217,"name":"_minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2855,"src":"8013:9:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3216,"id":3218,"nodeType":"Return","src":"8006:16:5"}]},"documentation":{"id":3212,"nodeType":"StructuredDocumentation","src":"7744:186:5","text":" @dev Returns the minimum delay in seconds for an operation to become valid.\n This value can be changed by executing an operation that calls `updateDelay`."},"functionSelector":"f27a0c92","id":3220,"implemented":true,"kind":"function","modifiers":[],"name":"getMinDelay","nameLocation":"7944:11:5","nodeType":"FunctionDefinition","parameters":{"id":3213,"nodeType":"ParameterList","parameters":[],"src":"7955:2:5"},"returnParameters":{"id":3216,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3215,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3220,"src":"7987:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3214,"name":"uint256","nodeType":"ElementaryTypeName","src":"7987:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7986:9:5"},"scope":3831,"src":"7935:94:5","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":3247,"nodeType":"Block","src":"8336:85:5","statements":[{"expression":{"arguments":[{"arguments":[{"id":3239,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3223,"src":"8374:6:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3240,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3225,"src":"8382:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3241,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3227,"src":"8389:4:5","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":3242,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3229,"src":"8395:11:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3243,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3231,"src":"8408:4:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":3237,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967295,"src":"8363:3:5","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":3238,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8367:6:5","memberName":"encode","nodeType":"MemberAccess","src":"8363:10:5","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":3244,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8363:50:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3236,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"8353:9:5","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3245,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8353:61:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3235,"id":3246,"nodeType":"Return","src":"8346:68:5"}]},"documentation":{"id":3221,"nodeType":"StructuredDocumentation","src":"8035:102:5","text":" @dev Returns the identifier of an operation containing a single\n transaction."},"functionSelector":"8065657f","id":3248,"implemented":true,"kind":"function","modifiers":[],"name":"hashOperation","nameLocation":"8151:13:5","nodeType":"FunctionDefinition","parameters":{"id":3232,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3223,"mutability":"mutable","name":"target","nameLocation":"8182:6:5","nodeType":"VariableDeclaration","scope":3248,"src":"8174:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3222,"name":"address","nodeType":"ElementaryTypeName","src":"8174:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3225,"mutability":"mutable","name":"value","nameLocation":"8206:5:5","nodeType":"VariableDeclaration","scope":3248,"src":"8198:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3224,"name":"uint256","nodeType":"ElementaryTypeName","src":"8198:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3227,"mutability":"mutable","name":"data","nameLocation":"8236:4:5","nodeType":"VariableDeclaration","scope":3248,"src":"8221:19:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3226,"name":"bytes","nodeType":"ElementaryTypeName","src":"8221:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3229,"mutability":"mutable","name":"predecessor","nameLocation":"8258:11:5","nodeType":"VariableDeclaration","scope":3248,"src":"8250:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3228,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8250:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3231,"mutability":"mutable","name":"salt","nameLocation":"8287:4:5","nodeType":"VariableDeclaration","scope":3248,"src":"8279:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3230,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8279:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8164:133:5"},"returnParameters":{"id":3235,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3234,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3248,"src":"8327:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3233,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8327:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8326:9:5"},"scope":3831,"src":"8142:279:5","stateMutability":"pure","virtual":true,"visibility":"public"},{"body":{"id":3278,"nodeType":"Block","src":"8766:91:5","statements":[{"expression":{"arguments":[{"arguments":[{"id":3270,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3252,"src":"8804:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},{"id":3271,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3255,"src":"8813:6:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},{"id":3272,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3258,"src":"8821:8:5","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},{"id":3273,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3260,"src":"8831:11:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3274,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3262,"src":"8844:4:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"},{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"},{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":3268,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967295,"src":"8793:3:5","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":3269,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8797:6:5","memberName":"encode","nodeType":"MemberAccess","src":"8793:10:5","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":3275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8793:56:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3267,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"8783:9:5","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3276,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8783:67:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3266,"id":3277,"nodeType":"Return","src":"8776:74:5"}]},"documentation":{"id":3249,"nodeType":"StructuredDocumentation","src":"8427:105:5","text":" @dev Returns the identifier of an operation containing a batch of\n transactions."},"functionSelector":"b1c5f427","id":3279,"implemented":true,"kind":"function","modifiers":[],"name":"hashOperationBatch","nameLocation":"8546:18:5","nodeType":"FunctionDefinition","parameters":{"id":3263,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3252,"mutability":"mutable","name":"targets","nameLocation":"8593:7:5","nodeType":"VariableDeclaration","scope":3279,"src":"8574:26:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":3250,"name":"address","nodeType":"ElementaryTypeName","src":"8574:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3251,"nodeType":"ArrayTypeName","src":"8574:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":3255,"mutability":"mutable","name":"values","nameLocation":"8629:6:5","nodeType":"VariableDeclaration","scope":3279,"src":"8610:25:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":3253,"name":"uint256","nodeType":"ElementaryTypeName","src":"8610:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3254,"nodeType":"ArrayTypeName","src":"8610:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":3258,"mutability":"mutable","name":"payloads","nameLocation":"8662:8:5","nodeType":"VariableDeclaration","scope":3279,"src":"8645:25:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":3256,"name":"bytes","nodeType":"ElementaryTypeName","src":"8645:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":3257,"nodeType":"ArrayTypeName","src":"8645:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":3260,"mutability":"mutable","name":"predecessor","nameLocation":"8688:11:5","nodeType":"VariableDeclaration","scope":3279,"src":"8680:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3259,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8680:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3262,"mutability":"mutable","name":"salt","nameLocation":"8717:4:5","nodeType":"VariableDeclaration","scope":3279,"src":"8709:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3261,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8709:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8564:163:5"},"returnParameters":{"id":3266,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3265,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3279,"src":"8757:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3264,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8757:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8756:9:5"},"scope":3831,"src":"8537:320:5","stateMutability":"pure","virtual":true,"visibility":"public"},{"body":{"id":3336,"nodeType":"Block","src":"9317:270:5","statements":[{"assignments":[3299],"declarations":[{"constant":false,"id":3299,"mutability":"mutable","name":"id","nameLocation":"9335:2:5","nodeType":"VariableDeclaration","scope":3336,"src":"9327:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3298,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9327:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3307,"initialValue":{"arguments":[{"id":3301,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3282,"src":"9354:6:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3302,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3284,"src":"9362:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3303,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3286,"src":"9369:4:5","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":3304,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3288,"src":"9375:11:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3305,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3290,"src":"9388:4:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3300,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3248,"src":"9340:13:5","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_uint256_$_t_bytes_calldata_ptr_$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (address,uint256,bytes calldata,bytes32,bytes32) pure returns (bytes32)"}},"id":3306,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9340:53:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"9327:66:5"},{"expression":{"arguments":[{"id":3309,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3299,"src":"9413:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3310,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3292,"src":"9417:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3308,"name":"_schedule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3485,"src":"9403:9:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_uint256_$returns$__$","typeString":"function (bytes32,uint256)"}},"id":3311,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9403:20:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3312,"nodeType":"ExpressionStatement","src":"9403:20:5"},{"eventCall":{"arguments":[{"id":3314,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3299,"src":"9452:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"hexValue":"30","id":3315,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9456:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":3316,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3282,"src":"9459:6:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3317,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3284,"src":"9467:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3318,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3286,"src":"9474:4:5","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":3319,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3288,"src":"9480:11:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3320,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3292,"src":"9493:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3313,"name":"CallScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2910,"src":"9438:13:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint256_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$_t_bytes32_$_t_uint256_$returns$__$","typeString":"function (bytes32,uint256,address,uint256,bytes memory,bytes32,uint256)"}},"id":3321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9438:61:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3322,"nodeType":"EmitStatement","src":"9433:66:5"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3323,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3290,"src":"9513:4:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":3326,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9529:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":3325,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9521:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":3324,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9521:7:5","typeDescriptions":{}}},"id":3327,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9521:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"9513:18:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3335,"nodeType":"IfStatement","src":"9509:72:5","trueBody":{"id":3334,"nodeType":"Block","src":"9533:48:5","statements":[{"eventCall":{"arguments":[{"id":3330,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3299,"src":"9561:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3331,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3290,"src":"9565:4:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3329,"name":"CallSalt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2930,"src":"9552:8:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32)"}},"id":3332,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9552:18:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3333,"nodeType":"EmitStatement","src":"9547:23:5"}]}}]},"documentation":{"id":3280,"nodeType":"StructuredDocumentation","src":"8863:236:5","text":" @dev Schedule an operation containing a single transaction.\n Emits {CallSalt} if salt is nonzero, and {CallScheduled}.\n Requirements:\n - the caller must have the 'proposer' role."},"functionSelector":"01d5062a","id":3337,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":3295,"name":"PROPOSER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2833,"src":"9302:13:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3296,"kind":"modifierInvocation","modifierName":{"id":3294,"name":"onlyRole","nameLocations":["9293:8:5"],"nodeType":"IdentifierPath","referencedDeclaration":40,"src":"9293:8:5"},"nodeType":"ModifierInvocation","src":"9293:23:5"}],"name":"schedule","nameLocation":"9113:8:5","nodeType":"FunctionDefinition","parameters":{"id":3293,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3282,"mutability":"mutable","name":"target","nameLocation":"9139:6:5","nodeType":"VariableDeclaration","scope":3337,"src":"9131:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3281,"name":"address","nodeType":"ElementaryTypeName","src":"9131:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3284,"mutability":"mutable","name":"value","nameLocation":"9163:5:5","nodeType":"VariableDeclaration","scope":3337,"src":"9155:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3283,"name":"uint256","nodeType":"ElementaryTypeName","src":"9155:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3286,"mutability":"mutable","name":"data","nameLocation":"9193:4:5","nodeType":"VariableDeclaration","scope":3337,"src":"9178:19:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3285,"name":"bytes","nodeType":"ElementaryTypeName","src":"9178:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3288,"mutability":"mutable","name":"predecessor","nameLocation":"9215:11:5","nodeType":"VariableDeclaration","scope":3337,"src":"9207:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3287,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9207:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3290,"mutability":"mutable","name":"salt","nameLocation":"9244:4:5","nodeType":"VariableDeclaration","scope":3337,"src":"9236:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3289,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9236:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3292,"mutability":"mutable","name":"delay","nameLocation":"9266:5:5","nodeType":"VariableDeclaration","scope":3337,"src":"9258:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3291,"name":"uint256","nodeType":"ElementaryTypeName","src":"9258:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9121:156:5"},"returnParameters":{"id":3297,"nodeType":"ParameterList","parameters":[],"src":"9317:0:5"},"scope":3831,"src":"9104:483:5","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":3438,"nodeType":"Block","src":"10124:559:5","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3369,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3359,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3341,"src":"10138:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10146:6:5","memberName":"length","nodeType":"MemberAccess","src":"10138:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":3361,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3344,"src":"10156:6:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10163:6:5","memberName":"length","nodeType":"MemberAccess","src":"10156:13:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10138:31:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3364,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3341,"src":"10173:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3365,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10181:6:5","memberName":"length","nodeType":"MemberAccess","src":"10173:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":3366,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3347,"src":"10191:8:5","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10200:6:5","memberName":"length","nodeType":"MemberAccess","src":"10191:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10173:33:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10138:68:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3380,"nodeType":"IfStatement","src":"10134:184:5","trueBody":{"id":3379,"nodeType":"Block","src":"10208:110:5","statements":[{"errorCall":{"arguments":[{"expression":{"id":3371,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3341,"src":"10260:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3372,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10268:6:5","memberName":"length","nodeType":"MemberAccess","src":"10260:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3373,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3347,"src":"10276:8:5","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10285:6:5","memberName":"length","nodeType":"MemberAccess","src":"10276:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3375,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3344,"src":"10293:6:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10300:6:5","memberName":"length","nodeType":"MemberAccess","src":"10293:13:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3370,"name":"TimelockInvalidOperationLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2869,"src":"10229:30:5","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":3377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10229:78:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3378,"nodeType":"RevertStatement","src":"10222:85:5"}]}},{"assignments":[3382],"declarations":[{"constant":false,"id":3382,"mutability":"mutable","name":"id","nameLocation":"10336:2:5","nodeType":"VariableDeclaration","scope":3438,"src":"10328:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3381,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10328:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3390,"initialValue":{"arguments":[{"id":3384,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3341,"src":"10360:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},{"id":3385,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3344,"src":"10369:6:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},{"id":3386,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3347,"src":"10377:8:5","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},{"id":3387,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3349,"src":"10387:11:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3388,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3351,"src":"10400:4:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"},{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"},{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3383,"name":"hashOperationBatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3279,"src":"10341:18:5","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_address_$dyn_calldata_ptr_$_t_array$_t_uint256_$dyn_calldata_ptr_$_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr_$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (address[] calldata,uint256[] calldata,bytes calldata[] calldata,bytes32,bytes32) pure returns (bytes32)"}},"id":3389,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10341:64:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"10328:77:5"},{"expression":{"arguments":[{"id":3392,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3382,"src":"10425:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3393,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3353,"src":"10429:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3391,"name":"_schedule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3485,"src":"10415:9:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_uint256_$returns$__$","typeString":"function (bytes32,uint256)"}},"id":3394,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10415:20:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3395,"nodeType":"ExpressionStatement","src":"10415:20:5"},{"body":{"id":3423,"nodeType":"Block","src":"10490:106:5","statements":[{"eventCall":{"arguments":[{"id":3408,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3382,"src":"10523:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3409,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3397,"src":"10527:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":3410,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3341,"src":"10530:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3412,"indexExpression":{"id":3411,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3397,"src":"10538:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10530:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":3413,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3344,"src":"10542:6:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3415,"indexExpression":{"id":3414,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3397,"src":"10549:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10542:9:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":3416,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3347,"src":"10553:8:5","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3418,"indexExpression":{"id":3417,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3397,"src":"10562:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10553:11:5","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":3419,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3349,"src":"10566:11:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3420,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3353,"src":"10579:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3407,"name":"CallScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2910,"src":"10509:13:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint256_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$_t_bytes32_$_t_uint256_$returns$__$","typeString":"function (bytes32,uint256,address,uint256,bytes memory,bytes32,uint256)"}},"id":3421,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10509:76:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3422,"nodeType":"EmitStatement","src":"10504:81:5"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3400,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3397,"src":"10465:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":3401,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3341,"src":"10469:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10477:6:5","memberName":"length","nodeType":"MemberAccess","src":"10469:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10465:18:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3424,"initializationExpression":{"assignments":[3397],"declarations":[{"constant":false,"id":3397,"mutability":"mutable","name":"i","nameLocation":"10458:1:5","nodeType":"VariableDeclaration","scope":3424,"src":"10450:9:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3396,"name":"uint256","nodeType":"ElementaryTypeName","src":"10450:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3399,"initialValue":{"hexValue":"30","id":3398,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10462:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"10450:13:5"},"loopExpression":{"expression":{"id":3405,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"10485:3:5","subExpression":{"id":3404,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3397,"src":"10487:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3406,"nodeType":"ExpressionStatement","src":"10485:3:5"},"nodeType":"ForStatement","src":"10445:151:5"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3430,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3425,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3351,"src":"10609:4:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":3428,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10625:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":3427,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10617:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":3426,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10617:7:5","typeDescriptions":{}}},"id":3429,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10617:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"10609:18:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3437,"nodeType":"IfStatement","src":"10605:72:5","trueBody":{"id":3436,"nodeType":"Block","src":"10629:48:5","statements":[{"eventCall":{"arguments":[{"id":3432,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3382,"src":"10657:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3433,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3351,"src":"10661:4:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3431,"name":"CallSalt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2930,"src":"10648:8:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32)"}},"id":3434,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10648:18:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3435,"nodeType":"EmitStatement","src":"10643:23:5"}]}}]},"documentation":{"id":3338,"nodeType":"StructuredDocumentation","src":"9593:278:5","text":" @dev Schedule an operation containing a batch of transactions.\n Emits {CallSalt} if salt is nonzero, and one {CallScheduled} event per transaction in the batch.\n Requirements:\n - the caller must have the 'proposer' role."},"functionSelector":"8f2a0bb0","id":3439,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":3356,"name":"PROPOSER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2833,"src":"10109:13:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3357,"kind":"modifierInvocation","modifierName":{"id":3355,"name":"onlyRole","nameLocations":["10100:8:5"],"nodeType":"IdentifierPath","referencedDeclaration":40,"src":"10100:8:5"},"nodeType":"ModifierInvocation","src":"10100:23:5"}],"name":"scheduleBatch","nameLocation":"9885:13:5","nodeType":"FunctionDefinition","parameters":{"id":3354,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3341,"mutability":"mutable","name":"targets","nameLocation":"9927:7:5","nodeType":"VariableDeclaration","scope":3439,"src":"9908:26:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":3339,"name":"address","nodeType":"ElementaryTypeName","src":"9908:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3340,"nodeType":"ArrayTypeName","src":"9908:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":3344,"mutability":"mutable","name":"values","nameLocation":"9963:6:5","nodeType":"VariableDeclaration","scope":3439,"src":"9944:25:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":3342,"name":"uint256","nodeType":"ElementaryTypeName","src":"9944:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3343,"nodeType":"ArrayTypeName","src":"9944:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":3347,"mutability":"mutable","name":"payloads","nameLocation":"9996:8:5","nodeType":"VariableDeclaration","scope":3439,"src":"9979:25:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":3345,"name":"bytes","nodeType":"ElementaryTypeName","src":"9979:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":3346,"nodeType":"ArrayTypeName","src":"9979:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":3349,"mutability":"mutable","name":"predecessor","nameLocation":"10022:11:5","nodeType":"VariableDeclaration","scope":3439,"src":"10014:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3348,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10014:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3351,"mutability":"mutable","name":"salt","nameLocation":"10051:4:5","nodeType":"VariableDeclaration","scope":3439,"src":"10043:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3350,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10043:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3353,"mutability":"mutable","name":"delay","nameLocation":"10073:5:5","nodeType":"VariableDeclaration","scope":3439,"src":"10065:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3352,"name":"uint256","nodeType":"ElementaryTypeName","src":"10065:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9898:186:5"},"returnParameters":{"id":3358,"nodeType":"ParameterList","parameters":[],"src":"10124:0:5"},"scope":3831,"src":"9876:807:5","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":3484,"nodeType":"Block","src":"10838:345:5","statements":[{"condition":{"arguments":[{"id":3448,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3442,"src":"10864:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3447,"name":"isOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3095,"src":"10852:11:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view returns (bool)"}},"id":3449,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10852:15:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3459,"nodeType":"IfStatement","src":"10848:131:5","trueBody":{"id":3458,"nodeType":"Block","src":"10869:110:5","statements":[{"errorCall":{"arguments":[{"id":3451,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3442,"src":"10923:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"expression":{"id":3453,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2860,"src":"10946:14:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2860_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3454,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10961:5:5","memberName":"Unset","nodeType":"MemberAccess","referencedDeclaration":2856,"src":"10946:20:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}],"id":3452,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3830,"src":"10927:18:5","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_OperationState_$2860_$returns$_t_bytes32_$","typeString":"function (enum TimelockController.OperationState) pure returns (bytes32)"}},"id":3455,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10927:40:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3450,"name":"TimelockUnexpectedOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2883,"src":"10890:32:5","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32) pure"}},"id":3456,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10890:78:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3457,"nodeType":"RevertStatement","src":"10883:85:5"}]}},{"assignments":[3461],"declarations":[{"constant":false,"id":3461,"mutability":"mutable","name":"minDelay","nameLocation":"10996:8:5","nodeType":"VariableDeclaration","scope":3484,"src":"10988:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3460,"name":"uint256","nodeType":"ElementaryTypeName","src":"10988:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3464,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3462,"name":"getMinDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3220,"src":"11007:11:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":3463,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11007:13:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10988:32:5"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3467,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3465,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3444,"src":"11034:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":3466,"name":"minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3461,"src":"11042:8:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11034:16:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3474,"nodeType":"IfStatement","src":"11030:96:5","trueBody":{"id":3473,"nodeType":"Block","src":"11052:74:5","statements":[{"errorCall":{"arguments":[{"id":3469,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3444,"src":"11099:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3470,"name":"minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3461,"src":"11106:8:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3468,"name":"TimelockInsufficientDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2876,"src":"11073:25:5","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256) pure"}},"id":3471,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11073:42:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3472,"nodeType":"RevertStatement","src":"11066:49:5"}]}},{"expression":{"id":3482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3475,"name":"_timestamps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2853,"src":"11135:11:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_uint256_$","typeString":"mapping(bytes32 => uint256)"}},"id":3477,"indexExpression":{"id":3476,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3442,"src":"11147:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"11135:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3478,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967292,"src":"11153:5:5","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11159:9:5","memberName":"timestamp","nodeType":"MemberAccess","src":"11153:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":3480,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3444,"src":"11171:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11153:23:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11135:41:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3483,"nodeType":"ExpressionStatement","src":"11135:41:5"}]},"documentation":{"id":3440,"nodeType":"StructuredDocumentation","src":"10689:90:5","text":" @dev Schedule an operation that is to become valid after a given delay."},"id":3485,"implemented":true,"kind":"function","modifiers":[],"name":"_schedule","nameLocation":"10793:9:5","nodeType":"FunctionDefinition","parameters":{"id":3445,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3442,"mutability":"mutable","name":"id","nameLocation":"10811:2:5","nodeType":"VariableDeclaration","scope":3485,"src":"10803:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3441,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10803:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3444,"mutability":"mutable","name":"delay","nameLocation":"10823:5:5","nodeType":"VariableDeclaration","scope":3485,"src":"10815:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3443,"name":"uint256","nodeType":"ElementaryTypeName","src":"10815:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10802:27:5"},"returnParameters":{"id":3446,"nodeType":"ParameterList","parameters":[],"src":"10838:0:5"},"scope":3831,"src":"10784:399:5","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":3522,"nodeType":"Block","src":"11393:307:5","statements":[{"condition":{"id":3497,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"11407:23:5","subExpression":{"arguments":[{"id":3495,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3488,"src":"11427:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3494,"name":"isOperationPending","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3121,"src":"11408:18:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view returns (bool)"}},"id":3496,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11408:22:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3512,"nodeType":"IfStatement","src":"11403:230:5","trueBody":{"id":3511,"nodeType":"Block","src":"11432:201:5","statements":[{"errorCall":{"arguments":[{"id":3499,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3488,"src":"11503:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3508,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":3501,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2860,"src":"11542:14:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2860_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3502,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11557:7:5","memberName":"Waiting","nodeType":"MemberAccess","referencedDeclaration":2857,"src":"11542:22:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}],"id":3500,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3830,"src":"11523:18:5","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_OperationState_$2860_$returns$_t_bytes32_$","typeString":"function (enum TimelockController.OperationState) pure returns (bytes32)"}},"id":3503,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11523:42:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"arguments":[{"expression":{"id":3505,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2860,"src":"11587:14:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2860_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3506,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11602:5:5","memberName":"Ready","nodeType":"MemberAccess","referencedDeclaration":2858,"src":"11587:20:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}],"id":3504,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3830,"src":"11568:18:5","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_OperationState_$2860_$returns$_t_bytes32_$","typeString":"function (enum TimelockController.OperationState) pure returns (bytes32)"}},"id":3507,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11568:40:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"11523:85:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3498,"name":"TimelockUnexpectedOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2883,"src":"11453:32:5","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32) pure"}},"id":3509,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11453:169:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3510,"nodeType":"RevertStatement","src":"11446:176:5"}]}},{"expression":{"id":3516,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"11642:22:5","subExpression":{"baseExpression":{"id":3513,"name":"_timestamps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2853,"src":"11649:11:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_uint256_$","typeString":"mapping(bytes32 => uint256)"}},"id":3515,"indexExpression":{"id":3514,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3488,"src":"11661:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"11649:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3517,"nodeType":"ExpressionStatement","src":"11642:22:5"},{"eventCall":{"arguments":[{"id":3519,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3488,"src":"11690:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3518,"name":"Cancelled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2935,"src":"11680:9:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$returns$__$","typeString":"function (bytes32)"}},"id":3520,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11680:13:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3521,"nodeType":"EmitStatement","src":"11675:18:5"}]},"documentation":{"id":3486,"nodeType":"StructuredDocumentation","src":"11189:131:5","text":" @dev Cancel an operation.\n Requirements:\n - the caller must have the 'canceller' role."},"functionSelector":"c4d252f5","id":3523,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":3491,"name":"CANCELLER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2843,"src":"11377:14:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3492,"kind":"modifierInvocation","modifierName":{"id":3490,"name":"onlyRole","nameLocations":["11368:8:5"],"nodeType":"IdentifierPath","referencedDeclaration":40,"src":"11368:8:5"},"nodeType":"ModifierInvocation","src":"11368:24:5"}],"name":"cancel","nameLocation":"11334:6:5","nodeType":"FunctionDefinition","parameters":{"id":3489,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3488,"mutability":"mutable","name":"id","nameLocation":"11349:2:5","nodeType":"VariableDeclaration","scope":3523,"src":"11341:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3487,"name":"bytes32","nodeType":"ElementaryTypeName","src":"11341:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"11340:12:5"},"returnParameters":{"id":3493,"nodeType":"ParameterList","parameters":[],"src":"11393:0:5"},"scope":3831,"src":"11325:375:5","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":3573,"nodeType":"Block","src":"12384:249:5","statements":[{"assignments":[3541],"declarations":[{"constant":false,"id":3541,"mutability":"mutable","name":"id","nameLocation":"12402:2:5","nodeType":"VariableDeclaration","scope":3573,"src":"12394:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3540,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12394:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3549,"initialValue":{"arguments":[{"id":3543,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3526,"src":"12421:6:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3544,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3528,"src":"12429:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3545,"name":"payload","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3530,"src":"12436:7:5","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":3546,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3532,"src":"12445:11:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3547,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3534,"src":"12458:4:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3542,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3248,"src":"12407:13:5","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_uint256_$_t_bytes_calldata_ptr_$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (address,uint256,bytes calldata,bytes32,bytes32) pure returns (bytes32)"}},"id":3548,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12407:56:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"12394:69:5"},{"expression":{"arguments":[{"id":3551,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3541,"src":"12486:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3552,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3532,"src":"12490:11:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3550,"name":"_beforeCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3750,"src":"12474:11:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32) view"}},"id":3553,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12474:28:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3554,"nodeType":"ExpressionStatement","src":"12474:28:5"},{"expression":{"arguments":[{"id":3556,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3526,"src":"12521:6:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3557,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3528,"src":"12529:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3558,"name":"payload","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3530,"src":"12536:7:5","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":3555,"name":"_execute","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3710,"src":"12512:8:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_calldata_ptr_$returns$__$","typeString":"function (address,uint256,bytes calldata)"}},"id":3559,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12512:32:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3560,"nodeType":"ExpressionStatement","src":"12512:32:5"},{"eventCall":{"arguments":[{"id":3562,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3541,"src":"12572:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"hexValue":"30","id":3563,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12576:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":3564,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3526,"src":"12579:6:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3565,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3528,"src":"12587:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3566,"name":"payload","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3530,"src":"12594:7:5","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":3561,"name":"CallExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2923,"src":"12559:12:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint256_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes32,uint256,address,uint256,bytes memory)"}},"id":3567,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12559:43:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3568,"nodeType":"EmitStatement","src":"12554:48:5"},{"expression":{"arguments":[{"id":3570,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3541,"src":"12623:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3569,"name":"_afterCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3777,"src":"12612:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$__$","typeString":"function (bytes32)"}},"id":3571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12612:14:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3572,"nodeType":"ExpressionStatement","src":"12612:14:5"}]},"documentation":{"id":3524,"nodeType":"StructuredDocumentation","src":"11706:215:5","text":" @dev Execute an (ready) operation containing a single transaction.\n Emits a {CallExecuted} event.\n Requirements:\n - the caller must have the 'executor' role."},"functionSelector":"134008d3","id":3574,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":3537,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2838,"src":"12369:13:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3538,"kind":"modifierInvocation","modifierName":{"id":3536,"name":"onlyRoleOrOpenRole","nameLocations":["12350:18:5"],"nodeType":"IdentifierPath","referencedDeclaration":3057,"src":"12350:18:5"},"nodeType":"ModifierInvocation","src":"12350:33:5"}],"name":"execute","nameLocation":"12183:7:5","nodeType":"FunctionDefinition","parameters":{"id":3535,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3526,"mutability":"mutable","name":"target","nameLocation":"12208:6:5","nodeType":"VariableDeclaration","scope":3574,"src":"12200:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3525,"name":"address","nodeType":"ElementaryTypeName","src":"12200:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3528,"mutability":"mutable","name":"value","nameLocation":"12232:5:5","nodeType":"VariableDeclaration","scope":3574,"src":"12224:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3527,"name":"uint256","nodeType":"ElementaryTypeName","src":"12224:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3530,"mutability":"mutable","name":"payload","nameLocation":"12262:7:5","nodeType":"VariableDeclaration","scope":3574,"src":"12247:22:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3529,"name":"bytes","nodeType":"ElementaryTypeName","src":"12247:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3532,"mutability":"mutable","name":"predecessor","nameLocation":"12287:11:5","nodeType":"VariableDeclaration","scope":3574,"src":"12279:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3531,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12279:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3534,"mutability":"mutable","name":"salt","nameLocation":"12316:4:5","nodeType":"VariableDeclaration","scope":3574,"src":"12308:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3533,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12308:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"12190:136:5"},"returnParameters":{"id":3539,"nodeType":"ParameterList","parameters":[],"src":"12384:0:5"},"scope":3831,"src":"12174:459:5","stateMutability":"payable","virtual":true,"visibility":"public"},{"body":{"id":3680,"nodeType":"Block","src":"13383:654:5","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3604,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3598,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3594,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3578,"src":"13397:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3595,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13405:6:5","memberName":"length","nodeType":"MemberAccess","src":"13397:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":3596,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3581,"src":"13415:6:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13422:6:5","memberName":"length","nodeType":"MemberAccess","src":"13415:13:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13397:31:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3603,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3599,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3578,"src":"13432:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13440:6:5","memberName":"length","nodeType":"MemberAccess","src":"13432:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":3601,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3584,"src":"13450:8:5","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3602,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13459:6:5","memberName":"length","nodeType":"MemberAccess","src":"13450:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13432:33:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"13397:68:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3615,"nodeType":"IfStatement","src":"13393:184:5","trueBody":{"id":3614,"nodeType":"Block","src":"13467:110:5","statements":[{"errorCall":{"arguments":[{"expression":{"id":3606,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3578,"src":"13519:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3607,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13527:6:5","memberName":"length","nodeType":"MemberAccess","src":"13519:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3608,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3584,"src":"13535:8:5","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3609,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13544:6:5","memberName":"length","nodeType":"MemberAccess","src":"13535:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3610,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3581,"src":"13552:6:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3611,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13559:6:5","memberName":"length","nodeType":"MemberAccess","src":"13552:13:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3605,"name":"TimelockInvalidOperationLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2869,"src":"13488:30:5","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":3612,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13488:78:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3613,"nodeType":"RevertStatement","src":"13481:85:5"}]}},{"assignments":[3617],"declarations":[{"constant":false,"id":3617,"mutability":"mutable","name":"id","nameLocation":"13595:2:5","nodeType":"VariableDeclaration","scope":3680,"src":"13587:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3616,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13587:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3625,"initialValue":{"arguments":[{"id":3619,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3578,"src":"13619:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},{"id":3620,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3581,"src":"13628:6:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},{"id":3621,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3584,"src":"13636:8:5","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},{"id":3622,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3586,"src":"13646:11:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3623,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3588,"src":"13659:4:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"},{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"},{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3618,"name":"hashOperationBatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3279,"src":"13600:18:5","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_address_$dyn_calldata_ptr_$_t_array$_t_uint256_$dyn_calldata_ptr_$_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr_$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (address[] calldata,uint256[] calldata,bytes calldata[] calldata,bytes32,bytes32) pure returns (bytes32)"}},"id":3624,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13600:64:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"13587:77:5"},{"expression":{"arguments":[{"id":3627,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3617,"src":"13687:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3628,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3586,"src":"13691:11:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3626,"name":"_beforeCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3750,"src":"13675:11:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32) view"}},"id":3629,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13675:28:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3630,"nodeType":"ExpressionStatement","src":"13675:28:5"},{"body":{"id":3674,"nodeType":"Block","src":"13758:249:5","statements":[{"assignments":[3643],"declarations":[{"constant":false,"id":3643,"mutability":"mutable","name":"target","nameLocation":"13780:6:5","nodeType":"VariableDeclaration","scope":3674,"src":"13772:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3642,"name":"address","nodeType":"ElementaryTypeName","src":"13772:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":3647,"initialValue":{"baseExpression":{"id":3644,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3578,"src":"13789:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3646,"indexExpression":{"id":3645,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3632,"src":"13797:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13789:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"13772:27:5"},{"assignments":[3649],"declarations":[{"constant":false,"id":3649,"mutability":"mutable","name":"value","nameLocation":"13821:5:5","nodeType":"VariableDeclaration","scope":3674,"src":"13813:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3648,"name":"uint256","nodeType":"ElementaryTypeName","src":"13813:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3653,"initialValue":{"baseExpression":{"id":3650,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3581,"src":"13829:6:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3652,"indexExpression":{"id":3651,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3632,"src":"13836:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13829:9:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13813:25:5"},{"assignments":[3655],"declarations":[{"constant":false,"id":3655,"mutability":"mutable","name":"payload","nameLocation":"13867:7:5","nodeType":"VariableDeclaration","scope":3674,"src":"13852:22:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3654,"name":"bytes","nodeType":"ElementaryTypeName","src":"13852:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":3659,"initialValue":{"baseExpression":{"id":3656,"name":"payloads","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3584,"src":"13877:8:5","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":3658,"indexExpression":{"id":3657,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3632,"src":"13886:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13877:11:5","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"nodeType":"VariableDeclarationStatement","src":"13852:36:5"},{"expression":{"arguments":[{"id":3661,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3643,"src":"13911:6:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3662,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3649,"src":"13919:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3663,"name":"payload","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3655,"src":"13926:7:5","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":3660,"name":"_execute","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3710,"src":"13902:8:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_calldata_ptr_$returns$__$","typeString":"function (address,uint256,bytes calldata)"}},"id":3664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13902:32:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3665,"nodeType":"ExpressionStatement","src":"13902:32:5"},{"eventCall":{"arguments":[{"id":3667,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3617,"src":"13966:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3668,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3632,"src":"13970:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3669,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3643,"src":"13973:6:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3670,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3649,"src":"13981:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3671,"name":"payload","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3655,"src":"13988:7:5","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":3666,"name":"CallExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2923,"src":"13953:12:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint256_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes32,uint256,address,uint256,bytes memory)"}},"id":3672,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13953:43:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3673,"nodeType":"EmitStatement","src":"13948:48:5"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3635,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3632,"src":"13733:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":3636,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3578,"src":"13737:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3637,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13745:6:5","memberName":"length","nodeType":"MemberAccess","src":"13737:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13733:18:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3675,"initializationExpression":{"assignments":[3632],"declarations":[{"constant":false,"id":3632,"mutability":"mutable","name":"i","nameLocation":"13726:1:5","nodeType":"VariableDeclaration","scope":3675,"src":"13718:9:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3631,"name":"uint256","nodeType":"ElementaryTypeName","src":"13718:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3634,"initialValue":{"hexValue":"30","id":3633,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13730:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"13718:13:5"},"loopExpression":{"expression":{"id":3640,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"13753:3:5","subExpression":{"id":3639,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3632,"src":"13755:1:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3641,"nodeType":"ExpressionStatement","src":"13753:3:5"},"nodeType":"ForStatement","src":"13713:294:5"},{"expression":{"arguments":[{"id":3677,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3617,"src":"14027:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3676,"name":"_afterCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3777,"src":"14016:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$__$","typeString":"function (bytes32)"}},"id":3678,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14016:14:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3679,"nodeType":"ExpressionStatement","src":"14016:14:5"}]},"documentation":{"id":3575,"nodeType":"StructuredDocumentation","src":"12639:249:5","text":" @dev Execute an (ready) operation containing a batch of transactions.\n Emits one {CallExecuted} event per transaction in the batch.\n Requirements:\n - the caller must have the 'executor' role."},"functionSelector":"e38335e5","id":3681,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":3591,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2838,"src":"13368:13:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3592,"kind":"modifierInvocation","modifierName":{"id":3590,"name":"onlyRoleOrOpenRole","nameLocations":["13349:18:5"],"nodeType":"IdentifierPath","referencedDeclaration":3057,"src":"13349:18:5"},"nodeType":"ModifierInvocation","src":"13349:33:5"}],"name":"executeBatch","nameLocation":"13150:12:5","nodeType":"FunctionDefinition","parameters":{"id":3589,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3578,"mutability":"mutable","name":"targets","nameLocation":"13191:7:5","nodeType":"VariableDeclaration","scope":3681,"src":"13172:26:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":3576,"name":"address","nodeType":"ElementaryTypeName","src":"13172:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3577,"nodeType":"ArrayTypeName","src":"13172:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":3581,"mutability":"mutable","name":"values","nameLocation":"13227:6:5","nodeType":"VariableDeclaration","scope":3681,"src":"13208:25:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":3579,"name":"uint256","nodeType":"ElementaryTypeName","src":"13208:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3580,"nodeType":"ArrayTypeName","src":"13208:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":3584,"mutability":"mutable","name":"payloads","nameLocation":"13260:8:5","nodeType":"VariableDeclaration","scope":3681,"src":"13243:25:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":3582,"name":"bytes","nodeType":"ElementaryTypeName","src":"13243:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":3583,"nodeType":"ArrayTypeName","src":"13243:7:5","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":3586,"mutability":"mutable","name":"predecessor","nameLocation":"13286:11:5","nodeType":"VariableDeclaration","scope":3681,"src":"13278:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3585,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13278:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3588,"mutability":"mutable","name":"salt","nameLocation":"13315:4:5","nodeType":"VariableDeclaration","scope":3681,"src":"13307:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3587,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13307:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"13162:163:5"},"returnParameters":{"id":3593,"nodeType":"ParameterList","parameters":[],"src":"13383:0:5"},"scope":3831,"src":"13141:896:5","stateMutability":"payable","virtual":true,"visibility":"public"},{"body":{"id":3709,"nodeType":"Block","src":"14187:145:5","statements":[{"assignments":[3692,3694],"declarations":[{"constant":false,"id":3692,"mutability":"mutable","name":"success","nameLocation":"14203:7:5","nodeType":"VariableDeclaration","scope":3709,"src":"14198:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3691,"name":"bool","nodeType":"ElementaryTypeName","src":"14198:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3694,"mutability":"mutable","name":"returndata","nameLocation":"14225:10:5","nodeType":"VariableDeclaration","scope":3709,"src":"14212:23:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3693,"name":"bytes","nodeType":"ElementaryTypeName","src":"14212:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":3701,"initialValue":{"arguments":[{"id":3699,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3688,"src":"14265:4:5","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":3695,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3684,"src":"14239:6:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3696,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14246:4:5","memberName":"call","nodeType":"MemberAccess","src":"14239:11:5","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":3698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":3697,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3686,"src":"14258:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"14239:25:5","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":3700,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14239:31:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"14197:73:5"},{"expression":{"arguments":[{"id":3705,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3692,"src":"14305:7:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":3706,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3694,"src":"14314:10:5","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":3702,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7098,"src":"14280:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$7098_$","typeString":"type(library Address)"}},"id":3704,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14288:16:5","memberName":"verifyCallResult","nodeType":"MemberAccess","referencedDeclaration":7077,"src":"14280:24:5","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (bool,bytes memory) pure returns (bytes memory)"}},"id":3707,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14280:45:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3708,"nodeType":"ExpressionStatement","src":"14280:45:5"}]},"documentation":{"id":3682,"nodeType":"StructuredDocumentation","src":"14043:52:5","text":" @dev Execute an operation's call."},"id":3710,"implemented":true,"kind":"function","modifiers":[],"name":"_execute","nameLocation":"14109:8:5","nodeType":"FunctionDefinition","parameters":{"id":3689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3684,"mutability":"mutable","name":"target","nameLocation":"14126:6:5","nodeType":"VariableDeclaration","scope":3710,"src":"14118:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3683,"name":"address","nodeType":"ElementaryTypeName","src":"14118:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3686,"mutability":"mutable","name":"value","nameLocation":"14142:5:5","nodeType":"VariableDeclaration","scope":3710,"src":"14134:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3685,"name":"uint256","nodeType":"ElementaryTypeName","src":"14134:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3688,"mutability":"mutable","name":"data","nameLocation":"14164:4:5","nodeType":"VariableDeclaration","scope":3710,"src":"14149:19:5","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3687,"name":"bytes","nodeType":"ElementaryTypeName","src":"14149:5:5","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"14117:52:5"},"returnParameters":{"id":3690,"nodeType":"ParameterList","parameters":[],"src":"14187:0:5"},"scope":3831,"src":"14100:232:5","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":3749,"nodeType":"Block","src":"14482:300:5","statements":[{"condition":{"id":3721,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14496:21:5","subExpression":{"arguments":[{"id":3719,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3713,"src":"14514:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3718,"name":"isOperationReady","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3137,"src":"14497:16:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view returns (bool)"}},"id":3720,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14497:20:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3731,"nodeType":"IfStatement","src":"14492:137:5","trueBody":{"id":3730,"nodeType":"Block","src":"14519:110:5","statements":[{"errorCall":{"arguments":[{"id":3723,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3713,"src":"14573:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"expression":{"id":3725,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2860,"src":"14596:14:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2860_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3726,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14611:5:5","memberName":"Ready","nodeType":"MemberAccess","referencedDeclaration":2858,"src":"14596:20:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}],"id":3724,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3830,"src":"14577:18:5","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_OperationState_$2860_$returns$_t_bytes32_$","typeString":"function (enum TimelockController.OperationState) pure returns (bytes32)"}},"id":3727,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14577:40:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3722,"name":"TimelockUnexpectedOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2883,"src":"14540:32:5","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32) pure"}},"id":3728,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14540:78:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3729,"nodeType":"RevertStatement","src":"14533:85:5"}]}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3742,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3732,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3715,"src":"14642:11:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":3735,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14665:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":3734,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14657:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":3733,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14657:7:5","typeDescriptions":{}}},"id":3736,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14657:10:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"14642:25:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":3741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14671:29:5","subExpression":{"arguments":[{"id":3739,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3715,"src":"14688:11:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3738,"name":"isOperationDone","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3153,"src":"14672:15:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view returns (bool)"}},"id":3740,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14672:28:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"14642:58:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3748,"nodeType":"IfStatement","src":"14638:138:5","trueBody":{"id":3747,"nodeType":"Block","src":"14702:74:5","statements":[{"errorCall":{"arguments":[{"id":3744,"name":"predecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3715,"src":"14753:11:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3743,"name":"TimelockUnexecutedPredecessor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2888,"src":"14723:29:5","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$__$","typeString":"function (bytes32) pure"}},"id":3745,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14723:42:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3746,"nodeType":"RevertStatement","src":"14716:49:5"}]}}]},"documentation":{"id":3711,"nodeType":"StructuredDocumentation","src":"14338:72:5","text":" @dev Checks before execution of an operation's calls."},"id":3750,"implemented":true,"kind":"function","modifiers":[],"name":"_beforeCall","nameLocation":"14424:11:5","nodeType":"FunctionDefinition","parameters":{"id":3716,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3713,"mutability":"mutable","name":"id","nameLocation":"14444:2:5","nodeType":"VariableDeclaration","scope":3750,"src":"14436:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3712,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14436:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3715,"mutability":"mutable","name":"predecessor","nameLocation":"14456:11:5","nodeType":"VariableDeclaration","scope":3750,"src":"14448:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3714,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14448:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"14435:33:5"},"returnParameters":{"id":3717,"nodeType":"ParameterList","parameters":[],"src":"14482:0:5"},"scope":3831,"src":"14415:367:5","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":3776,"nodeType":"Block","src":"14904:196:5","statements":[{"condition":{"id":3759,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14918:21:5","subExpression":{"arguments":[{"id":3757,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3753,"src":"14936:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3756,"name":"isOperationReady","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3137,"src":"14919:16:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view returns (bool)"}},"id":3758,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14919:20:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3769,"nodeType":"IfStatement","src":"14914:137:5","trueBody":{"id":3768,"nodeType":"Block","src":"14941:110:5","statements":[{"errorCall":{"arguments":[{"id":3761,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3753,"src":"14995:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"expression":{"id":3763,"name":"OperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2860,"src":"15018:14:5","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OperationState_$2860_$","typeString":"type(enum TimelockController.OperationState)"}},"id":3764,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15033:5:5","memberName":"Ready","nodeType":"MemberAccess","referencedDeclaration":2858,"src":"15018:20:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}],"id":3762,"name":"_encodeStateBitmap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3830,"src":"14999:18:5","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_OperationState_$2860_$returns$_t_bytes32_$","typeString":"function (enum TimelockController.OperationState) pure returns (bytes32)"}},"id":3765,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14999:40:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3760,"name":"TimelockUnexpectedOperationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2883,"src":"14962:32:5","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32) pure"}},"id":3766,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14962:78:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3767,"nodeType":"RevertStatement","src":"14955:85:5"}]}},{"expression":{"id":3774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3770,"name":"_timestamps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2853,"src":"15060:11:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_uint256_$","typeString":"mapping(bytes32 => uint256)"}},"id":3772,"indexExpression":{"id":3771,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3753,"src":"15072:2:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"15060:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3773,"name":"_DONE_TIMESTAMP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2849,"src":"15078:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15060:33:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3775,"nodeType":"ExpressionStatement","src":"15060:33:5"}]},"documentation":{"id":3751,"nodeType":"StructuredDocumentation","src":"14788:71:5","text":" @dev Checks after execution of an operation's calls."},"id":3777,"implemented":true,"kind":"function","modifiers":[],"name":"_afterCall","nameLocation":"14873:10:5","nodeType":"FunctionDefinition","parameters":{"id":3754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3753,"mutability":"mutable","name":"id","nameLocation":"14892:2:5","nodeType":"VariableDeclaration","scope":3777,"src":"14884:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3752,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14884:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"14883:12:5"},"returnParameters":{"id":3755,"nodeType":"ParameterList","parameters":[],"src":"14904:0:5"},"scope":3831,"src":"14864:236:5","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":3809,"nodeType":"Block","src":"15549:230:5","statements":[{"assignments":[3784],"declarations":[{"constant":false,"id":3784,"mutability":"mutable","name":"sender","nameLocation":"15567:6:5","nodeType":"VariableDeclaration","scope":3809,"src":"15559:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3783,"name":"address","nodeType":"ElementaryTypeName","src":"15559:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":3787,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":3785,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"15576:10:5","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":3786,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15576:12:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"15559:29:5"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3788,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3784,"src":"15602:6:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":3791,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"15620:4:5","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}],"id":3790,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15612:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3789,"name":"address","nodeType":"ElementaryTypeName","src":"15612:7:5","typeDescriptions":{}}},"id":3792,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15612:13:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"15602:23:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3799,"nodeType":"IfStatement","src":"15598:95:5","trueBody":{"id":3798,"nodeType":"Block","src":"15627:66:5","statements":[{"errorCall":{"arguments":[{"id":3795,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3784,"src":"15675:6:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3794,"name":"TimelockUnauthorizedCaller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2893,"src":"15648:26:5","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":3796,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15648:34:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3797,"nodeType":"RevertStatement","src":"15641:41:5"}]}},{"eventCall":{"arguments":[{"id":3801,"name":"_minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2855,"src":"15722:9:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3802,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3780,"src":"15733:8:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3800,"name":"MinDelayChange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2942,"src":"15707:14:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":3803,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15707:35:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3804,"nodeType":"EmitStatement","src":"15702:40:5"},{"expression":{"id":3807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3805,"name":"_minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2855,"src":"15752:9:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3806,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3780,"src":"15764:8:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15752:20:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3808,"nodeType":"ExpressionStatement","src":"15752:20:5"}]},"documentation":{"id":3778,"nodeType":"StructuredDocumentation","src":"15106:382:5","text":" @dev Changes the minimum timelock duration for future operations.\n Emits a {MinDelayChange} event.\n Requirements:\n - the caller must be the timelock itself. This can only be achieved by scheduling and later executing\n an operation where the timelock is the target and the data is the ABI-encoded call to this function."},"functionSelector":"64d62353","id":3810,"implemented":true,"kind":"function","modifiers":[],"name":"updateDelay","nameLocation":"15502:11:5","nodeType":"FunctionDefinition","parameters":{"id":3781,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3780,"mutability":"mutable","name":"newDelay","nameLocation":"15522:8:5","nodeType":"VariableDeclaration","scope":3810,"src":"15514:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3779,"name":"uint256","nodeType":"ElementaryTypeName","src":"15514:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15513:18:5"},"returnParameters":{"id":3782,"nodeType":"ParameterList","parameters":[],"src":"15549:0:5"},"scope":3831,"src":"15493:286:5","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"body":{"id":3829,"nodeType":"Block","src":"16236:59:5","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":3821,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16261:1:5","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"arguments":[{"id":3824,"name":"operationState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3814,"src":"16272:14:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}],"id":3823,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16266:5:5","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3822,"name":"uint8","nodeType":"ElementaryTypeName","src":"16266:5:5","typeDescriptions":{}}},"id":3825,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16266:21:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"16261:26:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3820,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16253:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":3819,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16253:7:5","typeDescriptions":{}}},"id":3827,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16253:35:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3818,"id":3828,"nodeType":"Return","src":"16246:42:5"}]},"documentation":{"id":3811,"nodeType":"StructuredDocumentation","src":"15785:355:5","text":" @dev Encodes a `OperationState` into a `bytes32` representation where each bit enabled corresponds to\n the underlying position in the `OperationState` enum. For example:\n 0x000...1000\n ^^^^^^----- ...\n ^---- Done\n ^--- Ready\n ^-- Waiting\n ^- Unset"},"id":3830,"implemented":true,"kind":"function","modifiers":[],"name":"_encodeStateBitmap","nameLocation":"16154:18:5","nodeType":"FunctionDefinition","parameters":{"id":3815,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3814,"mutability":"mutable","name":"operationState","nameLocation":"16188:14:5","nodeType":"VariableDeclaration","scope":3830,"src":"16173:29:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"},"typeName":{"id":3813,"nodeType":"UserDefinedTypeName","pathNode":{"id":3812,"name":"OperationState","nameLocations":["16173:14:5"],"nodeType":"IdentifierPath","referencedDeclaration":2860,"src":"16173:14:5"},"referencedDeclaration":2860,"src":"16173:14:5","typeDescriptions":{"typeIdentifier":"t_enum$_OperationState_$2860","typeString":"enum TimelockController.OperationState"}},"visibility":"internal"}],"src":"16172:31:5"},"returnParameters":{"id":3818,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3817,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3830,"src":"16227:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3816,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16227:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"16226:9:5"},"scope":3831,"src":"16145:150:5","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":3832,"src":"1084:15213:5","usedErrors":[305,308,2869,2876,2883,2888,2893,7141],"usedEvents":[317,326,335,2910,2923,2930,2935,2942]}],"src":"117:16181:5"},"id":5},"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol","exportedSymbols":{"Governor":[2338],"GovernorCountingSimple":[4063]},"id":4064,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3833,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"132:24:6"},{"absolutePath":"@openzeppelin/contracts/governance/Governor.sol","file":"../Governor.sol","id":3835,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4064,"sourceUnit":2339,"src":"158:41:6","symbolAliases":[{"foreign":{"id":3834,"name":"Governor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2338,"src":"166:8:6","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":3837,"name":"Governor","nameLocations":["323:8:6"],"nodeType":"IdentifierPath","referencedDeclaration":2338,"src":"323:8:6"},"id":3838,"nodeType":"InheritanceSpecifier","src":"323:8:6"}],"canonicalName":"GovernorCountingSimple","contractDependencies":[],"contractKind":"contract","documentation":{"id":3836,"nodeType":"StructuredDocumentation","src":"201:77:6","text":" @dev Extension of {Governor} for simple, 3 options, vote counting."},"fullyImplemented":false,"id":4063,"linearizedBaseContracts":[4063,2338,5771,6811,2811,5592,7218,9588,5566,9806,9818,7128],"name":"GovernorCountingSimple","nameLocation":"297:22:6","nodeType":"ContractDefinition","nodes":[{"canonicalName":"GovernorCountingSimple.VoteType","documentation":{"id":3839,"nodeType":"StructuredDocumentation","src":"338:78:6","text":" @dev Supported vote types. Matches Governor Bravo ordering."},"id":3843,"members":[{"id":3840,"name":"Against","nameLocation":"445:7:6","nodeType":"EnumValue","src":"445:7:6"},{"id":3841,"name":"For","nameLocation":"462:3:6","nodeType":"EnumValue","src":"462:3:6"},{"id":3842,"name":"Abstain","nameLocation":"475:7:6","nodeType":"EnumValue","src":"475:7:6"}],"name":"VoteType","nameLocation":"426:8:6","nodeType":"EnumDefinition","src":"421:67:6"},{"canonicalName":"GovernorCountingSimple.ProposalVote","id":3854,"members":[{"constant":false,"id":3845,"mutability":"mutable","name":"againstVotes","nameLocation":"532:12:6","nodeType":"VariableDeclaration","scope":3854,"src":"524:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3844,"name":"uint256","nodeType":"ElementaryTypeName","src":"524:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3847,"mutability":"mutable","name":"forVotes","nameLocation":"562:8:6","nodeType":"VariableDeclaration","scope":3854,"src":"554:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3846,"name":"uint256","nodeType":"ElementaryTypeName","src":"554:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3849,"mutability":"mutable","name":"abstainVotes","nameLocation":"588:12:6","nodeType":"VariableDeclaration","scope":3854,"src":"580:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3848,"name":"uint256","nodeType":"ElementaryTypeName","src":"580:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3853,"mutability":"mutable","name":"hasVoted","nameLocation":"641:8:6","nodeType":"VariableDeclaration","scope":3854,"src":"610:39:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":3852,"keyName":"voter","keyNameLocation":"626:5:6","keyType":{"id":3850,"name":"address","nodeType":"ElementaryTypeName","src":"618:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"610:30:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":3851,"name":"bool","nodeType":"ElementaryTypeName","src":"635:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"internal"}],"name":"ProposalVote","nameLocation":"501:12:6","nodeType":"StructDefinition","scope":4063,"src":"494:162:6","visibility":"public"},{"constant":false,"id":3859,"mutability":"mutable","name":"_proposalVotes","nameLocation":"714:14:6","nodeType":"VariableDeclaration","scope":4063,"src":"662:66:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3854_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote)"},"typeName":{"id":3858,"keyName":"proposalId","keyNameLocation":"678:10:6","keyType":{"id":3855,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"662:43:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3854_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":3857,"nodeType":"UserDefinedTypeName","pathNode":{"id":3856,"name":"ProposalVote","nameLocations":["692:12:6"],"nodeType":"IdentifierPath","referencedDeclaration":3854,"src":"692:12:6"},"referencedDeclaration":3854,"src":"692:12:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"}}},"visibility":"private"},{"baseFunctions":[2533],"body":{"id":3868,"nodeType":"Block","src":"925:58:6","statements":[{"expression":{"hexValue":"737570706f72743d627261766f2671756f72756d3d666f722c6162737461696e","id":3866,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"942:34:6","typeDescriptions":{"typeIdentifier":"t_stringliteral_a3816e28b29b48b8e7bf93291116c21473ef28186248d173042d1986430466e1","typeString":"literal_string \"support=bravo&quorum=for,abstain\""},"value":"support=bravo&quorum=for,abstain"},"functionReturnParameters":3865,"id":3867,"nodeType":"Return","src":"935:41:6"}]},"documentation":{"id":3860,"nodeType":"StructuredDocumentation","src":"735:54:6","text":" @dev See {IGovernor-COUNTING_MODE}."},"functionSelector":"dd4e2ba5","id":3869,"implemented":true,"kind":"function","modifiers":[],"name":"COUNTING_MODE","nameLocation":"856:13:6","nodeType":"FunctionDefinition","overrides":{"id":3862,"nodeType":"OverrideSpecifier","overrides":[],"src":"892:8:6"},"parameters":{"id":3861,"nodeType":"ParameterList","parameters":[],"src":"869:2:6"},"returnParameters":{"id":3865,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3864,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3869,"src":"910:13:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3863,"name":"string","nodeType":"ElementaryTypeName","src":"910:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"909:15:6"},"scope":4063,"src":"847:136:6","stateMutability":"pure","virtual":true,"visibility":"public"},{"baseFunctions":[2674],"body":{"id":3887,"nodeType":"Block","src":"1142:68:6","statements":[{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":3880,"name":"_proposalVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3859,"src":"1159:14:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3854_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote storage ref)"}},"id":3882,"indexExpression":{"id":3881,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3872,"src":"1174:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1159:26:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage","typeString":"struct GovernorCountingSimple.ProposalVote storage ref"}},"id":3883,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1186:8:6","memberName":"hasVoted","nodeType":"MemberAccess","referencedDeclaration":3853,"src":"1159:35:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":3885,"indexExpression":{"id":3884,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3874,"src":"1195:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1159:44:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3879,"id":3886,"nodeType":"Return","src":"1152:51:6"}]},"documentation":{"id":3870,"nodeType":"StructuredDocumentation","src":"989:49:6","text":" @dev See {IGovernor-hasVoted}."},"functionSelector":"43859632","id":3888,"implemented":true,"kind":"function","modifiers":[],"name":"hasVoted","nameLocation":"1052:8:6","nodeType":"FunctionDefinition","overrides":{"id":3876,"nodeType":"OverrideSpecifier","overrides":[],"src":"1118:8:6"},"parameters":{"id":3875,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3872,"mutability":"mutable","name":"proposalId","nameLocation":"1069:10:6","nodeType":"VariableDeclaration","scope":3888,"src":"1061:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3871,"name":"uint256","nodeType":"ElementaryTypeName","src":"1061:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3874,"mutability":"mutable","name":"account","nameLocation":"1089:7:6","nodeType":"VariableDeclaration","scope":3888,"src":"1081:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3873,"name":"address","nodeType":"ElementaryTypeName","src":"1081:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1060:37:6"},"returnParameters":{"id":3879,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3878,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3888,"src":"1136:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3877,"name":"bool","nodeType":"ElementaryTypeName","src":"1136:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1135:6:6"},"scope":4063,"src":"1043:167:6","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":3915,"nodeType":"Block","src":"1430:173:6","statements":[{"assignments":[3902],"declarations":[{"constant":false,"id":3902,"mutability":"mutable","name":"proposalVote","nameLocation":"1461:12:6","nodeType":"VariableDeclaration","scope":3915,"src":"1440:33:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"},"typeName":{"id":3901,"nodeType":"UserDefinedTypeName","pathNode":{"id":3900,"name":"ProposalVote","nameLocations":["1440:12:6"],"nodeType":"IdentifierPath","referencedDeclaration":3854,"src":"1440:12:6"},"referencedDeclaration":3854,"src":"1440:12:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"}},"visibility":"internal"}],"id":3906,"initialValue":{"baseExpression":{"id":3903,"name":"_proposalVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3859,"src":"1476:14:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3854_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote storage ref)"}},"id":3905,"indexExpression":{"id":3904,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3891,"src":"1491:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1476:26:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage","typeString":"struct GovernorCountingSimple.ProposalVote storage ref"}},"nodeType":"VariableDeclarationStatement","src":"1440:62:6"},{"expression":{"components":[{"expression":{"id":3907,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3902,"src":"1520:12:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3908,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1533:12:6","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":3845,"src":"1520:25:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3909,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3902,"src":"1547:12:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3910,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1560:8:6","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":3847,"src":"1547:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3911,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3902,"src":"1570:12:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3912,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1583:12:6","memberName":"abstainVotes","nodeType":"MemberAccess","referencedDeclaration":3849,"src":"1570:25:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3913,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1519:77:6","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"functionReturnParameters":3899,"id":3914,"nodeType":"Return","src":"1512:84:6"}]},"documentation":{"id":3889,"nodeType":"StructuredDocumentation","src":"1216:61:6","text":" @dev Accessor to the internal vote counts."},"functionSelector":"544ffc9c","id":3916,"implemented":true,"kind":"function","modifiers":[],"name":"proposalVotes","nameLocation":"1291:13:6","nodeType":"FunctionDefinition","parameters":{"id":3892,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3891,"mutability":"mutable","name":"proposalId","nameLocation":"1322:10:6","nodeType":"VariableDeclaration","scope":3916,"src":"1314:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3890,"name":"uint256","nodeType":"ElementaryTypeName","src":"1314:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1304:34:6"},"returnParameters":{"id":3899,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3894,"mutability":"mutable","name":"againstVotes","nameLocation":"1376:12:6","nodeType":"VariableDeclaration","scope":3916,"src":"1368:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3893,"name":"uint256","nodeType":"ElementaryTypeName","src":"1368:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3896,"mutability":"mutable","name":"forVotes","nameLocation":"1398:8:6","nodeType":"VariableDeclaration","scope":3916,"src":"1390:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3895,"name":"uint256","nodeType":"ElementaryTypeName","src":"1390:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3898,"mutability":"mutable","name":"abstainVotes","nameLocation":"1416:12:6","nodeType":"VariableDeclaration","scope":3916,"src":"1408:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3897,"name":"uint256","nodeType":"ElementaryTypeName","src":"1408:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1367:62:6"},"scope":4063,"src":"1282:321:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1021],"body":{"id":3944,"nodeType":"Block","src":"1758:186:6","statements":[{"assignments":[3927],"declarations":[{"constant":false,"id":3927,"mutability":"mutable","name":"proposalVote","nameLocation":"1789:12:6","nodeType":"VariableDeclaration","scope":3944,"src":"1768:33:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"},"typeName":{"id":3926,"nodeType":"UserDefinedTypeName","pathNode":{"id":3925,"name":"ProposalVote","nameLocations":["1768:12:6"],"nodeType":"IdentifierPath","referencedDeclaration":3854,"src":"1768:12:6"},"referencedDeclaration":3854,"src":"1768:12:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"}},"visibility":"internal"}],"id":3931,"initialValue":{"baseExpression":{"id":3928,"name":"_proposalVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3859,"src":"1804:14:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3854_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote storage ref)"}},"id":3930,"indexExpression":{"id":3929,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3919,"src":"1819:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1804:26:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage","typeString":"struct GovernorCountingSimple.ProposalVote storage ref"}},"nodeType":"VariableDeclarationStatement","src":"1768:62:6"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":3934,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3919,"src":"1872:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3933,"name":"proposalSnapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":915,"src":"1855:16:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":3935,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1855:28:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3932,"name":"quorum","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2325,"src":"1848:6:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":3936,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1848:36:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3937,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3927,"src":"1888:12:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3938,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1901:8:6","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":3847,"src":"1888:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":3939,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3927,"src":"1912:12:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3940,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1925:12:6","memberName":"abstainVotes","nodeType":"MemberAccess","referencedDeclaration":3849,"src":"1912:25:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1888:49:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1848:89:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3924,"id":3943,"nodeType":"Return","src":"1841:96:6"}]},"documentation":{"id":3917,"nodeType":"StructuredDocumentation","src":"1609:54:6","text":" @dev See {Governor-_quorumReached}."},"id":3945,"implemented":true,"kind":"function","modifiers":[],"name":"_quorumReached","nameLocation":"1677:14:6","nodeType":"FunctionDefinition","overrides":{"id":3921,"nodeType":"OverrideSpecifier","overrides":[],"src":"1734:8:6"},"parameters":{"id":3920,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3919,"mutability":"mutable","name":"proposalId","nameLocation":"1700:10:6","nodeType":"VariableDeclaration","scope":3945,"src":"1692:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3918,"name":"uint256","nodeType":"ElementaryTypeName","src":"1692:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1691:20:6"},"returnParameters":{"id":3924,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3923,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3945,"src":"1752:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3922,"name":"bool","nodeType":"ElementaryTypeName","src":"1752:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1751:6:6"},"scope":4063,"src":"1668:276:6","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[1029],"body":{"id":3967,"nodeType":"Block","src":"2168:146:6","statements":[{"assignments":[3956],"declarations":[{"constant":false,"id":3956,"mutability":"mutable","name":"proposalVote","nameLocation":"2199:12:6","nodeType":"VariableDeclaration","scope":3967,"src":"2178:33:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"},"typeName":{"id":3955,"nodeType":"UserDefinedTypeName","pathNode":{"id":3954,"name":"ProposalVote","nameLocations":["2178:12:6"],"nodeType":"IdentifierPath","referencedDeclaration":3854,"src":"2178:12:6"},"referencedDeclaration":3854,"src":"2178:12:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"}},"visibility":"internal"}],"id":3960,"initialValue":{"baseExpression":{"id":3957,"name":"_proposalVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3859,"src":"2214:14:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3854_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote storage ref)"}},"id":3959,"indexExpression":{"id":3958,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3948,"src":"2229:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2214:26:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage","typeString":"struct GovernorCountingSimple.ProposalVote storage ref"}},"nodeType":"VariableDeclarationStatement","src":"2178:62:6"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3961,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3956,"src":"2258:12:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3962,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2271:8:6","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":3847,"src":"2258:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":3963,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3956,"src":"2282:12:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3964,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2295:12:6","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":3845,"src":"2282:25:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2258:49:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":3953,"id":3966,"nodeType":"Return","src":"2251:56:6"}]},"documentation":{"id":3946,"nodeType":"StructuredDocumentation","src":"1950:123:6","text":" @dev See {Governor-_voteSucceeded}. In this module, the forVotes must be strictly over the againstVotes."},"id":3968,"implemented":true,"kind":"function","modifiers":[],"name":"_voteSucceeded","nameLocation":"2087:14:6","nodeType":"FunctionDefinition","overrides":{"id":3950,"nodeType":"OverrideSpecifier","overrides":[],"src":"2144:8:6"},"parameters":{"id":3949,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3948,"mutability":"mutable","name":"proposalId","nameLocation":"2110:10:6","nodeType":"VariableDeclaration","scope":3968,"src":"2102:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3947,"name":"uint256","nodeType":"ElementaryTypeName","src":"2102:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2101:20:6"},"returnParameters":{"id":3953,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3952,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3968,"src":"2162:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3951,"name":"bool","nodeType":"ElementaryTypeName","src":"2162:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2161:6:6"},"scope":4063,"src":"2078:236:6","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[1057],"body":{"id":4061,"nodeType":"Block","src":"2661:657:6","statements":[{"assignments":[3987],"declarations":[{"constant":false,"id":3987,"mutability":"mutable","name":"proposalVote","nameLocation":"2692:12:6","nodeType":"VariableDeclaration","scope":4061,"src":"2671:33:6","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"},"typeName":{"id":3986,"nodeType":"UserDefinedTypeName","pathNode":{"id":3985,"name":"ProposalVote","nameLocations":["2671:12:6"],"nodeType":"IdentifierPath","referencedDeclaration":3854,"src":"2671:12:6"},"referencedDeclaration":3854,"src":"2671:12:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote"}},"visibility":"internal"}],"id":3991,"initialValue":{"baseExpression":{"id":3988,"name":"_proposalVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3859,"src":"2707:14:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ProposalVote_$3854_storage_$","typeString":"mapping(uint256 => struct GovernorCountingSimple.ProposalVote storage ref)"}},"id":3990,"indexExpression":{"id":3989,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3971,"src":"2722:10:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2707:26:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage","typeString":"struct GovernorCountingSimple.ProposalVote storage ref"}},"nodeType":"VariableDeclarationStatement","src":"2671:62:6"},{"condition":{"baseExpression":{"expression":{"id":3992,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3987,"src":"2748:12:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":3993,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2761:8:6","memberName":"hasVoted","nodeType":"MemberAccess","referencedDeclaration":3853,"src":"2748:21:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":3995,"indexExpression":{"id":3994,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3973,"src":"2770:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2748:30:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4001,"nodeType":"IfStatement","src":"2744:100:6","trueBody":{"id":4000,"nodeType":"Block","src":"2780:64:6","statements":[{"errorCall":{"arguments":[{"id":3997,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3973,"src":"2825:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3996,"name":"GovernorAlreadyCastVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2372,"src":"2801:23:6","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":3998,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2801:32:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3999,"nodeType":"RevertStatement","src":"2794:39:6"}]}},{"expression":{"id":4008,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":4002,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3987,"src":"2853:12:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":4005,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2866:8:6","memberName":"hasVoted","nodeType":"MemberAccess","referencedDeclaration":3853,"src":"2853:21:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":4006,"indexExpression":{"id":4004,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3973,"src":"2875:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2853:30:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":4007,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2886:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"2853:37:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4009,"nodeType":"ExpressionStatement","src":"2853:37:6"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":4016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4010,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3975,"src":"2905:7:6","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"expression":{"id":4013,"name":"VoteType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3843,"src":"2922:8:6","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_VoteType_$3843_$","typeString":"type(enum GovernorCountingSimple.VoteType)"}},"id":4014,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2931:7:6","memberName":"Against","nodeType":"MemberAccess","referencedDeclaration":3840,"src":"2922:16:6","typeDescriptions":{"typeIdentifier":"t_enum$_VoteType_$3843","typeString":"enum GovernorCountingSimple.VoteType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_VoteType_$3843","typeString":"enum GovernorCountingSimple.VoteType"}],"id":4012,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2916:5:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":4011,"name":"uint8","nodeType":"ElementaryTypeName","src":"2916:5:6","typeDescriptions":{}}},"id":4015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2916:23:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"2905:34:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":4030,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4024,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3975,"src":"3016:7:6","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"expression":{"id":4027,"name":"VoteType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3843,"src":"3033:8:6","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_VoteType_$3843_$","typeString":"type(enum GovernorCountingSimple.VoteType)"}},"id":4028,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3042:3:6","memberName":"For","nodeType":"MemberAccess","referencedDeclaration":3841,"src":"3033:12:6","typeDescriptions":{"typeIdentifier":"t_enum$_VoteType_$3843","typeString":"enum GovernorCountingSimple.VoteType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_VoteType_$3843","typeString":"enum GovernorCountingSimple.VoteType"}],"id":4026,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3027:5:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":4025,"name":"uint8","nodeType":"ElementaryTypeName","src":"3027:5:6","typeDescriptions":{}}},"id":4029,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3027:19:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"3016:30:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":4044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4038,"name":"support","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3975,"src":"3119:7:6","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"expression":{"id":4041,"name":"VoteType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3843,"src":"3136:8:6","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_VoteType_$3843_$","typeString":"type(enum GovernorCountingSimple.VoteType)"}},"id":4042,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3145:7:6","memberName":"Abstain","nodeType":"MemberAccess","referencedDeclaration":3842,"src":"3136:16:6","typeDescriptions":{"typeIdentifier":"t_enum$_VoteType_$3843","typeString":"enum GovernorCountingSimple.VoteType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_VoteType_$3843","typeString":"enum GovernorCountingSimple.VoteType"}],"id":4040,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3130:5:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":4039,"name":"uint8","nodeType":"ElementaryTypeName","src":"3130:5:6","typeDescriptions":{}}},"id":4043,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3130:23:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"3119:34:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":4055,"nodeType":"Block","src":"3226:57:6","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":4052,"name":"GovernorInvalidVoteType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2417,"src":"3247:23:6","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":4053,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3247:25:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4054,"nodeType":"RevertStatement","src":"3240:32:6"}]},"id":4056,"nodeType":"IfStatement","src":"3115:168:6","trueBody":{"id":4051,"nodeType":"Block","src":"3155:65:6","statements":[{"expression":{"id":4049,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":4045,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3987,"src":"3169:12:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":4047,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3182:12:6","memberName":"abstainVotes","nodeType":"MemberAccess","referencedDeclaration":3849,"src":"3169:25:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":4048,"name":"totalWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3977,"src":"3198:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3169:40:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4050,"nodeType":"ExpressionStatement","src":"3169:40:6"}]}},"id":4057,"nodeType":"IfStatement","src":"3012:271:6","trueBody":{"id":4037,"nodeType":"Block","src":"3048:61:6","statements":[{"expression":{"id":4035,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":4031,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3987,"src":"3062:12:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":4033,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3075:8:6","memberName":"forVotes","nodeType":"MemberAccess","referencedDeclaration":3847,"src":"3062:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":4034,"name":"totalWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3977,"src":"3087:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3062:36:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4036,"nodeType":"ExpressionStatement","src":"3062:36:6"}]}},"id":4058,"nodeType":"IfStatement","src":"2901:382:6","trueBody":{"id":4023,"nodeType":"Block","src":"2941:65:6","statements":[{"expression":{"id":4021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":4017,"name":"proposalVote","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3987,"src":"2955:12:6","typeDescriptions":{"typeIdentifier":"t_struct$_ProposalVote_$3854_storage_ptr","typeString":"struct GovernorCountingSimple.ProposalVote storage pointer"}},"id":4019,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2968:12:6","memberName":"againstVotes","nodeType":"MemberAccess","referencedDeclaration":3845,"src":"2955:25:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":4020,"name":"totalWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3977,"src":"2984:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2955:40:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4022,"nodeType":"ExpressionStatement","src":"2955:40:6"}]}},{"expression":{"id":4059,"name":"totalWeight","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3977,"src":"3300:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3984,"id":4060,"nodeType":"Return","src":"3293:18:6"}]},"documentation":{"id":3969,"nodeType":"StructuredDocumentation","src":"2320:129:6","text":" @dev See {Governor-_countVote}. In this module, the support follows the `VoteType` enum (from Governor Bravo)."},"id":4062,"implemented":true,"kind":"function","modifiers":[],"name":"_countVote","nameLocation":"2463:10:6","nodeType":"FunctionDefinition","overrides":{"id":3981,"nodeType":"OverrideSpecifier","overrides":[],"src":"2634:8:6"},"parameters":{"id":3980,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3971,"mutability":"mutable","name":"proposalId","nameLocation":"2491:10:6","nodeType":"VariableDeclaration","scope":4062,"src":"2483:18:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3970,"name":"uint256","nodeType":"ElementaryTypeName","src":"2483:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3973,"mutability":"mutable","name":"account","nameLocation":"2519:7:6","nodeType":"VariableDeclaration","scope":4062,"src":"2511:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3972,"name":"address","nodeType":"ElementaryTypeName","src":"2511:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3975,"mutability":"mutable","name":"support","nameLocation":"2542:7:6","nodeType":"VariableDeclaration","scope":4062,"src":"2536:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":3974,"name":"uint8","nodeType":"ElementaryTypeName","src":"2536:5:6","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":3977,"mutability":"mutable","name":"totalWeight","nameLocation":"2567:11:6","nodeType":"VariableDeclaration","scope":4062,"src":"2559:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3976,"name":"uint256","nodeType":"ElementaryTypeName","src":"2559:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3979,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4062,"src":"2588:12:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3978,"name":"bytes","nodeType":"ElementaryTypeName","src":"2588:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2473:143:6"},"returnParameters":{"id":3984,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3983,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4062,"src":"2652:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3982,"name":"uint256","nodeType":"ElementaryTypeName","src":"2652:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2651:9:6"},"scope":4063,"src":"2454:864:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":4064,"src":"279:3041:6","usedErrors":[2367,2372,2375,2380,2385,2395,2400,2409,2414,2417,2420,2423,2428,2433,2438,2445,7141,7160,7284,7286,11449],"usedEvents":[2470,2477,2482,2487,2500,2515,5546]}],"src":"132:3189:6"},"id":6},"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol","exportedSymbols":{"Governor":[2338],"GovernorSettings":[4244]},"id":4245,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4065,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"126:24:7"},{"absolutePath":"@openzeppelin/contracts/governance/Governor.sol","file":"../Governor.sol","id":4067,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4245,"sourceUnit":2339,"src":"152:41:7","symbolAliases":[{"foreign":{"id":4066,"name":"Governor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2338,"src":"160:8:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":4069,"name":"Governor","nameLocations":["316:8:7"],"nodeType":"IdentifierPath","referencedDeclaration":2338,"src":"316:8:7"},"id":4070,"nodeType":"InheritanceSpecifier","src":"316:8:7"}],"canonicalName":"GovernorSettings","contractDependencies":[],"contractKind":"contract","documentation":{"id":4068,"nodeType":"StructuredDocumentation","src":"195:82:7","text":" @dev Extension of {Governor} for settings updatable through governance."},"fullyImplemented":false,"id":4244,"linearizedBaseContracts":[4244,2338,5771,6811,2811,5592,7218,9588,5566,9806,9818,7128],"name":"GovernorSettings","nameLocation":"296:16:7","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":4072,"mutability":"mutable","name":"_proposalThreshold","nameLocation":"370:18:7","nodeType":"VariableDeclaration","scope":4244,"src":"354:34:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4071,"name":"uint256","nodeType":"ElementaryTypeName","src":"354:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":4074,"mutability":"mutable","name":"_votingDelay","nameLocation":"476:12:7","nodeType":"VariableDeclaration","scope":4244,"src":"461:27:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4073,"name":"uint48","nodeType":"ElementaryTypeName","src":"461:6:7","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"private"},{"constant":false,"id":4076,"mutability":"mutable","name":"_votingPeriod","nameLocation":"552:13:7","nodeType":"VariableDeclaration","scope":4244,"src":"537:28:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4075,"name":"uint32","nodeType":"ElementaryTypeName","src":"537:6:7","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"private"},{"anonymous":false,"eventSelector":"c565b045403dc03c2eea82b81a0465edad9e2e7fc4d97e11421c209da93d7a93","id":4082,"name":"VotingDelaySet","nameLocation":"578:14:7","nodeType":"EventDefinition","parameters":{"id":4081,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4078,"indexed":false,"mutability":"mutable","name":"oldVotingDelay","nameLocation":"601:14:7","nodeType":"VariableDeclaration","scope":4082,"src":"593:22:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4077,"name":"uint256","nodeType":"ElementaryTypeName","src":"593:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4080,"indexed":false,"mutability":"mutable","name":"newVotingDelay","nameLocation":"625:14:7","nodeType":"VariableDeclaration","scope":4082,"src":"617:22:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4079,"name":"uint256","nodeType":"ElementaryTypeName","src":"617:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"592:48:7"},"src":"572:69:7"},{"anonymous":false,"eventSelector":"7e3f7f0708a84de9203036abaa450dccc85ad5ff52f78c170f3edb55cf5e8828","id":4088,"name":"VotingPeriodSet","nameLocation":"652:15:7","nodeType":"EventDefinition","parameters":{"id":4087,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4084,"indexed":false,"mutability":"mutable","name":"oldVotingPeriod","nameLocation":"676:15:7","nodeType":"VariableDeclaration","scope":4088,"src":"668:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4083,"name":"uint256","nodeType":"ElementaryTypeName","src":"668:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4086,"indexed":false,"mutability":"mutable","name":"newVotingPeriod","nameLocation":"701:15:7","nodeType":"VariableDeclaration","scope":4088,"src":"693:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4085,"name":"uint256","nodeType":"ElementaryTypeName","src":"693:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"667:50:7"},"src":"646:72:7"},{"anonymous":false,"eventSelector":"ccb45da8d5717e6c4544694297c4ba5cf151d455c9bb0ed4fc7a38411bc05461","id":4094,"name":"ProposalThresholdSet","nameLocation":"729:20:7","nodeType":"EventDefinition","parameters":{"id":4093,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4090,"indexed":false,"mutability":"mutable","name":"oldProposalThreshold","nameLocation":"758:20:7","nodeType":"VariableDeclaration","scope":4094,"src":"750:28:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4089,"name":"uint256","nodeType":"ElementaryTypeName","src":"750:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4092,"indexed":false,"mutability":"mutable","name":"newProposalThreshold","nameLocation":"788:20:7","nodeType":"VariableDeclaration","scope":4094,"src":"780:28:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4091,"name":"uint256","nodeType":"ElementaryTypeName","src":"780:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"749:60:7"},"src":"723:87:7"},{"body":{"id":4116,"nodeType":"Block","src":"983:156:7","statements":[{"expression":{"arguments":[{"id":4105,"name":"initialVotingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4097,"src":"1009:18:7","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":4104,"name":"_setVotingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4202,"src":"993:15:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint48_$returns$__$","typeString":"function (uint48)"}},"id":4106,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"993:35:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4107,"nodeType":"ExpressionStatement","src":"993:35:7"},{"expression":{"arguments":[{"id":4109,"name":"initialVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4099,"src":"1055:19:7","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":4108,"name":"_setVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4227,"src":"1038:16:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint32_$returns$__$","typeString":"function (uint32)"}},"id":4110,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1038:37:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4111,"nodeType":"ExpressionStatement","src":"1038:37:7"},{"expression":{"arguments":[{"id":4113,"name":"initialProposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4101,"src":"1107:24:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4112,"name":"_setProposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4243,"src":"1085:21:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":4114,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1085:47:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4115,"nodeType":"ExpressionStatement","src":"1085:47:7"}]},"documentation":{"id":4095,"nodeType":"StructuredDocumentation","src":"816:61:7","text":" @dev Initialize the governance parameters."},"id":4117,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4102,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4097,"mutability":"mutable","name":"initialVotingDelay","nameLocation":"901:18:7","nodeType":"VariableDeclaration","scope":4117,"src":"894:25:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4096,"name":"uint48","nodeType":"ElementaryTypeName","src":"894:6:7","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":4099,"mutability":"mutable","name":"initialVotingPeriod","nameLocation":"928:19:7","nodeType":"VariableDeclaration","scope":4117,"src":"921:26:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4098,"name":"uint32","nodeType":"ElementaryTypeName","src":"921:6:7","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":4101,"mutability":"mutable","name":"initialProposalThreshold","nameLocation":"957:24:7","nodeType":"VariableDeclaration","scope":4117,"src":"949:32:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4100,"name":"uint256","nodeType":"ElementaryTypeName","src":"949:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"893:89:7"},"returnParameters":{"id":4103,"nodeType":"ParameterList","parameters":[],"src":"983:0:7"},"scope":4244,"src":"882:257:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[2311],"body":{"id":4126,"nodeType":"Block","src":"1272:36:7","statements":[{"expression":{"id":4124,"name":"_votingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4074,"src":"1289:12:7","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":4123,"id":4125,"nodeType":"Return","src":"1282:19:7"}]},"documentation":{"id":4118,"nodeType":"StructuredDocumentation","src":"1145:52:7","text":" @dev See {IGovernor-votingDelay}."},"functionSelector":"3932abb1","id":4127,"implemented":true,"kind":"function","modifiers":[],"name":"votingDelay","nameLocation":"1211:11:7","nodeType":"FunctionDefinition","overrides":{"id":4120,"nodeType":"OverrideSpecifier","overrides":[],"src":"1245:8:7"},"parameters":{"id":4119,"nodeType":"ParameterList","parameters":[],"src":"1222:2:7"},"returnParameters":{"id":4123,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4122,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4127,"src":"1263:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4121,"name":"uint256","nodeType":"ElementaryTypeName","src":"1263:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1262:9:7"},"scope":4244,"src":"1202:106:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2317],"body":{"id":4136,"nodeType":"Block","src":"1443:37:7","statements":[{"expression":{"id":4134,"name":"_votingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4076,"src":"1460:13:7","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":4133,"id":4135,"nodeType":"Return","src":"1453:20:7"}]},"documentation":{"id":4128,"nodeType":"StructuredDocumentation","src":"1314:53:7","text":" @dev See {IGovernor-votingPeriod}."},"functionSelector":"02a251a3","id":4137,"implemented":true,"kind":"function","modifiers":[],"name":"votingPeriod","nameLocation":"1381:12:7","nodeType":"FunctionDefinition","overrides":{"id":4130,"nodeType":"OverrideSpecifier","overrides":[],"src":"1416:8:7"},"parameters":{"id":4129,"nodeType":"ParameterList","parameters":[],"src":"1393:2:7"},"returnParameters":{"id":4133,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4132,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4137,"src":"1434:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4131,"name":"uint256","nodeType":"ElementaryTypeName","src":"1434:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1433:9:7"},"scope":4244,"src":"1372:108:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[901],"body":{"id":4146,"nodeType":"Block","src":"1624:42:7","statements":[{"expression":{"id":4144,"name":"_proposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4072,"src":"1641:18:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4143,"id":4145,"nodeType":"Return","src":"1634:25:7"}]},"documentation":{"id":4138,"nodeType":"StructuredDocumentation","src":"1486:57:7","text":" @dev See {Governor-proposalThreshold}."},"functionSelector":"b58131b0","id":4147,"implemented":true,"kind":"function","modifiers":[],"name":"proposalThreshold","nameLocation":"1557:17:7","nodeType":"FunctionDefinition","overrides":{"id":4140,"nodeType":"OverrideSpecifier","overrides":[],"src":"1597:8:7"},"parameters":{"id":4139,"nodeType":"ParameterList","parameters":[],"src":"1574:2:7"},"returnParameters":{"id":4143,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4142,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4147,"src":"1615:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4141,"name":"uint256","nodeType":"ElementaryTypeName","src":"1615:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1614:9:7"},"scope":4244,"src":"1548:118:7","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4159,"nodeType":"Block","src":"1916:48:7","statements":[{"expression":{"arguments":[{"id":4156,"name":"newVotingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4150,"src":"1942:14:7","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":4155,"name":"_setVotingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4202,"src":"1926:15:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint48_$returns$__$","typeString":"function (uint48)"}},"id":4157,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1926:31:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4158,"nodeType":"ExpressionStatement","src":"1926:31:7"}]},"documentation":{"id":4148,"nodeType":"StructuredDocumentation","src":"1672:162:7","text":" @dev Update the voting delay. This operation can only be performed through a governance proposal.\n Emits a {VotingDelaySet} event."},"functionSelector":"79051887","id":4160,"implemented":true,"kind":"function","modifiers":[{"id":4153,"kind":"modifierInvocation","modifierName":{"id":4152,"name":"onlyGovernance","nameLocations":["1901:14:7"],"nodeType":"IdentifierPath","referencedDeclaration":634,"src":"1901:14:7"},"nodeType":"ModifierInvocation","src":"1901:14:7"}],"name":"setVotingDelay","nameLocation":"1848:14:7","nodeType":"FunctionDefinition","parameters":{"id":4151,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4150,"mutability":"mutable","name":"newVotingDelay","nameLocation":"1870:14:7","nodeType":"VariableDeclaration","scope":4160,"src":"1863:21:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4149,"name":"uint48","nodeType":"ElementaryTypeName","src":"1863:6:7","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"1862:23:7"},"returnParameters":{"id":4154,"nodeType":"ParameterList","parameters":[],"src":"1916:0:7"},"scope":4244,"src":"1839:125:7","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":4172,"nodeType":"Block","src":"2218:50:7","statements":[{"expression":{"arguments":[{"id":4169,"name":"newVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4163,"src":"2245:15:7","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":4168,"name":"_setVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4227,"src":"2228:16:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint32_$returns$__$","typeString":"function (uint32)"}},"id":4170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2228:33:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4171,"nodeType":"ExpressionStatement","src":"2228:33:7"}]},"documentation":{"id":4161,"nodeType":"StructuredDocumentation","src":"1970:164:7","text":" @dev Update the voting period. This operation can only be performed through a governance proposal.\n Emits a {VotingPeriodSet} event."},"functionSelector":"e540d01d","id":4173,"implemented":true,"kind":"function","modifiers":[{"id":4166,"kind":"modifierInvocation","modifierName":{"id":4165,"name":"onlyGovernance","nameLocations":["2203:14:7"],"nodeType":"IdentifierPath","referencedDeclaration":634,"src":"2203:14:7"},"nodeType":"ModifierInvocation","src":"2203:14:7"}],"name":"setVotingPeriod","nameLocation":"2148:15:7","nodeType":"FunctionDefinition","parameters":{"id":4164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4163,"mutability":"mutable","name":"newVotingPeriod","nameLocation":"2171:15:7","nodeType":"VariableDeclaration","scope":4173,"src":"2164:22:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4162,"name":"uint32","nodeType":"ElementaryTypeName","src":"2164:6:7","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2163:24:7"},"returnParameters":{"id":4167,"nodeType":"ParameterList","parameters":[],"src":"2218:0:7"},"scope":4244,"src":"2139:129:7","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":4185,"nodeType":"Block","src":"2543:60:7","statements":[{"expression":{"arguments":[{"id":4182,"name":"newProposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4176,"src":"2575:20:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4181,"name":"_setProposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4243,"src":"2553:21:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":4183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2553:43:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4184,"nodeType":"ExpressionStatement","src":"2553:43:7"}]},"documentation":{"id":4174,"nodeType":"StructuredDocumentation","src":"2274:174:7","text":" @dev Update the proposal threshold. This operation can only be performed through a governance proposal.\n Emits a {ProposalThresholdSet} event."},"functionSelector":"ece40cc1","id":4186,"implemented":true,"kind":"function","modifiers":[{"id":4179,"kind":"modifierInvocation","modifierName":{"id":4178,"name":"onlyGovernance","nameLocations":["2528:14:7"],"nodeType":"IdentifierPath","referencedDeclaration":634,"src":"2528:14:7"},"nodeType":"ModifierInvocation","src":"2528:14:7"}],"name":"setProposalThreshold","nameLocation":"2462:20:7","nodeType":"FunctionDefinition","parameters":{"id":4177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4176,"mutability":"mutable","name":"newProposalThreshold","nameLocation":"2491:20:7","nodeType":"VariableDeclaration","scope":4186,"src":"2483:28:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4175,"name":"uint256","nodeType":"ElementaryTypeName","src":"2483:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2482:30:7"},"returnParameters":{"id":4180,"nodeType":"ParameterList","parameters":[],"src":"2543:0:7"},"scope":4244,"src":"2453:150:7","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":4201,"nodeType":"Block","src":"2786:105:7","statements":[{"eventCall":{"arguments":[{"id":4193,"name":"_votingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4074,"src":"2816:12:7","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":4194,"name":"newVotingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4189,"src":"2830:14:7","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":4192,"name":"VotingDelaySet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4082,"src":"2801:14:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":4195,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2801:44:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4196,"nodeType":"EmitStatement","src":"2796:49:7"},{"expression":{"id":4199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4197,"name":"_votingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4074,"src":"2855:12:7","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4198,"name":"newVotingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4189,"src":"2870:14:7","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"2855:29:7","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":4200,"nodeType":"ExpressionStatement","src":"2855:29:7"}]},"documentation":{"id":4187,"nodeType":"StructuredDocumentation","src":"2609:107:7","text":" @dev Internal setter for the voting delay.\n Emits a {VotingDelaySet} event."},"id":4202,"implemented":true,"kind":"function","modifiers":[],"name":"_setVotingDelay","nameLocation":"2730:15:7","nodeType":"FunctionDefinition","parameters":{"id":4190,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4189,"mutability":"mutable","name":"newVotingDelay","nameLocation":"2753:14:7","nodeType":"VariableDeclaration","scope":4202,"src":"2746:21:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4188,"name":"uint48","nodeType":"ElementaryTypeName","src":"2746:6:7","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2745:23:7"},"returnParameters":{"id":4191,"nodeType":"ParameterList","parameters":[],"src":"2786:0:7"},"scope":4244,"src":"2721:170:7","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":4226,"nodeType":"Block","src":"3078:207:7","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":4210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4208,"name":"newVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4205,"src":"3092:15:7","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4209,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3111:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3092:20:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4216,"nodeType":"IfStatement","src":"3088:88:7","trueBody":{"id":4215,"nodeType":"Block","src":"3114:62:7","statements":[{"errorCall":{"arguments":[{"hexValue":"30","id":4212,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3163:1:7","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":4211,"name":"GovernorInvalidVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2400,"src":"3135:27:7","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":4213,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3135:30:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4214,"nodeType":"RevertStatement","src":"3128:37:7"}]}},{"eventCall":{"arguments":[{"id":4218,"name":"_votingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4076,"src":"3206:13:7","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":4219,"name":"newVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4205,"src":"3221:15:7","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":4217,"name":"VotingPeriodSet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4088,"src":"3190:15:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":4220,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3190:47:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4221,"nodeType":"EmitStatement","src":"3185:52:7"},{"expression":{"id":4224,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4222,"name":"_votingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4076,"src":"3247:13:7","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4223,"name":"newVotingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4205,"src":"3263:15:7","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"3247:31:7","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":4225,"nodeType":"ExpressionStatement","src":"3247:31:7"}]},"documentation":{"id":4203,"nodeType":"StructuredDocumentation","src":"2897:109:7","text":" @dev Internal setter for the voting period.\n Emits a {VotingPeriodSet} event."},"id":4227,"implemented":true,"kind":"function","modifiers":[],"name":"_setVotingPeriod","nameLocation":"3020:16:7","nodeType":"FunctionDefinition","parameters":{"id":4206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4205,"mutability":"mutable","name":"newVotingPeriod","nameLocation":"3044:15:7","nodeType":"VariableDeclaration","scope":4227,"src":"3037:22:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4204,"name":"uint32","nodeType":"ElementaryTypeName","src":"3037:6:7","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"3036:24:7"},"returnParameters":{"id":4207,"nodeType":"ParameterList","parameters":[],"src":"3078:0:7"},"scope":4244,"src":"3011:274:7","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":4242,"nodeType":"Block","src":"3493:135:7","statements":[{"eventCall":{"arguments":[{"id":4234,"name":"_proposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4072,"src":"3529:18:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4235,"name":"newProposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4230,"src":"3549:20:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4233,"name":"ProposalThresholdSet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4094,"src":"3508:20:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":4236,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3508:62:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4237,"nodeType":"EmitStatement","src":"3503:67:7"},{"expression":{"id":4240,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4238,"name":"_proposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4072,"src":"3580:18:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4239,"name":"newProposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4230,"src":"3601:20:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3580:41:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4241,"nodeType":"ExpressionStatement","src":"3580:41:7"}]},"documentation":{"id":4228,"nodeType":"StructuredDocumentation","src":"3291:119:7","text":" @dev Internal setter for the proposal threshold.\n Emits a {ProposalThresholdSet} event."},"id":4243,"implemented":true,"kind":"function","modifiers":[],"name":"_setProposalThreshold","nameLocation":"3424:21:7","nodeType":"FunctionDefinition","parameters":{"id":4231,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4230,"mutability":"mutable","name":"newProposalThreshold","nameLocation":"3454:20:7","nodeType":"VariableDeclaration","scope":4243,"src":"3446:28:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4229,"name":"uint256","nodeType":"ElementaryTypeName","src":"3446:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3445:30:7"},"returnParameters":{"id":4232,"nodeType":"ParameterList","parameters":[],"src":"3493:0:7"},"scope":4244,"src":"3415:213:7","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":4245,"src":"278:3352:7","usedErrors":[2367,2372,2375,2380,2385,2395,2400,2409,2414,2417,2420,2423,2428,2433,2438,2445,7141,7160,7284,7286,11449],"usedEvents":[2470,2477,2482,2487,2500,2515,4082,4088,4094,5546]}],"src":"126:3505:7"},"id":7},"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol","exportedSymbols":{"Governor":[2338],"GovernorTimelockControl":[4589],"IERC165":[9818],"IGovernor":[2811],"SafeCast":[13204],"TimelockController":[3831]},"id":4590,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4246,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"133:24:8"},{"absolutePath":"@openzeppelin/contracts/governance/Governor.sol","file":"../Governor.sol","id":4249,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4590,"sourceUnit":2339,"src":"159:52:8","symbolAliases":[{"foreign":{"id":4247,"name":"IGovernor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2811,"src":"167:9:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":4248,"name":"Governor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2338,"src":"178:8:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/TimelockController.sol","file":"../TimelockController.sol","id":4251,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4590,"sourceUnit":3832,"src":"212:61:8","symbolAliases":[{"foreign":{"id":4250,"name":"TimelockController","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3831,"src":"220:18:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","file":"../../interfaces/IERC165.sol","id":4253,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4590,"sourceUnit":5542,"src":"274:53:8","symbolAliases":[{"foreign":{"id":4252,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9818,"src":"282:7:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../../utils/math/SafeCast.sol","id":4255,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4590,"sourceUnit":13205,"src":"328:55:8","symbolAliases":[{"foreign":{"id":4254,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"336:8:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":4257,"name":"Governor","nameLocations":["1543:8:8"],"nodeType":"IdentifierPath","referencedDeclaration":2338,"src":"1543:8:8"},"id":4258,"nodeType":"InheritanceSpecifier","src":"1543:8:8"}],"canonicalName":"GovernorTimelockControl","contractDependencies":[],"contractKind":"contract","documentation":{"id":4256,"nodeType":"StructuredDocumentation","src":"385:1112:8","text":" @dev Extension of {Governor} that binds the execution process to an instance of {TimelockController}. This adds a\n delay, enforced by the {TimelockController} to all successful proposal (in addition to the voting duration). The\n {Governor} needs the proposer (and ideally the executor and canceller) roles for the {Governor} to work properly.\n Using this model means the proposal will be operated by the {TimelockController} and not by the {Governor}. Thus,\n the assets and permissions must be attached to the {TimelockController}. Any asset sent to the {Governor} will be\n inaccessible from a proposal, unless executed via {Governor-relay}.\n WARNING: Setting up the TimelockController to have additional proposers or cancelers besides the governor is very\n risky, as it grants them the ability to: 1) execute operations as the timelock, and thus possibly performing\n operations or accessing funds that are expected to only be accessible through a vote, and 2) block governance\n proposals that have been approved by the voters, effectively executing a Denial of Service attack."},"fullyImplemented":false,"id":4589,"linearizedBaseContracts":[4589,2338,5771,6811,2811,5592,7218,9588,5566,9806,9818,7128],"name":"GovernorTimelockControl","nameLocation":"1516:23:8","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":4261,"mutability":"mutable","name":"_timelock","nameLocation":"1585:9:8","nodeType":"VariableDeclaration","scope":4589,"src":"1558:36:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"},"typeName":{"id":4260,"nodeType":"UserDefinedTypeName","pathNode":{"id":4259,"name":"TimelockController","nameLocations":["1558:18:8"],"nodeType":"IdentifierPath","referencedDeclaration":3831,"src":"1558:18:8"},"referencedDeclaration":3831,"src":"1558:18:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}},"visibility":"private"},{"constant":false,"id":4265,"mutability":"mutable","name":"_timelockIds","nameLocation":"1647:12:8","nodeType":"VariableDeclaration","scope":4589,"src":"1600:59:8","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"},"typeName":{"id":4264,"keyName":"proposalId","keyNameLocation":"1616:10:8","keyType":{"id":4262,"name":"uint256","nodeType":"ElementaryTypeName","src":"1608:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"1600:38:8","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4263,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1630:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},"visibility":"private"},{"anonymous":false,"documentation":{"id":4266,"nodeType":"StructuredDocumentation","src":"1666:101:8","text":" @dev Emitted when the timelock controller used for proposal execution is modified."},"eventSelector":"08f74ea46ef7894f65eabfb5e6e695de773a000b47c529ab559178069b226401","id":4272,"name":"TimelockChange","nameLocation":"1778:14:8","nodeType":"EventDefinition","parameters":{"id":4271,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4268,"indexed":false,"mutability":"mutable","name":"oldTimelock","nameLocation":"1801:11:8","nodeType":"VariableDeclaration","scope":4272,"src":"1793:19:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4267,"name":"address","nodeType":"ElementaryTypeName","src":"1793:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4270,"indexed":false,"mutability":"mutable","name":"newTimelock","nameLocation":"1822:11:8","nodeType":"VariableDeclaration","scope":4272,"src":"1814:19:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4269,"name":"address","nodeType":"ElementaryTypeName","src":"1814:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1792:42:8"},"src":"1772:63:8"},{"body":{"id":4283,"nodeType":"Block","src":"1935:49:8","statements":[{"expression":{"arguments":[{"id":4280,"name":"timelockAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4276,"src":"1961:15:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}],"id":4279,"name":"_updateTimelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4569,"src":"1945:15:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_TimelockController_$3831_$returns$__$","typeString":"function (contract TimelockController)"}},"id":4281,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1945:32:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4282,"nodeType":"ExpressionStatement","src":"1945:32:8"}]},"documentation":{"id":4273,"nodeType":"StructuredDocumentation","src":"1841:41:8","text":" @dev Set the timelock."},"id":4284,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4277,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4276,"mutability":"mutable","name":"timelockAddress","nameLocation":"1918:15:8","nodeType":"VariableDeclaration","scope":4284,"src":"1899:34:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"},"typeName":{"id":4275,"nodeType":"UserDefinedTypeName","pathNode":{"id":4274,"name":"TimelockController","nameLocations":["1899:18:8"],"nodeType":"IdentifierPath","referencedDeclaration":3831,"src":"1899:18:8"},"referencedDeclaration":3831,"src":"1899:18:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}},"visibility":"internal"}],"src":"1898:36:8"},"returnParameters":{"id":4278,"nodeType":"ParameterList","parameters":[],"src":"1935:0:8"},"scope":4589,"src":"1887:97:8","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[892],"body":{"id":4338,"nodeType":"Block","src":"2210:652:8","statements":[{"assignments":[4296],"declarations":[{"constant":false,"id":4296,"mutability":"mutable","name":"currentState","nameLocation":"2234:12:8","nodeType":"VariableDeclaration","scope":4338,"src":"2220:26:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":4295,"nodeType":"UserDefinedTypeName","pathNode":{"id":4294,"name":"ProposalState","nameLocations":["2220:13:8"],"nodeType":"IdentifierPath","referencedDeclaration":2358,"src":"2220:13:8"},"referencedDeclaration":2358,"src":"2220:13:8","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"id":4301,"initialValue":{"arguments":[{"id":4299,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4287,"src":"2261:10:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4297,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"2249:5:8","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernorTimelockControl_$4589_$","typeString":"type(contract super GovernorTimelockControl)"}},"id":4298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2255:5:8","memberName":"state","nodeType":"MemberAccess","referencedDeclaration":892,"src":"2249:11:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_enum$_ProposalState_$2358_$","typeString":"function (uint256) view returns (enum IGovernor.ProposalState)"}},"id":4300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2249:23:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"nodeType":"VariableDeclarationStatement","src":"2220:52:8"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"},"id":4305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4302,"name":"currentState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4296,"src":"2287:12:8","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":4303,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"2303:13:8","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":4304,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2317:6:8","memberName":"Queued","nodeType":"MemberAccess","referencedDeclaration":2355,"src":"2303:20:8","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"src":"2287:36:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4309,"nodeType":"IfStatement","src":"2283:86:8","trueBody":{"id":4308,"nodeType":"Block","src":"2325:44:8","statements":[{"expression":{"id":4306,"name":"currentState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4296,"src":"2346:12:8","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":4293,"id":4307,"nodeType":"Return","src":"2339:19:8"}]}},{"assignments":[4311],"declarations":[{"constant":false,"id":4311,"mutability":"mutable","name":"queueid","nameLocation":"2387:7:8","nodeType":"VariableDeclaration","scope":4338,"src":"2379:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4310,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2379:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4315,"initialValue":{"baseExpression":{"id":4312,"name":"_timelockIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4265,"src":"2397:12:8","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":4314,"indexExpression":{"id":4313,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4287,"src":"2410:10:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2397:24:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2379:42:8"},{"condition":{"arguments":[{"id":4318,"name":"queueid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4311,"src":"2464:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4316,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4261,"src":"2435:9:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}},"id":4317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2445:18:8","memberName":"isOperationPending","nodeType":"MemberAccess","referencedDeclaration":3121,"src":"2435:28:8","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view external returns (bool)"}},"id":4319,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2435:37:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"arguments":[{"id":4326,"name":"queueid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4311,"src":"2562:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4324,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4261,"src":"2536:9:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}},"id":4325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2546:15:8","memberName":"isOperationDone","nodeType":"MemberAccess","referencedDeclaration":3153,"src":"2536:25:8","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_bytes32_$returns$_t_bool_$","typeString":"function (bytes32) view external returns (bool)"}},"id":4327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2536:34:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":4335,"nodeType":"Block","src":"2717:139:8","statements":[{"expression":{"expression":{"id":4332,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"2823:13:8","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":4333,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2837:8:8","memberName":"Canceled","nodeType":"MemberAccess","referencedDeclaration":2352,"src":"2823:22:8","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":4293,"id":4334,"nodeType":"Return","src":"2816:29:8"}]},"id":4336,"nodeType":"IfStatement","src":"2532:324:8","trueBody":{"id":4331,"nodeType":"Block","src":"2572:139:8","statements":[{"expression":{"expression":{"id":4328,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"2678:13:8","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":4329,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2692:8:8","memberName":"Executed","nodeType":"MemberAccess","referencedDeclaration":2357,"src":"2678:22:8","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":4293,"id":4330,"nodeType":"Return","src":"2671:29:8"}]}},"id":4337,"nodeType":"IfStatement","src":"2431:425:8","trueBody":{"id":4323,"nodeType":"Block","src":"2474:52:8","statements":[{"expression":{"expression":{"id":4320,"name":"ProposalState","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2358,"src":"2495:13:8","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ProposalState_$2358_$","typeString":"type(enum IGovernor.ProposalState)"}},"id":4321,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2509:6:8","memberName":"Queued","nodeType":"MemberAccess","referencedDeclaration":2355,"src":"2495:20:8","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":4293,"id":4322,"nodeType":"Return","src":"2488:27:8"}]}}]},"documentation":{"id":4285,"nodeType":"StructuredDocumentation","src":"1990:127:8","text":" @dev Overridden version of the {Governor-state} function that considers the status reported by the timelock."},"functionSelector":"3e4f49e6","id":4339,"implemented":true,"kind":"function","modifiers":[],"name":"state","nameLocation":"2131:5:8","nodeType":"FunctionDefinition","overrides":{"id":4289,"nodeType":"OverrideSpecifier","overrides":[],"src":"2177:8:8"},"parameters":{"id":4288,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4287,"mutability":"mutable","name":"proposalId","nameLocation":"2145:10:8","nodeType":"VariableDeclaration","scope":4339,"src":"2137:18:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4286,"name":"uint256","nodeType":"ElementaryTypeName","src":"2137:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2136:20:8"},"returnParameters":{"id":4293,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4292,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4339,"src":"2195:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":4291,"nodeType":"UserDefinedTypeName","pathNode":{"id":4290,"name":"ProposalState","nameLocations":["2195:13:8"],"nodeType":"IdentifierPath","referencedDeclaration":2358,"src":"2195:13:8"},"referencedDeclaration":2358,"src":"2195:13:8","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"2194:15:8"},"scope":4589,"src":"2122:740:8","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4350,"nodeType":"Block","src":"3007:42:8","statements":[{"expression":{"arguments":[{"id":4347,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4261,"src":"3032:9:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}],"id":4346,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3024:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4345,"name":"address","nodeType":"ElementaryTypeName","src":"3024:7:8","typeDescriptions":{}}},"id":4348,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3024:18:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4344,"id":4349,"nodeType":"Return","src":"3017:25:8"}]},"documentation":{"id":4340,"nodeType":"StructuredDocumentation","src":"2868:76:8","text":" @dev Public accessor to check the address of the timelock"},"functionSelector":"d33219b4","id":4351,"implemented":true,"kind":"function","modifiers":[],"name":"timelock","nameLocation":"2958:8:8","nodeType":"FunctionDefinition","parameters":{"id":4341,"nodeType":"ParameterList","parameters":[],"src":"2966:2:8"},"returnParameters":{"id":4344,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4343,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4351,"src":"2998:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4342,"name":"address","nodeType":"ElementaryTypeName","src":"2998:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2997:9:8"},"scope":4589,"src":"2949:100:8","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[973],"body":{"id":4362,"nodeType":"Block","src":"3204:28:8","statements":[{"expression":{"hexValue":"74727565","id":4360,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3221:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":4359,"id":4361,"nodeType":"Return","src":"3214:11:8"}]},"documentation":{"id":4352,"nodeType":"StructuredDocumentation","src":"3055:61:8","text":" @dev See {IGovernor-proposalNeedsQueuing}."},"functionSelector":"a9a95294","id":4363,"implemented":true,"kind":"function","modifiers":[],"name":"proposalNeedsQueuing","nameLocation":"3130:20:8","nodeType":"FunctionDefinition","overrides":{"id":4356,"nodeType":"OverrideSpecifier","overrides":[],"src":"3180:8:8"},"parameters":{"id":4355,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4354,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4363,"src":"3151:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4353,"name":"uint256","nodeType":"ElementaryTypeName","src":"3151:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3150:9:8"},"returnParameters":{"id":4359,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4358,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4363,"src":"3198:4:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4357,"name":"bool","nodeType":"ElementaryTypeName","src":"3198:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3197:6:8"},"scope":4589,"src":"3121:111:8","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1379],"body":{"id":4427,"nodeType":"Block","src":"3549:351:8","statements":[{"assignments":[4384],"declarations":[{"constant":false,"id":4384,"mutability":"mutable","name":"delay","nameLocation":"3567:5:8","nodeType":"VariableDeclaration","scope":4427,"src":"3559:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4383,"name":"uint256","nodeType":"ElementaryTypeName","src":"3559:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4388,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4385,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4261,"src":"3575:9:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}},"id":4386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3585:11:8","memberName":"getMinDelay","nodeType":"MemberAccess","referencedDeclaration":3220,"src":"3575:21:8","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint256_$","typeString":"function () view external returns (uint256)"}},"id":4387,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3575:23:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3559:39:8"},{"assignments":[4390],"declarations":[{"constant":false,"id":4390,"mutability":"mutable","name":"salt","nameLocation":"3617:4:8","nodeType":"VariableDeclaration","scope":4427,"src":"3609:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4389,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3609:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4394,"initialValue":{"arguments":[{"id":4392,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4377,"src":"3638:15:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4391,"name":"_timelockSalt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4588,"src":"3624:13:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":4393,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3624:30:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"3609:45:8"},{"expression":{"id":4406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4395,"name":"_timelockIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4265,"src":"3664:12:8","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":4397,"indexExpression":{"id":4396,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4366,"src":"3677:10:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"3664:24:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4400,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4369,"src":"3720:7:8","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":4401,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4372,"src":"3729:6:8","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":4402,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4375,"src":"3737:9:8","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"hexValue":"30","id":4403,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3748:1:8","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":4404,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4390,"src":"3751:4:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4398,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4261,"src":"3691:9:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}},"id":4399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3701:18:8","memberName":"hashOperationBatch","nodeType":"MemberAccess","referencedDeclaration":3279,"src":"3691:28:8","typeDescriptions":{"typeIdentifier":"t_function_external_pure$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32,bytes32) pure external returns (bytes32)"}},"id":4405,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3691:65:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3664:92:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":4407,"nodeType":"ExpressionStatement","src":"3664:92:8"},{"expression":{"arguments":[{"id":4411,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4369,"src":"3790:7:8","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":4412,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4372,"src":"3799:6:8","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":4413,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4375,"src":"3807:9:8","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"hexValue":"30","id":4414,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3818:1:8","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":4415,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4390,"src":"3821:4:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4416,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4384,"src":"3827:5:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4408,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4261,"src":"3766:9:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}},"id":4410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3776:13:8","memberName":"scheduleBatch","nodeType":"MemberAccess","referencedDeclaration":3439,"src":"3766:23:8","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$_t_bytes32_$_t_uint256_$returns$__$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32,bytes32,uint256) external"}},"id":4417,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3766:67:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4418,"nodeType":"ExpressionStatement","src":"3766:67:8"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4424,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4421,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967292,"src":"3869:5:8","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":4422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3875:9:8","memberName":"timestamp","nodeType":"MemberAccess","src":"3869:15:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":4423,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4384,"src":"3887:5:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3869:23:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4419,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"3851:8:8","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":4420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3860:8:8","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":12194,"src":"3851:17:8","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":4425,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3851:42:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":4382,"id":4426,"nodeType":"Return","src":"3844:49:8"}]},"documentation":{"id":4364,"nodeType":"StructuredDocumentation","src":"3238:69:8","text":" @dev Function to queue a proposal to the timelock."},"id":4428,"implemented":true,"kind":"function","modifiers":[],"name":"_queueOperations","nameLocation":"3321:16:8","nodeType":"FunctionDefinition","overrides":{"id":4379,"nodeType":"OverrideSpecifier","overrides":[],"src":"3523:8:8"},"parameters":{"id":4378,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4366,"mutability":"mutable","name":"proposalId","nameLocation":"3355:10:8","nodeType":"VariableDeclaration","scope":4428,"src":"3347:18:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4365,"name":"uint256","nodeType":"ElementaryTypeName","src":"3347:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4369,"mutability":"mutable","name":"targets","nameLocation":"3392:7:8","nodeType":"VariableDeclaration","scope":4428,"src":"3375:24:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":4367,"name":"address","nodeType":"ElementaryTypeName","src":"3375:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4368,"nodeType":"ArrayTypeName","src":"3375:9:8","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":4372,"mutability":"mutable","name":"values","nameLocation":"3426:6:8","nodeType":"VariableDeclaration","scope":4428,"src":"3409:23:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4370,"name":"uint256","nodeType":"ElementaryTypeName","src":"3409:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4371,"nodeType":"ArrayTypeName","src":"3409:9:8","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4375,"mutability":"mutable","name":"calldatas","nameLocation":"3457:9:8","nodeType":"VariableDeclaration","scope":4428,"src":"3442:24:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":4373,"name":"bytes","nodeType":"ElementaryTypeName","src":"3442:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":4374,"nodeType":"ArrayTypeName","src":"3442:7:8","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":4377,"mutability":"mutable","name":"descriptionHash","nameLocation":"3484:15:8","nodeType":"VariableDeclaration","scope":4428,"src":"3476:23:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4376,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3476:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3337:168:8"},"returnParameters":{"id":4382,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4381,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4428,"src":"3541:6:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4380,"name":"uint48","nodeType":"ElementaryTypeName","src":"3541:6:8","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"3540:8:8"},"scope":4589,"src":"3312:588:8","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[1556],"body":{"id":4466,"nodeType":"Block","src":"4288:210:8","statements":[{"expression":{"arguments":[{"id":4452,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4434,"src":"4358:7:8","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":4453,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4437,"src":"4367:6:8","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":4454,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4440,"src":"4375:9:8","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"hexValue":"30","id":4455,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4386:1:8","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"arguments":[{"id":4457,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4442,"src":"4403:15:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4456,"name":"_timelockSalt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4588,"src":"4389:13:8","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":4458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4389:30:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4446,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4261,"src":"4317:9:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}},"id":4448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4327:12:8","memberName":"executeBatch","nodeType":"MemberAccess","referencedDeclaration":3681,"src":"4317:22:8","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32,bytes32) payable external"}},"id":4451,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"expression":{"id":4449,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967281,"src":"4347:3:8","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4351:5:8","memberName":"value","nodeType":"MemberAccess","src":"4347:9:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"4317:40:8","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$_t_bytes32_$returns$__$value","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32,bytes32) payable external"}},"id":4459,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4317:103:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4460,"nodeType":"ExpressionStatement","src":"4317:103:8"},{"expression":{"id":4464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"4460:31:8","subExpression":{"baseExpression":{"id":4461,"name":"_timelockIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4265,"src":"4467:12:8","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":4463,"indexExpression":{"id":4462,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4431,"src":"4480:10:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4467:24:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4465,"nodeType":"ExpressionStatement","src":"4460:31:8"}]},"documentation":{"id":4429,"nodeType":"StructuredDocumentation","src":"3906:155:8","text":" @dev Overridden version of the {Governor-_executeOperations} function that runs the already queued proposal\n through the timelock."},"id":4467,"implemented":true,"kind":"function","modifiers":[],"name":"_executeOperations","nameLocation":"4075:18:8","nodeType":"FunctionDefinition","overrides":{"id":4444,"nodeType":"OverrideSpecifier","overrides":[],"src":"4279:8:8"},"parameters":{"id":4443,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4431,"mutability":"mutable","name":"proposalId","nameLocation":"4111:10:8","nodeType":"VariableDeclaration","scope":4467,"src":"4103:18:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4430,"name":"uint256","nodeType":"ElementaryTypeName","src":"4103:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4434,"mutability":"mutable","name":"targets","nameLocation":"4148:7:8","nodeType":"VariableDeclaration","scope":4467,"src":"4131:24:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":4432,"name":"address","nodeType":"ElementaryTypeName","src":"4131:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4433,"nodeType":"ArrayTypeName","src":"4131:9:8","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":4437,"mutability":"mutable","name":"values","nameLocation":"4182:6:8","nodeType":"VariableDeclaration","scope":4467,"src":"4165:23:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4435,"name":"uint256","nodeType":"ElementaryTypeName","src":"4165:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4436,"nodeType":"ArrayTypeName","src":"4165:9:8","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4440,"mutability":"mutable","name":"calldatas","nameLocation":"4213:9:8","nodeType":"VariableDeclaration","scope":4467,"src":"4198:24:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":4438,"name":"bytes","nodeType":"ElementaryTypeName","src":"4198:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":4439,"nodeType":"ArrayTypeName","src":"4198:7:8","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":4442,"mutability":"mutable","name":"descriptionHash","nameLocation":"4240:15:8","nodeType":"VariableDeclaration","scope":4467,"src":"4232:23:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4441,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4232:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4093:168:8"},"returnParameters":{"id":4445,"nodeType":"ParameterList","parameters":[],"src":"4288:0:8"},"scope":4589,"src":"4066:432:8","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[1666],"body":{"id":4519,"nodeType":"Block","src":"5108:353:8","statements":[{"assignments":[4486],"declarations":[{"constant":false,"id":4486,"mutability":"mutable","name":"proposalId","nameLocation":"5126:10:8","nodeType":"VariableDeclaration","scope":4519,"src":"5118:18:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4485,"name":"uint256","nodeType":"ElementaryTypeName","src":"5118:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4494,"initialValue":{"arguments":[{"id":4489,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4471,"src":"5153:7:8","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":4490,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4474,"src":"5162:6:8","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":4491,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4477,"src":"5170:9:8","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":4492,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4479,"src":"5181:15:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4487,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"5139:5:8","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernorTimelockControl_$4589_$","typeString":"type(contract super GovernorTimelockControl)"}},"id":4488,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5145:7:8","memberName":"_cancel","nodeType":"MemberAccess","referencedDeclaration":1666,"src":"5139:13:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32) returns (uint256)"}},"id":4493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5139:58:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5118:79:8"},{"assignments":[4496],"declarations":[{"constant":false,"id":4496,"mutability":"mutable","name":"timelockId","nameLocation":"5216:10:8","nodeType":"VariableDeclaration","scope":4519,"src":"5208:18:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4495,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5208:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4500,"initialValue":{"baseExpression":{"id":4497,"name":"_timelockIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4265,"src":"5229:12:8","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":4499,"indexExpression":{"id":4498,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4486,"src":"5242:10:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5229:24:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"5208:45:8"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":4503,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4501,"name":"timelockId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4496,"src":"5267:10:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":4502,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5281:1:8","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5267:15:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4516,"nodeType":"IfStatement","src":"5263:164:8","trueBody":{"id":4515,"nodeType":"Block","src":"5284:143:8","statements":[{"expression":{"arguments":[{"id":4507,"name":"timelockId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4496,"src":"5337:10:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4504,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4261,"src":"5320:9:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}},"id":4506,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5330:6:8","memberName":"cancel","nodeType":"MemberAccess","referencedDeclaration":3523,"src":"5320:16:8","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_bytes32_$returns$__$","typeString":"function (bytes32) external"}},"id":4508,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5320:28:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4509,"nodeType":"ExpressionStatement","src":"5320:28:8"},{"expression":{"id":4513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"5385:31:8","subExpression":{"baseExpression":{"id":4510,"name":"_timelockIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4265,"src":"5392:12:8","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":4512,"indexExpression":{"id":4511,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4486,"src":"5405:10:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"5392:24:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4514,"nodeType":"ExpressionStatement","src":"5385:31:8"}]}},{"expression":{"id":4517,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4486,"src":"5444:10:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4484,"id":4518,"nodeType":"Return","src":"5437:17:8"}]},"documentation":{"id":4468,"nodeType":"StructuredDocumentation","src":"4504:149:8","text":" @dev Overridden version of the {Governor-_cancel} function to cancel the timelocked proposal if it has already\n been queued."},"id":4520,"implemented":true,"kind":"function","modifiers":[],"name":"_cancel","nameLocation":"4916:7:8","nodeType":"FunctionDefinition","overrides":{"id":4481,"nodeType":"OverrideSpecifier","overrides":[],"src":"5081:8:8"},"parameters":{"id":4480,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4471,"mutability":"mutable","name":"targets","nameLocation":"4950:7:8","nodeType":"VariableDeclaration","scope":4520,"src":"4933:24:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":4469,"name":"address","nodeType":"ElementaryTypeName","src":"4933:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4470,"nodeType":"ArrayTypeName","src":"4933:9:8","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":4474,"mutability":"mutable","name":"values","nameLocation":"4984:6:8","nodeType":"VariableDeclaration","scope":4520,"src":"4967:23:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4472,"name":"uint256","nodeType":"ElementaryTypeName","src":"4967:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4473,"nodeType":"ArrayTypeName","src":"4967:9:8","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4477,"mutability":"mutable","name":"calldatas","nameLocation":"5015:9:8","nodeType":"VariableDeclaration","scope":4520,"src":"5000:24:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":4475,"name":"bytes","nodeType":"ElementaryTypeName","src":"5000:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":4476,"nodeType":"ArrayTypeName","src":"5000:7:8","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":4479,"mutability":"mutable","name":"descriptionHash","nameLocation":"5042:15:8","nodeType":"VariableDeclaration","scope":4520,"src":"5034:23:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4478,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5034:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4923:140:8"},"returnParameters":{"id":4484,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4483,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4520,"src":"5099:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4482,"name":"uint256","nodeType":"ElementaryTypeName","src":"5099:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5098:9:8"},"scope":4589,"src":"4907:554:8","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[2039],"body":{"id":4532,"nodeType":"Block","src":"5645:42:8","statements":[{"expression":{"arguments":[{"id":4529,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4261,"src":"5670:9:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}],"id":4528,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5662:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4527,"name":"address","nodeType":"ElementaryTypeName","src":"5662:7:8","typeDescriptions":{}}},"id":4530,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5662:18:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4526,"id":4531,"nodeType":"Return","src":"5655:25:8"}]},"documentation":{"id":4521,"nodeType":"StructuredDocumentation","src":"5467:103:8","text":" @dev Address through which the governor executes action. In this case, the timelock."},"id":4533,"implemented":true,"kind":"function","modifiers":[],"name":"_executor","nameLocation":"5584:9:8","nodeType":"FunctionDefinition","overrides":{"id":4523,"nodeType":"OverrideSpecifier","overrides":[],"src":"5618:8:8"},"parameters":{"id":4522,"nodeType":"ParameterList","parameters":[],"src":"5593:2:8"},"returnParameters":{"id":4526,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4525,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4533,"src":"5636:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4524,"name":"address","nodeType":"ElementaryTypeName","src":"5636:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5635:9:8"},"scope":4589,"src":"5575:112:8","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":4546,"nodeType":"Block","src":"6113:45:8","statements":[{"expression":{"arguments":[{"id":4543,"name":"newTimelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4537,"src":"6139:11:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}],"id":4542,"name":"_updateTimelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4569,"src":"6123:15:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_TimelockController_$3831_$returns$__$","typeString":"function (contract TimelockController)"}},"id":4544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6123:28:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4545,"nodeType":"ExpressionStatement","src":"6123:28:8"}]},"documentation":{"id":4534,"nodeType":"StructuredDocumentation","src":"5693:327:8","text":" @dev Public endpoint to update the underlying timelock instance. Restricted to the timelock itself, so updates\n must be proposed, scheduled, and executed through governance proposals.\n CAUTION: It is not recommended to change the timelock while there are other queued governance proposals."},"functionSelector":"a890c910","id":4547,"implemented":true,"kind":"function","modifiers":[{"id":4540,"kind":"modifierInvocation","modifierName":{"id":4539,"name":"onlyGovernance","nameLocations":["6098:14:8"],"nodeType":"IdentifierPath","referencedDeclaration":634,"src":"6098:14:8"},"nodeType":"ModifierInvocation","src":"6098:14:8"}],"name":"updateTimelock","nameLocation":"6034:14:8","nodeType":"FunctionDefinition","parameters":{"id":4538,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4537,"mutability":"mutable","name":"newTimelock","nameLocation":"6068:11:8","nodeType":"VariableDeclaration","scope":4547,"src":"6049:30:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"},"typeName":{"id":4536,"nodeType":"UserDefinedTypeName","pathNode":{"id":4535,"name":"TimelockController","nameLocations":["6049:18:8"],"nodeType":"IdentifierPath","referencedDeclaration":3831,"src":"6049:18:8"},"referencedDeclaration":3831,"src":"6049:18:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}},"visibility":"internal"}],"src":"6048:32:8"},"returnParameters":{"id":4541,"nodeType":"ParameterList","parameters":[],"src":"6113:0:8"},"scope":4589,"src":"6025:133:8","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"body":{"id":4568,"nodeType":"Block","src":"6229:111:8","statements":[{"eventCall":{"arguments":[{"arguments":[{"id":4556,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4261,"src":"6267:9:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}],"id":4555,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6259:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4554,"name":"address","nodeType":"ElementaryTypeName","src":"6259:7:8","typeDescriptions":{}}},"id":4557,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6259:18:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":4560,"name":"newTimelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4550,"src":"6287:11:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}],"id":4559,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6279:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4558,"name":"address","nodeType":"ElementaryTypeName","src":"6279:7:8","typeDescriptions":{}}},"id":4561,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6279:20:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":4553,"name":"TimelockChange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4272,"src":"6244:14:8","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":4562,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6244:56:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4563,"nodeType":"EmitStatement","src":"6239:61:8"},{"expression":{"id":4566,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4564,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4261,"src":"6310:9:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4565,"name":"newTimelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4550,"src":"6322:11:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}},"src":"6310:23:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}},"id":4567,"nodeType":"ExpressionStatement","src":"6310:23:8"}]},"id":4569,"implemented":true,"kind":"function","modifiers":[],"name":"_updateTimelock","nameLocation":"6173:15:8","nodeType":"FunctionDefinition","parameters":{"id":4551,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4550,"mutability":"mutable","name":"newTimelock","nameLocation":"6208:11:8","nodeType":"VariableDeclaration","scope":4569,"src":"6189:30:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"},"typeName":{"id":4549,"nodeType":"UserDefinedTypeName","pathNode":{"id":4548,"name":"TimelockController","nameLocations":["6189:18:8"],"nodeType":"IdentifierPath","referencedDeclaration":3831,"src":"6189:18:8"},"referencedDeclaration":3831,"src":"6189:18:8","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}},"visibility":"internal"}],"src":"6188:32:8"},"returnParameters":{"id":4552,"nodeType":"ParameterList","parameters":[],"src":"6229:0:8"},"scope":4589,"src":"6164:176:8","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":4587,"nodeType":"Block","src":"6643:64:8","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":4585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":4581,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"6676:4:8","typeDescriptions":{"typeIdentifier":"t_contract$_GovernorTimelockControl_$4589","typeString":"contract GovernorTimelockControl"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_GovernorTimelockControl_$4589","typeString":"contract GovernorTimelockControl"}],"id":4580,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6668:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4579,"name":"address","nodeType":"ElementaryTypeName","src":"6668:7:8","typeDescriptions":{}}},"id":4582,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6668:13:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4578,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6660:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":4577,"name":"bytes20","nodeType":"ElementaryTypeName","src":"6660:7:8","typeDescriptions":{}}},"id":4583,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6660:22:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":4584,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4572,"src":"6685:15:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"6660:40:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":4576,"id":4586,"nodeType":"Return","src":"6653:47:8"}]},"documentation":{"id":4570,"nodeType":"StructuredDocumentation","src":"6346:213:8","text":" @dev Computes the {TimelockController} operation salt.\n It is computed with the governor address itself to avoid collisions across governor instances using the\n same timelock."},"id":4588,"implemented":true,"kind":"function","modifiers":[],"name":"_timelockSalt","nameLocation":"6573:13:8","nodeType":"FunctionDefinition","parameters":{"id":4573,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4572,"mutability":"mutable","name":"descriptionHash","nameLocation":"6595:15:8","nodeType":"VariableDeclaration","scope":4588,"src":"6587:23:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4571,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6587:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6586:25:8"},"returnParameters":{"id":4576,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4575,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4588,"src":"6634:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4574,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6634:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6633:9:8"},"scope":4589,"src":"6564:143:8","stateMutability":"view","virtual":false,"visibility":"private"}],"scope":4590,"src":"1498:5211:8","usedErrors":[2367,2372,2375,2380,2385,2395,2400,2409,2414,2417,2420,2423,2428,2433,2438,2445,7141,7160,7284,7286,11449],"usedEvents":[2470,2477,2482,2487,2500,2515,4272,5546]}],"src":"133:6577:8"},"id":8},"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol","exportedSymbols":{"Governor":[2338],"GovernorVotes":[4705],"IERC5805":[5577],"IVotes":[4980],"SafeCast":[13204],"Time":[15558]},"id":4706,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4591,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"123:24:9"},{"absolutePath":"@openzeppelin/contracts/governance/Governor.sol","file":"../Governor.sol","id":4593,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4706,"sourceUnit":2339,"src":"149:41:9","symbolAliases":[{"foreign":{"id":4592,"name":"Governor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2338,"src":"157:8:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/utils/IVotes.sol","file":"../utils/IVotes.sol","id":4595,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4706,"sourceUnit":4981,"src":"191:43:9","symbolAliases":[{"foreign":{"id":4594,"name":"IVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4980,"src":"199:6:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5805.sol","file":"../../interfaces/IERC5805.sol","id":4597,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4706,"sourceUnit":5578,"src":"235:55:9","symbolAliases":[{"foreign":{"id":4596,"name":"IERC5805","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5577,"src":"243:8:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../../utils/math/SafeCast.sol","id":4599,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4706,"sourceUnit":13205,"src":"291:55:9","symbolAliases":[{"foreign":{"id":4598,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"299:8:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","file":"../../utils/types/Time.sol","id":4601,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4706,"sourceUnit":15559,"src":"347:48:9","symbolAliases":[{"foreign":{"id":4600,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15558,"src":"355:4:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":4603,"name":"Governor","nameLocations":["570:8:9"],"nodeType":"IdentifierPath","referencedDeclaration":2338,"src":"570:8:9"},"id":4604,"nodeType":"InheritanceSpecifier","src":"570:8:9"}],"canonicalName":"GovernorVotes","contractDependencies":[],"contractKind":"contract","documentation":{"id":4602,"nodeType":"StructuredDocumentation","src":"397:137:9","text":" @dev Extension of {Governor} for voting weight extraction from an {ERC20Votes} token, or since v4.5 an {ERC721Votes}\n token."},"fullyImplemented":false,"id":4705,"linearizedBaseContracts":[4705,2338,5771,6811,2811,5592,7218,9588,5566,9806,9818,7128],"name":"GovernorVotes","nameLocation":"553:13:9","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":4607,"mutability":"immutable","name":"_token","nameLocation":"612:6:9","nodeType":"VariableDeclaration","scope":4705,"src":"585:33:9","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5577","typeString":"contract IERC5805"},"typeName":{"id":4606,"nodeType":"UserDefinedTypeName","pathNode":{"id":4605,"name":"IERC5805","nameLocations":["585:8:9"],"nodeType":"IdentifierPath","referencedDeclaration":5577,"src":"585:8:9"},"referencedDeclaration":5577,"src":"585:8:9","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5577","typeString":"contract IERC5805"}},"visibility":"private"},{"body":{"id":4622,"nodeType":"Block","src":"658:57:9","statements":[{"expression":{"id":4620,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4613,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4607,"src":"668:6:9","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5577","typeString":"contract IERC5805"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":4617,"name":"tokenAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4610,"src":"694:12:9","typeDescriptions":{"typeIdentifier":"t_contract$_IVotes_$4980","typeString":"contract IVotes"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IVotes_$4980","typeString":"contract IVotes"}],"id":4616,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"686:7:9","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4615,"name":"address","nodeType":"ElementaryTypeName","src":"686:7:9","typeDescriptions":{}}},"id":4618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"686:21:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4614,"name":"IERC5805","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5577,"src":"677:8:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC5805_$5577_$","typeString":"type(contract IERC5805)"}},"id":4619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"677:31:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5577","typeString":"contract IERC5805"}},"src":"668:40:9","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5577","typeString":"contract IERC5805"}},"id":4621,"nodeType":"ExpressionStatement","src":"668:40:9"}]},"id":4623,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4611,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4610,"mutability":"mutable","name":"tokenAddress","nameLocation":"644:12:9","nodeType":"VariableDeclaration","scope":4623,"src":"637:19:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IVotes_$4980","typeString":"contract IVotes"},"typeName":{"id":4609,"nodeType":"UserDefinedTypeName","pathNode":{"id":4608,"name":"IVotes","nameLocations":["637:6:9"],"nodeType":"IdentifierPath","referencedDeclaration":4980,"src":"637:6:9"},"referencedDeclaration":4980,"src":"637:6:9","typeDescriptions":{"typeIdentifier":"t_contract$_IVotes_$4980","typeString":"contract IVotes"}},"visibility":"internal"}],"src":"636:21:9"},"returnParameters":{"id":4612,"nodeType":"ParameterList","parameters":[],"src":"658:0:9"},"scope":4705,"src":"625:90:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":4632,"nodeType":"Block","src":"850:30:9","statements":[{"expression":{"id":4630,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4607,"src":"867:6:9","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5577","typeString":"contract IERC5805"}},"functionReturnParameters":4629,"id":4631,"nodeType":"Return","src":"860:13:9"}]},"documentation":{"id":4624,"nodeType":"StructuredDocumentation","src":"721:68:9","text":" @dev The token that voting power is sourced from."},"functionSelector":"fc0c546a","id":4633,"implemented":true,"kind":"function","modifiers":[],"name":"token","nameLocation":"803:5:9","nodeType":"FunctionDefinition","parameters":{"id":4625,"nodeType":"ParameterList","parameters":[],"src":"808:2:9"},"returnParameters":{"id":4629,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4628,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4633,"src":"840:8:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5577","typeString":"contract IERC5805"},"typeName":{"id":4627,"nodeType":"UserDefinedTypeName","pathNode":{"id":4626,"name":"IERC5805","nameLocations":["840:8:9"],"nodeType":"IdentifierPath","referencedDeclaration":5577,"src":"840:8:9"},"referencedDeclaration":5577,"src":"840:8:9","typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5577","typeString":"contract IERC5805"}},"visibility":"internal"}],"src":"839:10:9"},"scope":4705,"src":"794:86:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2299],"body":{"id":4658,"nodeType":"Block","src":"1120:161:9","statements":[{"clauses":[{"block":{"id":4649,"nodeType":"Block","src":"1177:41:9","statements":[{"expression":{"id":4647,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4645,"src":"1198:9:9","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":4639,"id":4648,"nodeType":"Return","src":"1191:16:9"}]},"errorName":"","id":4650,"nodeType":"TryCatchClause","parameters":{"id":4646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4645,"mutability":"mutable","name":"timepoint","nameLocation":"1166:9:9","nodeType":"VariableDeclaration","scope":4650,"src":"1159:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4644,"name":"uint48","nodeType":"ElementaryTypeName","src":"1159:6:9","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"1158:18:9"},"src":"1150:68:9"},{"block":{"id":4655,"nodeType":"Block","src":"1225:50:9","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4651,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15558,"src":"1246:4:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$15558_$","typeString":"type(library Time)"}},"id":4652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1251:11:9","memberName":"blockNumber","nodeType":"MemberAccess","referencedDeclaration":15319,"src":"1246:16:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":4653,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1246:18:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":4639,"id":4654,"nodeType":"Return","src":"1239:25:9"}]},"errorName":"","id":4656,"nodeType":"TryCatchClause","src":"1219:56:9"}],"externalCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":4640,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4633,"src":"1134:5:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC5805_$5577_$","typeString":"function () view returns (contract IERC5805)"}},"id":4641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1134:7:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5577","typeString":"contract IERC5805"}},"id":4642,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1142:5:9","memberName":"clock","nodeType":"MemberAccess","referencedDeclaration":5585,"src":"1134:13:9","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint48_$","typeString":"function () view external returns (uint48)"}},"id":4643,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1134:15:9","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":4657,"nodeType":"TryStatement","src":"1130:145:9"}]},"documentation":{"id":4634,"nodeType":"StructuredDocumentation","src":"886:166:9","text":" @dev Clock (as specified in ERC-6372) is set to match the token's clock. Fallback to block numbers if the token\n does not implement ERC-6372."},"functionSelector":"91ddadf4","id":4659,"implemented":true,"kind":"function","modifiers":[],"name":"clock","nameLocation":"1066:5:9","nodeType":"FunctionDefinition","overrides":{"id":4636,"nodeType":"OverrideSpecifier","overrides":[],"src":"1094:8:9"},"parameters":{"id":4635,"nodeType":"ParameterList","parameters":[],"src":"1071:2:9"},"returnParameters":{"id":4639,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4638,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4659,"src":"1112:6:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4637,"name":"uint48","nodeType":"ElementaryTypeName","src":"1112:6:9","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"1111:8:9"},"scope":4705,"src":"1057:224:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2305],"body":{"id":4682,"nodeType":"Block","src":"1511:186:9","statements":[{"clauses":[{"block":{"id":4675,"nodeType":"Block","src":"1580:41:9","statements":[{"expression":{"id":4673,"name":"clockmode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4671,"src":"1601:9:9","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":4665,"id":4674,"nodeType":"Return","src":"1594:16:9"}]},"errorName":"","id":4676,"nodeType":"TryCatchClause","parameters":{"id":4672,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4671,"mutability":"mutable","name":"clockmode","nameLocation":"1569:9:9","nodeType":"VariableDeclaration","scope":4676,"src":"1555:23:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4670,"name":"string","nodeType":"ElementaryTypeName","src":"1555:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1554:25:9"},"src":"1546:75:9"},{"block":{"id":4679,"nodeType":"Block","src":"1628:63:9","statements":[{"expression":{"hexValue":"6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c74","id":4677,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1649:31:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_9f79d44e499ce83a99049e0b7ebf2d6f56e249303be3c14798235137af5ea536","typeString":"literal_string \"mode=blocknumber&from=default\""},"value":"mode=blocknumber&from=default"},"functionReturnParameters":4665,"id":4678,"nodeType":"Return","src":"1642:38:9"}]},"errorName":"","id":4680,"nodeType":"TryCatchClause","src":"1622:69:9"}],"externalCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":4666,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4633,"src":"1525:5:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC5805_$5577_$","typeString":"function () view returns (contract IERC5805)"}},"id":4667,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1525:7:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5577","typeString":"contract IERC5805"}},"id":4668,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1533:10:9","memberName":"CLOCK_MODE","nodeType":"MemberAccess","referencedDeclaration":5591,"src":"1525:18:9","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view external returns (string memory)"}},"id":4669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1525:20:9","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":4681,"nodeType":"TryStatement","src":"1521:170:9"}]},"documentation":{"id":4660,"nodeType":"StructuredDocumentation","src":"1287:91:9","text":" @dev Machine-readable description of the clock as specified in ERC-6372."},"functionSelector":"4bf5d7e9","id":4683,"implemented":true,"kind":"function","modifiers":[],"name":"CLOCK_MODE","nameLocation":"1445:10:9","nodeType":"FunctionDefinition","overrides":{"id":4662,"nodeType":"OverrideSpecifier","overrides":[],"src":"1478:8:9"},"parameters":{"id":4661,"nodeType":"ParameterList","parameters":[],"src":"1455:2:9"},"returnParameters":{"id":4665,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4664,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4683,"src":"1496:13:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4663,"name":"string","nodeType":"ElementaryTypeName","src":"1496:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1495:15:9"},"scope":4705,"src":"1436:261:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1041],"body":{"id":4703,"nodeType":"Block","src":"1981:64:9","statements":[{"expression":{"arguments":[{"id":4699,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4686,"src":"2019:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4700,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4688,"src":"2028:9:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":4696,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4633,"src":"1998:5:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC5805_$5577_$","typeString":"function () view returns (contract IERC5805)"}},"id":4697,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1998:7:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5577","typeString":"contract IERC5805"}},"id":4698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2006:12:9","memberName":"getPastVotes","nodeType":"MemberAccess","referencedDeclaration":4941,"src":"1998:20:9","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,uint256) view external returns (uint256)"}},"id":4701,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1998:40:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4695,"id":4702,"nodeType":"Return","src":"1991:47:9"}]},"documentation":{"id":4684,"nodeType":"StructuredDocumentation","src":"1703:114:9","text":" Read the voting weight from the token's built in snapshot mechanism (see {Governor-_getVotes})."},"id":4704,"implemented":true,"kind":"function","modifiers":[],"name":"_getVotes","nameLocation":"1831:9:9","nodeType":"FunctionDefinition","overrides":{"id":4692,"nodeType":"OverrideSpecifier","overrides":[],"src":"1954:8:9"},"parameters":{"id":4691,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4686,"mutability":"mutable","name":"account","nameLocation":"1858:7:9","nodeType":"VariableDeclaration","scope":4704,"src":"1850:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4685,"name":"address","nodeType":"ElementaryTypeName","src":"1850:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4688,"mutability":"mutable","name":"timepoint","nameLocation":"1883:9:9","nodeType":"VariableDeclaration","scope":4704,"src":"1875:17:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4687,"name":"uint256","nodeType":"ElementaryTypeName","src":"1875:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4690,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4704,"src":"1902:12:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":4689,"name":"bytes","nodeType":"ElementaryTypeName","src":"1902:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1840:91:9"},"returnParameters":{"id":4695,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4694,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4704,"src":"1972:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4693,"name":"uint256","nodeType":"ElementaryTypeName","src":"1972:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1971:9:9"},"scope":4705,"src":"1822:223:9","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":4706,"src":"535:1512:9","usedErrors":[2367,2372,2375,2380,2385,2395,2400,2409,2414,2417,2420,2423,2428,2433,2438,2445,7141,7160,7284,7286,11449],"usedEvents":[2470,2477,2482,2487,2500,2515,5546]}],"src":"123:1925:9"},"id":9},"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol","exportedSymbols":{"Checkpoints":[14929],"GovernorVotes":[4705],"GovernorVotesQuorumFraction":[4897],"Math":[11439],"SafeCast":[13204]},"id":4898,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4707,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"137:24:10"},{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol","file":"./GovernorVotes.sol","id":4709,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4898,"sourceUnit":4706,"src":"163:50:10","symbolAliases":[{"foreign":{"id":4708,"name":"GovernorVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4705,"src":"171:13:10","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"../../utils/math/Math.sol","id":4711,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4898,"sourceUnit":11440,"src":"214:47:10","symbolAliases":[{"foreign":{"id":4710,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11439,"src":"222:4:10","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../../utils/math/SafeCast.sol","id":4713,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4898,"sourceUnit":13205,"src":"262:55:10","symbolAliases":[{"foreign":{"id":4712,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"270:8:10","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/structs/Checkpoints.sol","file":"../../utils/structs/Checkpoints.sol","id":4715,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4898,"sourceUnit":14930,"src":"318:64:10","symbolAliases":[{"foreign":{"id":4714,"name":"Checkpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14929,"src":"326:11:10","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":4717,"name":"GovernorVotes","nameLocations":["590:13:10"],"nodeType":"IdentifierPath","referencedDeclaration":4705,"src":"590:13:10"},"id":4718,"nodeType":"InheritanceSpecifier","src":"590:13:10"}],"canonicalName":"GovernorVotesQuorumFraction","contractDependencies":[],"contractKind":"contract","documentation":{"id":4716,"nodeType":"StructuredDocumentation","src":"384:156:10","text":" @dev Extension of {Governor} for voting weight extraction from an {ERC20Votes} token and a quorum expressed as a\n fraction of the total supply."},"fullyImplemented":false,"id":4897,"linearizedBaseContracts":[4897,4705,2338,5771,6811,2811,5592,7218,9588,5566,9806,9818,7128],"name":"GovernorVotesQuorumFraction","nameLocation":"559:27:10","nodeType":"ContractDefinition","nodes":[{"global":false,"id":4722,"libraryName":{"id":4719,"name":"Checkpoints","nameLocations":["616:11:10"],"nodeType":"IdentifierPath","referencedDeclaration":14929,"src":"616:11:10"},"nodeType":"UsingForDirective","src":"610:43:10","typeName":{"id":4721,"nodeType":"UserDefinedTypeName","pathNode":{"id":4720,"name":"Checkpoints.Trace208","nameLocations":["632:11:10","644:8:10"],"nodeType":"IdentifierPath","referencedDeclaration":13885,"src":"632:20:10"},"referencedDeclaration":13885,"src":"632:20:10","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"}}},{"constant":false,"id":4725,"mutability":"mutable","name":"_quorumNumeratorHistory","nameLocation":"688:23:10","nodeType":"VariableDeclaration","scope":4897,"src":"659:52:10","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":4724,"nodeType":"UserDefinedTypeName","pathNode":{"id":4723,"name":"Checkpoints.Trace208","nameLocations":["659:11:10","671:8:10"],"nodeType":"IdentifierPath","referencedDeclaration":13885,"src":"659:20:10"},"referencedDeclaration":13885,"src":"659:20:10","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"private"},{"anonymous":false,"eventSelector":"0553476bf02ef2726e8ce5ced78d63e26e602e4a2257b1f559418e24b4633997","id":4731,"name":"QuorumNumeratorUpdated","nameLocation":"724:22:10","nodeType":"EventDefinition","parameters":{"id":4730,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4727,"indexed":false,"mutability":"mutable","name":"oldQuorumNumerator","nameLocation":"755:18:10","nodeType":"VariableDeclaration","scope":4731,"src":"747:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4726,"name":"uint256","nodeType":"ElementaryTypeName","src":"747:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4729,"indexed":false,"mutability":"mutable","name":"newQuorumNumerator","nameLocation":"783:18:10","nodeType":"VariableDeclaration","scope":4731,"src":"775:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4728,"name":"uint256","nodeType":"ElementaryTypeName","src":"775:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"746:56:10"},"src":"718:85:10"},{"documentation":{"id":4732,"nodeType":"StructuredDocumentation","src":"809:63:10","text":" @dev The quorum set is not a valid fraction."},"errorSelector":"243e5445","id":4738,"name":"GovernorInvalidQuorumFraction","nameLocation":"883:29:10","nodeType":"ErrorDefinition","parameters":{"id":4737,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4734,"mutability":"mutable","name":"quorumNumerator","nameLocation":"921:15:10","nodeType":"VariableDeclaration","scope":4738,"src":"913:23:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4733,"name":"uint256","nodeType":"ElementaryTypeName","src":"913:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4736,"mutability":"mutable","name":"quorumDenominator","nameLocation":"946:17:10","nodeType":"VariableDeclaration","scope":4738,"src":"938:25:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4735,"name":"uint256","nodeType":"ElementaryTypeName","src":"938:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"912:52:10"},"src":"877:88:10"},{"body":{"id":4748,"nodeType":"Block","src":"1394:61:10","statements":[{"expression":{"arguments":[{"id":4745,"name":"quorumNumeratorValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4741,"src":"1427:20:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4744,"name":"_updateQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4863,"src":"1404:22:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":4746,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1404:44:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4747,"nodeType":"ExpressionStatement","src":"1404:44:10"}]},"documentation":{"id":4739,"nodeType":"StructuredDocumentation","src":"971:376:10","text":" @dev Initialize quorum as a fraction of the token's total supply.\n The fraction is specified as `numerator / denominator`. By default the denominator is 100, so quorum is\n specified as a percent: a numerator of 10 corresponds to quorum being 10% of total supply. The denominator can be\n customized by overriding {quorumDenominator}."},"id":4749,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4742,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4741,"mutability":"mutable","name":"quorumNumeratorValue","nameLocation":"1372:20:10","nodeType":"VariableDeclaration","scope":4749,"src":"1364:28:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4740,"name":"uint256","nodeType":"ElementaryTypeName","src":"1364:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1363:30:10"},"returnParameters":{"id":4743,"nodeType":"ParameterList","parameters":[],"src":"1394:0:10"},"scope":4897,"src":"1352:103:10","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":4759,"nodeType":"Block","src":"1617:56:10","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4755,"name":"_quorumNumeratorHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4725,"src":"1634:23:10","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4756,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1658:6:10","memberName":"latest","nodeType":"MemberAccess","referencedDeclaration":14110,"src":"1634:30:10","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13885_storage_ptr_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13885_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer) view returns (uint208)"}},"id":4757,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1634:32:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":4754,"id":4758,"nodeType":"Return","src":"1627:39:10"}]},"documentation":{"id":4750,"nodeType":"StructuredDocumentation","src":"1461:86:10","text":" @dev Returns the current quorum numerator. See {quorumDenominator}."},"functionSelector":"a7713a70","id":4760,"implemented":true,"kind":"function","modifiers":[],"name":"quorumNumerator","nameLocation":"1561:15:10","nodeType":"FunctionDefinition","parameters":{"id":4751,"nodeType":"ParameterList","parameters":[],"src":"1576:2:10"},"returnParameters":{"id":4754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4753,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4760,"src":"1608:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4752,"name":"uint256","nodeType":"ElementaryTypeName","src":"1608:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1607:9:10"},"scope":4897,"src":"1552:121:10","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4773,"nodeType":"Block","src":"1868:88:10","statements":[{"expression":{"arguments":[{"id":4769,"name":"_quorumNumeratorHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4725,"src":"1914:23:10","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},{"id":4770,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4763,"src":"1939:9:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208 storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4768,"name":"_optimisticUpperLookupRecent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4896,"src":"1885:28:10","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13885_storage_ptr_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint256) view returns (uint256)"}},"id":4771,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1885:64:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4767,"id":4772,"nodeType":"Return","src":"1878:71:10"}]},"documentation":{"id":4761,"nodeType":"StructuredDocumentation","src":"1679:102:10","text":" @dev Returns the quorum numerator at a specific timepoint. See {quorumDenominator}."},"functionSelector":"60c4247f","id":4774,"implemented":true,"kind":"function","modifiers":[],"name":"quorumNumerator","nameLocation":"1795:15:10","nodeType":"FunctionDefinition","parameters":{"id":4764,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4763,"mutability":"mutable","name":"timepoint","nameLocation":"1819:9:10","nodeType":"VariableDeclaration","scope":4774,"src":"1811:17:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4762,"name":"uint256","nodeType":"ElementaryTypeName","src":"1811:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1810:19:10"},"returnParameters":{"id":4767,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4766,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4774,"src":"1859:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4765,"name":"uint256","nodeType":"ElementaryTypeName","src":"1859:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1858:9:10"},"scope":4897,"src":"1786:170:10","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4782,"nodeType":"Block","src":"2129:27:10","statements":[{"expression":{"hexValue":"313030","id":4780,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2146:3:10","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"functionReturnParameters":4779,"id":4781,"nodeType":"Return","src":"2139:10:10"}]},"documentation":{"id":4775,"nodeType":"StructuredDocumentation","src":"1962:95:10","text":" @dev Returns the quorum denominator. Defaults to 100, but may be overridden."},"functionSelector":"97c3d334","id":4783,"implemented":true,"kind":"function","modifiers":[],"name":"quorumDenominator","nameLocation":"2071:17:10","nodeType":"FunctionDefinition","parameters":{"id":4776,"nodeType":"ParameterList","parameters":[],"src":"2088:2:10"},"returnParameters":{"id":4779,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4778,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4783,"src":"2120:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4777,"name":"uint256","nodeType":"ElementaryTypeName","src":"2120:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2119:9:10"},"scope":4897,"src":"2062:94:10","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[2325],"body":{"id":4806,"nodeType":"Block","src":"2373:123:10","statements":[{"expression":{"arguments":[{"arguments":[{"id":4797,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4786,"src":"2429:9:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":4794,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4633,"src":"2402:5:10","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC5805_$5577_$","typeString":"function () view returns (contract IERC5805)"}},"id":4795,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2402:7:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC5805_$5577","typeString":"contract IERC5805"}},"id":4796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2410:18:10","memberName":"getPastTotalSupply","nodeType":"MemberAccess","referencedDeclaration":4949,"src":"2402:26:10","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view external returns (uint256)"}},"id":4798,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2402:37:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":4800,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4786,"src":"2457:9:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4799,"name":"quorumNumerator","nodeType":"Identifier","overloadedDeclarations":[4760,4774],"referencedDeclaration":4774,"src":"2441:15:10","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":4801,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2441:26:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":4802,"name":"quorumDenominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4783,"src":"2469:17:10","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":4803,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2469:19:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4792,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11439,"src":"2390:4:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$11439_$","typeString":"type(library Math)"}},"id":4793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2395:6:10","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":10345,"src":"2390:11:10","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":4804,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2390:99:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4791,"id":4805,"nodeType":"Return","src":"2383:106:10"}]},"documentation":{"id":4784,"nodeType":"StructuredDocumentation","src":"2162:124:10","text":" @dev Returns the quorum for a timepoint, in terms of number of votes: `supply * numerator / denominator`."},"functionSelector":"f8ce560a","id":4807,"implemented":true,"kind":"function","modifiers":[],"name":"quorum","nameLocation":"2300:6:10","nodeType":"FunctionDefinition","overrides":{"id":4788,"nodeType":"OverrideSpecifier","overrides":[],"src":"2346:8:10"},"parameters":{"id":4787,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4786,"mutability":"mutable","name":"timepoint","nameLocation":"2315:9:10","nodeType":"VariableDeclaration","scope":4807,"src":"2307:17:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4785,"name":"uint256","nodeType":"ElementaryTypeName","src":"2307:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2306:19:10"},"returnParameters":{"id":4791,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4790,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4807,"src":"2364:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4789,"name":"uint256","nodeType":"ElementaryTypeName","src":"2364:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2363:9:10"},"scope":4897,"src":"2291:205:10","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4819,"nodeType":"Block","src":"2863:59:10","statements":[{"expression":{"arguments":[{"id":4816,"name":"newQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4810,"src":"2896:18:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4815,"name":"_updateQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4863,"src":"2873:22:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":4817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2873:42:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4818,"nodeType":"ExpressionStatement","src":"2873:42:10"}]},"documentation":{"id":4808,"nodeType":"StructuredDocumentation","src":"2502:265:10","text":" @dev Changes the quorum numerator.\n Emits a {QuorumNumeratorUpdated} event.\n Requirements:\n - Must be called through a governance proposal.\n - New numerator must be smaller or equal to the denominator."},"functionSelector":"06f3f9e6","id":4820,"implemented":true,"kind":"function","modifiers":[{"id":4813,"kind":"modifierInvocation","modifierName":{"id":4812,"name":"onlyGovernance","nameLocations":["2848:14:10"],"nodeType":"IdentifierPath","referencedDeclaration":634,"src":"2848:14:10"},"nodeType":"ModifierInvocation","src":"2848:14:10"}],"name":"updateQuorumNumerator","nameLocation":"2781:21:10","nodeType":"FunctionDefinition","parameters":{"id":4811,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4810,"mutability":"mutable","name":"newQuorumNumerator","nameLocation":"2811:18:10","nodeType":"VariableDeclaration","scope":4820,"src":"2803:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4809,"name":"uint256","nodeType":"ElementaryTypeName","src":"2803:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2802:28:10"},"returnParameters":{"id":4814,"nodeType":"ParameterList","parameters":[],"src":"2863:0:10"},"scope":4897,"src":"2772:150:10","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"body":{"id":4862,"nodeType":"Block","src":"3220:421:10","statements":[{"assignments":[4827],"declarations":[{"constant":false,"id":4827,"mutability":"mutable","name":"denominator","nameLocation":"3238:11:10","nodeType":"VariableDeclaration","scope":4862,"src":"3230:19:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4826,"name":"uint256","nodeType":"ElementaryTypeName","src":"3230:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4830,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4828,"name":"quorumDenominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4783,"src":"3252:17:10","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":4829,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3252:19:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3230:41:10"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4831,"name":"newQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4823,"src":"3285:18:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":4832,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4827,"src":"3306:11:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3285:32:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4840,"nodeType":"IfStatement","src":"3281:132:10","trueBody":{"id":4839,"nodeType":"Block","src":"3319:94:10","statements":[{"errorCall":{"arguments":[{"id":4835,"name":"newQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4823,"src":"3370:18:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4836,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4827,"src":"3390:11:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4834,"name":"GovernorInvalidQuorumFraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4738,"src":"3340:29:10","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256) pure"}},"id":4837,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3340:62:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4838,"nodeType":"RevertStatement","src":"3333:69:10"}]}},{"assignments":[4842],"declarations":[{"constant":false,"id":4842,"mutability":"mutable","name":"oldQuorumNumerator","nameLocation":"3431:18:10","nodeType":"VariableDeclaration","scope":4862,"src":"3423:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4841,"name":"uint256","nodeType":"ElementaryTypeName","src":"3423:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4845,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4843,"name":"quorumNumerator","nodeType":"Identifier","overloadedDeclarations":[4760,4774],"referencedDeclaration":4760,"src":"3452:15:10","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":4844,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3452:17:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3423:46:10"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":4849,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[4659],"referencedDeclaration":4659,"src":"3508:5:10","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":4850,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3508:7:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"arguments":[{"id":4853,"name":"newQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4823,"src":"3536:18:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4851,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"3517:8:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":4852,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3526:9:10","memberName":"toUint208","nodeType":"MemberAccess","referencedDeclaration":11634,"src":"3517:18:10","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint208_$","typeString":"function (uint256) pure returns (uint208)"}},"id":4854,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3517:38:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"expression":{"id":4846,"name":"_quorumNumeratorHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4725,"src":"3479:23:10","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":4848,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3503:4:10","memberName":"push","nodeType":"MemberAccess","referencedDeclaration":13913,"src":"3479:28:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Trace208_$13885_storage_ptr_$_t_uint48_$_t_uint208_$returns$_t_uint208_$_t_uint208_$attached_to$_t_struct$_Trace208_$13885_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint48,uint208) returns (uint208,uint208)"}},"id":4855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3479:77:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"id":4856,"nodeType":"ExpressionStatement","src":"3479:77:10"},{"eventCall":{"arguments":[{"id":4858,"name":"oldQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4842,"src":"3595:18:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4859,"name":"newQuorumNumerator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4823,"src":"3615:18:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4857,"name":"QuorumNumeratorUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4731,"src":"3572:22:10","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":4860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3572:62:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4861,"nodeType":"EmitStatement","src":"3567:67:10"}]},"documentation":{"id":4821,"nodeType":"StructuredDocumentation","src":"2928:210:10","text":" @dev Changes the quorum numerator.\n Emits a {QuorumNumeratorUpdated} event.\n Requirements:\n - New numerator must be smaller or equal to the denominator."},"id":4863,"implemented":true,"kind":"function","modifiers":[],"name":"_updateQuorumNumerator","nameLocation":"3152:22:10","nodeType":"FunctionDefinition","parameters":{"id":4824,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4823,"mutability":"mutable","name":"newQuorumNumerator","nameLocation":"3183:18:10","nodeType":"VariableDeclaration","scope":4863,"src":"3175:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4822,"name":"uint256","nodeType":"ElementaryTypeName","src":"3175:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3174:28:10"},"returnParameters":{"id":4825,"nodeType":"ParameterList","parameters":[],"src":"3220:0:10"},"scope":4897,"src":"3143:498:10","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":4895,"nodeType":"Block","src":"3869:313:10","statements":[{"assignments":[null,4875,4877],"declarations":[null,{"constant":false,"id":4875,"mutability":"mutable","name":"key","nameLocation":"4032:3:10","nodeType":"VariableDeclaration","scope":4895,"src":"4025:10:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":4874,"name":"uint48","nodeType":"ElementaryTypeName","src":"4025:6:10","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":4877,"mutability":"mutable","name":"value","nameLocation":"4045:5:10","nodeType":"VariableDeclaration","scope":4895,"src":"4037:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":4876,"name":"uint208","nodeType":"ElementaryTypeName","src":"4037:7:10","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"id":4881,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4878,"name":"ckpts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4867,"src":"4054:5:10","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":4879,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4060:16:10","memberName":"latestCheckpoint","nodeType":"MemberAccess","referencedDeclaration":14159,"src":"4054:22:10","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13885_storage_ptr_$returns$_t_bool_$_t_uint48_$_t_uint208_$attached_to$_t_struct$_Trace208_$13885_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer) view returns (bool,uint48,uint208)"}},"id":4880,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4054:24:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint48_$_t_uint208_$","typeString":"tuple(bool,uint48,uint208)"}},"nodeType":"VariableDeclarationStatement","src":"4022:56:10"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4884,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4882,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4875,"src":"4095:3:10","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":4883,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4869,"src":"4102:9:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4095:16:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"arguments":[{"id":4890,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4869,"src":"4164:9:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4888,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"4146:8:10","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":4889,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4155:8:10","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":12194,"src":"4146:17:10","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":4891,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4146:28:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"expression":{"id":4886,"name":"ckpts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4867,"src":"4122:5:10","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":4887,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4128:17:10","memberName":"upperLookupRecent","nodeType":"MemberAccess","referencedDeclaration":14080,"src":"4122:23:10","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13885_storage_ptr_$_t_uint48_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13885_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint48) view returns (uint208)"}},"id":4892,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4122:53:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"id":4893,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4095:80:10","trueExpression":{"id":4885,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4877,"src":"4114:5:10","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":4873,"id":4894,"nodeType":"Return","src":"4088:87:10"}]},"documentation":{"id":4864,"nodeType":"StructuredDocumentation","src":"3647:70:10","text":" @dev Returns the numerator at a specific timepoint."},"id":4896,"implemented":true,"kind":"function","modifiers":[],"name":"_optimisticUpperLookupRecent","nameLocation":"3731:28:10","nodeType":"FunctionDefinition","parameters":{"id":4870,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4867,"mutability":"mutable","name":"ckpts","nameLocation":"3798:5:10","nodeType":"VariableDeclaration","scope":4896,"src":"3769:34:10","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":4866,"nodeType":"UserDefinedTypeName","pathNode":{"id":4865,"name":"Checkpoints.Trace208","nameLocations":["3769:11:10","3781:8:10"],"nodeType":"IdentifierPath","referencedDeclaration":13885,"src":"3769:20:10"},"referencedDeclaration":13885,"src":"3769:20:10","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":4869,"mutability":"mutable","name":"timepoint","nameLocation":"3821:9:10","nodeType":"VariableDeclaration","scope":4896,"src":"3813:17:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4868,"name":"uint256","nodeType":"ElementaryTypeName","src":"3813:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3759:77:10"},"returnParameters":{"id":4873,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4872,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4896,"src":"3860:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4871,"name":"uint256","nodeType":"ElementaryTypeName","src":"3860:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3859:9:10"},"scope":4897,"src":"3722:460:10","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":4898,"src":"541:3643:10","usedErrors":[2367,2372,2375,2380,2385,2395,2400,2409,2414,2417,2420,2423,2428,2433,2438,2445,4738,7141,7160,7284,7286,11449,13356],"usedEvents":[2470,2477,2482,2487,2500,2515,4731,5546]}],"src":"137:4048:10"},"id":10},"@openzeppelin/contracts/governance/utils/IVotes.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/utils/IVotes.sol","exportedSymbols":{"IVotes":[4980]},"id":4981,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4899,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"110:24:11"},{"abstract":false,"baseContracts":[],"canonicalName":"IVotes","contractDependencies":[],"contractKind":"interface","documentation":{"id":4900,"nodeType":"StructuredDocumentation","src":"136:102:11","text":" @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts."},"fullyImplemented":false,"id":4980,"linearizedBaseContracts":[4980],"name":"IVotes","nameLocation":"249:6:11","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":4901,"nodeType":"StructuredDocumentation","src":"262:55:11","text":" @dev The signature used has expired."},"errorSelector":"4683af0e","id":4905,"name":"VotesExpiredSignature","nameLocation":"328:21:11","nodeType":"ErrorDefinition","parameters":{"id":4904,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4903,"mutability":"mutable","name":"expiry","nameLocation":"358:6:11","nodeType":"VariableDeclaration","scope":4905,"src":"350:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4902,"name":"uint256","nodeType":"ElementaryTypeName","src":"350:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"349:16:11"},"src":"322:44:11"},{"anonymous":false,"documentation":{"id":4906,"nodeType":"StructuredDocumentation","src":"372:71:11","text":" @dev Emitted when an account changes their delegate."},"eventSelector":"3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f","id":4914,"name":"DelegateChanged","nameLocation":"454:15:11","nodeType":"EventDefinition","parameters":{"id":4913,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4908,"indexed":true,"mutability":"mutable","name":"delegator","nameLocation":"486:9:11","nodeType":"VariableDeclaration","scope":4914,"src":"470:25:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4907,"name":"address","nodeType":"ElementaryTypeName","src":"470:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4910,"indexed":true,"mutability":"mutable","name":"fromDelegate","nameLocation":"513:12:11","nodeType":"VariableDeclaration","scope":4914,"src":"497:28:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4909,"name":"address","nodeType":"ElementaryTypeName","src":"497:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4912,"indexed":true,"mutability":"mutable","name":"toDelegate","nameLocation":"543:10:11","nodeType":"VariableDeclaration","scope":4914,"src":"527:26:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4911,"name":"address","nodeType":"ElementaryTypeName","src":"527:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"469:85:11"},"src":"448:107:11"},{"anonymous":false,"documentation":{"id":4915,"nodeType":"StructuredDocumentation","src":"561:131:11","text":" @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units."},"eventSelector":"dec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724","id":4923,"name":"DelegateVotesChanged","nameLocation":"703:20:11","nodeType":"EventDefinition","parameters":{"id":4922,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4917,"indexed":true,"mutability":"mutable","name":"delegate","nameLocation":"740:8:11","nodeType":"VariableDeclaration","scope":4923,"src":"724:24:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4916,"name":"address","nodeType":"ElementaryTypeName","src":"724:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4919,"indexed":false,"mutability":"mutable","name":"previousVotes","nameLocation":"758:13:11","nodeType":"VariableDeclaration","scope":4923,"src":"750:21:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4918,"name":"uint256","nodeType":"ElementaryTypeName","src":"750:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4921,"indexed":false,"mutability":"mutable","name":"newVotes","nameLocation":"781:8:11","nodeType":"VariableDeclaration","scope":4923,"src":"773:16:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4920,"name":"uint256","nodeType":"ElementaryTypeName","src":"773:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"723:67:11"},"src":"697:94:11"},{"documentation":{"id":4924,"nodeType":"StructuredDocumentation","src":"797:79:11","text":" @dev Returns the current amount of votes that `account` has."},"functionSelector":"9ab24eb0","id":4931,"implemented":false,"kind":"function","modifiers":[],"name":"getVotes","nameLocation":"890:8:11","nodeType":"FunctionDefinition","parameters":{"id":4927,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4926,"mutability":"mutable","name":"account","nameLocation":"907:7:11","nodeType":"VariableDeclaration","scope":4931,"src":"899:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4925,"name":"address","nodeType":"ElementaryTypeName","src":"899:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"898:17:11"},"returnParameters":{"id":4930,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4929,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4931,"src":"939:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4928,"name":"uint256","nodeType":"ElementaryTypeName","src":"939:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"938:9:11"},"scope":4980,"src":"881:67:11","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":4932,"nodeType":"StructuredDocumentation","src":"954:230:11","text":" @dev Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is\n configured to use block numbers, this will return the value at the end of the corresponding block."},"functionSelector":"3a46b1a8","id":4941,"implemented":false,"kind":"function","modifiers":[],"name":"getPastVotes","nameLocation":"1198:12:11","nodeType":"FunctionDefinition","parameters":{"id":4937,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4934,"mutability":"mutable","name":"account","nameLocation":"1219:7:11","nodeType":"VariableDeclaration","scope":4941,"src":"1211:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4933,"name":"address","nodeType":"ElementaryTypeName","src":"1211:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4936,"mutability":"mutable","name":"timepoint","nameLocation":"1236:9:11","nodeType":"VariableDeclaration","scope":4941,"src":"1228:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4935,"name":"uint256","nodeType":"ElementaryTypeName","src":"1228:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1210:36:11"},"returnParameters":{"id":4940,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4939,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4941,"src":"1270:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4938,"name":"uint256","nodeType":"ElementaryTypeName","src":"1270:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1269:9:11"},"scope":4980,"src":"1189:90:11","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":4942,"nodeType":"StructuredDocumentation","src":"1285:481:11","text":" @dev Returns the total supply of votes available at a specific moment in the past. If the `clock()` is\n configured to use block numbers, this will return the value at the end of the corresponding block.\n NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.\n Votes that have not been delegated are still part of total supply, even though they would not participate in a\n vote."},"functionSelector":"8e539e8c","id":4949,"implemented":false,"kind":"function","modifiers":[],"name":"getPastTotalSupply","nameLocation":"1780:18:11","nodeType":"FunctionDefinition","parameters":{"id":4945,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4944,"mutability":"mutable","name":"timepoint","nameLocation":"1807:9:11","nodeType":"VariableDeclaration","scope":4949,"src":"1799:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4943,"name":"uint256","nodeType":"ElementaryTypeName","src":"1799:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1798:19:11"},"returnParameters":{"id":4948,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4947,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4949,"src":"1841:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4946,"name":"uint256","nodeType":"ElementaryTypeName","src":"1841:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1840:9:11"},"scope":4980,"src":"1771:79:11","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":4950,"nodeType":"StructuredDocumentation","src":"1856:71:11","text":" @dev Returns the delegate that `account` has chosen."},"functionSelector":"587cde1e","id":4957,"implemented":false,"kind":"function","modifiers":[],"name":"delegates","nameLocation":"1941:9:11","nodeType":"FunctionDefinition","parameters":{"id":4953,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4952,"mutability":"mutable","name":"account","nameLocation":"1959:7:11","nodeType":"VariableDeclaration","scope":4957,"src":"1951:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4951,"name":"address","nodeType":"ElementaryTypeName","src":"1951:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1950:17:11"},"returnParameters":{"id":4956,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4955,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4957,"src":"1991:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4954,"name":"address","nodeType":"ElementaryTypeName","src":"1991:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1990:9:11"},"scope":4980,"src":"1932:68:11","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":4958,"nodeType":"StructuredDocumentation","src":"2006:71:11","text":" @dev Delegates votes from the sender to `delegatee`."},"functionSelector":"5c19a95c","id":4963,"implemented":false,"kind":"function","modifiers":[],"name":"delegate","nameLocation":"2091:8:11","nodeType":"FunctionDefinition","parameters":{"id":4961,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4960,"mutability":"mutable","name":"delegatee","nameLocation":"2108:9:11","nodeType":"VariableDeclaration","scope":4963,"src":"2100:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4959,"name":"address","nodeType":"ElementaryTypeName","src":"2100:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2099:19:11"},"returnParameters":{"id":4962,"nodeType":"ParameterList","parameters":[],"src":"2127:0:11"},"scope":4980,"src":"2082:46:11","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":4964,"nodeType":"StructuredDocumentation","src":"2134:67:11","text":" @dev Delegates votes from signer to `delegatee`."},"functionSelector":"c3cda520","id":4979,"implemented":false,"kind":"function","modifiers":[],"name":"delegateBySig","nameLocation":"2215:13:11","nodeType":"FunctionDefinition","parameters":{"id":4977,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4966,"mutability":"mutable","name":"delegatee","nameLocation":"2237:9:11","nodeType":"VariableDeclaration","scope":4979,"src":"2229:17:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4965,"name":"address","nodeType":"ElementaryTypeName","src":"2229:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4968,"mutability":"mutable","name":"nonce","nameLocation":"2256:5:11","nodeType":"VariableDeclaration","scope":4979,"src":"2248:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4967,"name":"uint256","nodeType":"ElementaryTypeName","src":"2248:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4970,"mutability":"mutable","name":"expiry","nameLocation":"2271:6:11","nodeType":"VariableDeclaration","scope":4979,"src":"2263:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4969,"name":"uint256","nodeType":"ElementaryTypeName","src":"2263:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4972,"mutability":"mutable","name":"v","nameLocation":"2285:1:11","nodeType":"VariableDeclaration","scope":4979,"src":"2279:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4971,"name":"uint8","nodeType":"ElementaryTypeName","src":"2279:5:11","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":4974,"mutability":"mutable","name":"r","nameLocation":"2296:1:11","nodeType":"VariableDeclaration","scope":4979,"src":"2288:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4973,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2288:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4976,"mutability":"mutable","name":"s","nameLocation":"2307:1:11","nodeType":"VariableDeclaration","scope":4979,"src":"2299:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4975,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2299:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2228:81:11"},"returnParameters":{"id":4978,"nodeType":"ParameterList","parameters":[],"src":"2318:0:11"},"scope":4980,"src":"2206:113:11","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":4981,"src":"239:2082:11","usedErrors":[4905],"usedEvents":[4914,4923]}],"src":"110:2212:11"},"id":11},"@openzeppelin/contracts/governance/utils/Votes.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/governance/utils/Votes.sol","exportedSymbols":{"Checkpoints":[14929],"Context":[7128],"ECDSA":[9361],"EIP712":[9588],"IERC5805":[5577],"Nonces":[7218],"SafeCast":[13204],"Time":[15558],"Votes":[5523]},"id":5524,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4982,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:12"},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5805.sol","file":"../../interfaces/IERC5805.sol","id":4984,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5524,"sourceUnit":5578,"src":"135:55:12","symbolAliases":[{"foreign":{"id":4983,"name":"IERC5805","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5577,"src":"143:8:12","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":4986,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5524,"sourceUnit":7129,"src":"191:48:12","symbolAliases":[{"foreign":{"id":4985,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7128,"src":"199:7:12","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Nonces.sol","file":"../../utils/Nonces.sol","id":4988,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5524,"sourceUnit":7219,"src":"240:46:12","symbolAliases":[{"foreign":{"id":4987,"name":"Nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7218,"src":"248:6:12","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/EIP712.sol","file":"../../utils/cryptography/EIP712.sol","id":4990,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5524,"sourceUnit":9589,"src":"287:59:12","symbolAliases":[{"foreign":{"id":4989,"name":"EIP712","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9588,"src":"295:6:12","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/structs/Checkpoints.sol","file":"../../utils/structs/Checkpoints.sol","id":4992,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5524,"sourceUnit":14930,"src":"347:64:12","symbolAliases":[{"foreign":{"id":4991,"name":"Checkpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14929,"src":"355:11:12","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../../utils/math/SafeCast.sol","id":4994,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5524,"sourceUnit":13205,"src":"412:55:12","symbolAliases":[{"foreign":{"id":4993,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"420:8:12","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","file":"../../utils/cryptography/ECDSA.sol","id":4996,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5524,"sourceUnit":9362,"src":"468:57:12","symbolAliases":[{"foreign":{"id":4995,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9361,"src":"476:5:12","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","file":"../../utils/types/Time.sol","id":4998,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5524,"sourceUnit":15559,"src":"526:48:12","symbolAliases":[{"foreign":{"id":4997,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15558,"src":"534:4:12","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":5000,"name":"Context","nameLocations":["1919:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":7128,"src":"1919:7:12"},"id":5001,"nodeType":"InheritanceSpecifier","src":"1919:7:12"},{"baseName":{"id":5002,"name":"EIP712","nameLocations":["1928:6:12"],"nodeType":"IdentifierPath","referencedDeclaration":9588,"src":"1928:6:12"},"id":5003,"nodeType":"InheritanceSpecifier","src":"1928:6:12"},{"baseName":{"id":5004,"name":"Nonces","nameLocations":["1936:6:12"],"nodeType":"IdentifierPath","referencedDeclaration":7218,"src":"1936:6:12"},"id":5005,"nodeType":"InheritanceSpecifier","src":"1936:6:12"},{"baseName":{"id":5006,"name":"IERC5805","nameLocations":["1944:8:12"],"nodeType":"IdentifierPath","referencedDeclaration":5577,"src":"1944:8:12"},"id":5007,"nodeType":"InheritanceSpecifier","src":"1944:8:12"}],"canonicalName":"Votes","contractDependencies":[],"contractKind":"contract","documentation":{"id":4999,"nodeType":"StructuredDocumentation","src":"576:1315:12","text":" @dev This is a base abstract contract that tracks voting units, which are a measure of voting power that can be\n transferred, and provides a system of vote delegation, where an account can delegate its voting units to a sort of\n \"representative\" that will pool delegated voting units from different accounts and can then use it to vote in\n decisions. In fact, voting units _must_ be delegated in order to count as actual votes, and an account has to\n delegate those votes to itself if it wishes to participate in decisions and does not have a trusted representative.\n This contract is often combined with a token contract such that voting units correspond to token units. For an\n example, see {ERC721Votes}.\n The full history of delegate votes is tracked on-chain so that governance protocols can consider votes as distributed\n at a particular block number to protect against flash loans and double voting. The opt-in delegate system makes the\n cost of this history tracking optional.\n When using this module the derived contract must implement {_getVotingUnits} (for example, make it return\n {ERC721-balanceOf}), and can use {_transferVotingUnits} to track a change in the distribution of those units (in the\n previous example, it would be included in {ERC721-_update})."},"fullyImplemented":false,"id":5523,"internalFunctionIDs":{"5500":1,"5514":2},"linearizedBaseContracts":[5523,5577,4980,5592,7218,9588,5566,7128],"name":"Votes","nameLocation":"1910:5:12","nodeType":"ContractDefinition","nodes":[{"global":false,"id":5011,"libraryName":{"id":5008,"name":"Checkpoints","nameLocations":["1965:11:12"],"nodeType":"IdentifierPath","referencedDeclaration":14929,"src":"1965:11:12"},"nodeType":"UsingForDirective","src":"1959:43:12","typeName":{"id":5010,"nodeType":"UserDefinedTypeName","pathNode":{"id":5009,"name":"Checkpoints.Trace208","nameLocations":["1981:11:12","1993:8:12"],"nodeType":"IdentifierPath","referencedDeclaration":13885,"src":"1981:20:12"},"referencedDeclaration":13885,"src":"1981:20:12","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"}}},{"constant":true,"id":5016,"mutability":"constant","name":"DELEGATION_TYPEHASH","nameLocation":"2033:19:12","nodeType":"VariableDeclaration","scope":5523,"src":"2008:126:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5012,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2008:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"44656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e743235362065787069727929","id":5014,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2073:60:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_e48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf","typeString":"literal_string \"Delegation(address delegatee,uint256 nonce,uint256 expiry)\""},"value":"Delegation(address delegatee,uint256 nonce,uint256 expiry)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_e48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf","typeString":"literal_string \"Delegation(address delegatee,uint256 nonce,uint256 expiry)\""}],"id":5013,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"2063:9:12","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":5015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2063:71:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":5020,"mutability":"mutable","name":"_delegatee","nameLocation":"2185:10:12","nodeType":"VariableDeclaration","scope":5523,"src":"2141:54:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"typeName":{"id":5019,"keyName":"account","keyNameLocation":"2157:7:12","keyType":{"id":5017,"name":"address","nodeType":"ElementaryTypeName","src":"2149:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2141:35:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5018,"name":"address","nodeType":"ElementaryTypeName","src":"2168:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"private"},{"constant":false,"id":5025,"mutability":"mutable","name":"_delegateCheckpoints","nameLocation":"2261:20:12","nodeType":"VariableDeclaration","scope":5523,"src":"2202:79:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13885_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208)"},"typeName":{"id":5024,"keyName":"delegatee","keyNameLocation":"2218:9:12","keyType":{"id":5021,"name":"address","nodeType":"ElementaryTypeName","src":"2210:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2202:50:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13885_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5023,"nodeType":"UserDefinedTypeName","pathNode":{"id":5022,"name":"Checkpoints.Trace208","nameLocations":["2231:11:12","2243:8:12"],"nodeType":"IdentifierPath","referencedDeclaration":13885,"src":"2231:20:12"},"referencedDeclaration":13885,"src":"2231:20:12","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"}}},"visibility":"private"},{"constant":false,"id":5028,"mutability":"mutable","name":"_totalCheckpoints","nameLocation":"2317:17:12","nodeType":"VariableDeclaration","scope":5523,"src":"2288:46:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":5027,"nodeType":"UserDefinedTypeName","pathNode":{"id":5026,"name":"Checkpoints.Trace208","nameLocations":["2288:11:12","2300:8:12"],"nodeType":"IdentifierPath","referencedDeclaration":13885,"src":"2288:20:12"},"referencedDeclaration":13885,"src":"2288:20:12","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"private"},{"documentation":{"id":5029,"nodeType":"StructuredDocumentation","src":"2341:59:12","text":" @dev The clock was incorrectly modified."},"errorSelector":"6ff07140","id":5031,"name":"ERC6372InconsistentClock","nameLocation":"2411:24:12","nodeType":"ErrorDefinition","parameters":{"id":5030,"nodeType":"ParameterList","parameters":[],"src":"2435:2:12"},"src":"2405:33:12"},{"documentation":{"id":5032,"nodeType":"StructuredDocumentation","src":"2444:64:12","text":" @dev Lookup to future votes is not available."},"errorSelector":"ecd3f81e","id":5038,"name":"ERC5805FutureLookup","nameLocation":"2519:19:12","nodeType":"ErrorDefinition","parameters":{"id":5037,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5034,"mutability":"mutable","name":"timepoint","nameLocation":"2547:9:12","nodeType":"VariableDeclaration","scope":5038,"src":"2539:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5033,"name":"uint256","nodeType":"ElementaryTypeName","src":"2539:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5036,"mutability":"mutable","name":"clock","nameLocation":"2565:5:12","nodeType":"VariableDeclaration","scope":5038,"src":"2558:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":5035,"name":"uint48","nodeType":"ElementaryTypeName","src":"2558:6:12","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2538:33:12"},"src":"2513:59:12"},{"baseFunctions":[5585],"body":{"id":5048,"nodeType":"Block","src":"2843:42:12","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5044,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15558,"src":"2860:4:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$15558_$","typeString":"type(library Time)"}},"id":5045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2865:11:12","memberName":"blockNumber","nodeType":"MemberAccess","referencedDeclaration":15319,"src":"2860:16:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":5046,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2860:18:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":5043,"id":5047,"nodeType":"Return","src":"2853:25:12"}]},"documentation":{"id":5039,"nodeType":"StructuredDocumentation","src":"2578:206:12","text":" @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based\n checkpoints (and voting), in which case {CLOCK_MODE} should be overridden as well to match."},"functionSelector":"91ddadf4","id":5049,"implemented":true,"kind":"function","modifiers":[],"name":"clock","nameLocation":"2798:5:12","nodeType":"FunctionDefinition","parameters":{"id":5040,"nodeType":"ParameterList","parameters":[],"src":"2803:2:12"},"returnParameters":{"id":5043,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5042,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5049,"src":"2835:6:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":5041,"name":"uint48","nodeType":"ElementaryTypeName","src":"2835:6:12","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2834:8:12"},"scope":5523,"src":"2789:96:12","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5591],"body":{"id":5068,"nodeType":"Block","src":"3106:206:12","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":5060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":5055,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5049,"src":"3169:5:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":5056,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3169:7:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5057,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15558,"src":"3180:4:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$15558_$","typeString":"type(library Time)"}},"id":5058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3185:11:12","memberName":"blockNumber","nodeType":"MemberAccess","referencedDeclaration":15319,"src":"3180:16:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":5059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3180:18:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"3169:29:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5065,"nodeType":"IfStatement","src":"3165:93:12","trueBody":{"id":5064,"nodeType":"Block","src":"3200:58:12","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":5061,"name":"ERC6372InconsistentClock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5031,"src":"3221:24:12","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":5062,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3221:26:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5063,"nodeType":"RevertStatement","src":"3214:33:12"}]}},{"expression":{"hexValue":"6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c74","id":5066,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3274:31:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_9f79d44e499ce83a99049e0b7ebf2d6f56e249303be3c14798235137af5ea536","typeString":"literal_string \"mode=blocknumber&from=default\""},"value":"mode=blocknumber&from=default"},"functionReturnParameters":5054,"id":5067,"nodeType":"Return","src":"3267:38:12"}]},"documentation":{"id":5050,"nodeType":"StructuredDocumentation","src":"2891:91:12","text":" @dev Machine-readable description of the clock as specified in ERC-6372."},"functionSelector":"4bf5d7e9","id":5069,"implemented":true,"kind":"function","modifiers":[],"name":"CLOCK_MODE","nameLocation":"3049:10:12","nodeType":"FunctionDefinition","parameters":{"id":5051,"nodeType":"ParameterList","parameters":[],"src":"3059:2:12"},"returnParameters":{"id":5054,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5053,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5069,"src":"3091:13:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5052,"name":"string","nodeType":"ElementaryTypeName","src":"3091:6:12","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3090:15:12"},"scope":5523,"src":"3040:272:12","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":5096,"nodeType":"Block","src":"3493:195:12","statements":[{"assignments":[5078],"declarations":[{"constant":false,"id":5078,"mutability":"mutable","name":"currentTimepoint","nameLocation":"3510:16:12","nodeType":"VariableDeclaration","scope":5096,"src":"3503:23:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":5077,"name":"uint48","nodeType":"ElementaryTypeName","src":"3503:6:12","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":5081,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5079,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5049,"src":"3529:5:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":5080,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3529:7:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"3503:33:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5082,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5072,"src":"3550:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":5083,"name":"currentTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5078,"src":"3563:16:12","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"3550:29:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5090,"nodeType":"IfStatement","src":"3546:90:12","trueBody":{"errorCall":{"arguments":[{"id":5086,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5072,"src":"3608:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5087,"name":"currentTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5078,"src":"3619:16:12","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":5085,"name":"ERC5805FutureLookup","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5038,"src":"3588:19:12","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint48_$returns$__$","typeString":"function (uint256,uint48) pure"}},"id":5088,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3588:48:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5089,"nodeType":"RevertStatement","src":"3581:55:12"}},{"expression":{"arguments":[{"id":5093,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5072,"src":"3671:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5091,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"3653:8:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":5092,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3662:8:12","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":12194,"src":"3653:17:12","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":5094,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3653:28:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":5076,"id":5095,"nodeType":"Return","src":"3646:35:12"}]},"documentation":{"id":5070,"nodeType":"StructuredDocumentation","src":"3318:92:12","text":" @dev Validate that a timepoint is in the past, and return it as a uint48."},"id":5097,"implemented":true,"kind":"function","modifiers":[],"name":"_validateTimepoint","nameLocation":"3424:18:12","nodeType":"FunctionDefinition","parameters":{"id":5073,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5072,"mutability":"mutable","name":"timepoint","nameLocation":"3451:9:12","nodeType":"VariableDeclaration","scope":5097,"src":"3443:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5071,"name":"uint256","nodeType":"ElementaryTypeName","src":"3443:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3442:19:12"},"returnParameters":{"id":5076,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5075,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5097,"src":"3485:6:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":5074,"name":"uint48","nodeType":"ElementaryTypeName","src":"3485:6:12","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"3484:8:12"},"scope":5523,"src":"3415:273:12","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[4931],"body":{"id":5111,"nodeType":"Block","src":"3851:62:12","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"baseExpression":{"id":5105,"name":"_delegateCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5025,"src":"3868:20:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13885_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208 storage ref)"}},"id":5107,"indexExpression":{"id":5106,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5100,"src":"3889:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3868:29:12","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":5108,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3898:6:12","memberName":"latest","nodeType":"MemberAccess","referencedDeclaration":14110,"src":"3868:36:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13885_storage_ptr_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13885_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer) view returns (uint208)"}},"id":5109,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3868:38:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":5104,"id":5110,"nodeType":"Return","src":"3861:45:12"}]},"documentation":{"id":5098,"nodeType":"StructuredDocumentation","src":"3694:79:12","text":" @dev Returns the current amount of votes that `account` has."},"functionSelector":"9ab24eb0","id":5112,"implemented":true,"kind":"function","modifiers":[],"name":"getVotes","nameLocation":"3787:8:12","nodeType":"FunctionDefinition","parameters":{"id":5101,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5100,"mutability":"mutable","name":"account","nameLocation":"3804:7:12","nodeType":"VariableDeclaration","scope":5112,"src":"3796:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5099,"name":"address","nodeType":"ElementaryTypeName","src":"3796:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3795:17:12"},"returnParameters":{"id":5104,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5103,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5112,"src":"3842:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5102,"name":"uint256","nodeType":"ElementaryTypeName","src":"3842:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3841:9:12"},"scope":5523,"src":"3778:135:12","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[4941],"body":{"id":5131,"nodeType":"Block","src":"4394:102:12","statements":[{"expression":{"arguments":[{"arguments":[{"id":5127,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5117,"src":"4478:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5126,"name":"_validateTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5097,"src":"4459:18:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) view returns (uint48)"}},"id":5128,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4459:29:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"expression":{"baseExpression":{"id":5122,"name":"_delegateCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5025,"src":"4411:20:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13885_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208 storage ref)"}},"id":5124,"indexExpression":{"id":5123,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5115,"src":"4432:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4411:29:12","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":5125,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4441:17:12","memberName":"upperLookupRecent","nodeType":"MemberAccess","referencedDeclaration":14080,"src":"4411:47:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13885_storage_ptr_$_t_uint48_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13885_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint48) view returns (uint208)"}},"id":5129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4411:78:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":5121,"id":5130,"nodeType":"Return","src":"4404:85:12"}]},"documentation":{"id":5113,"nodeType":"StructuredDocumentation","src":"3919:374:12","text":" @dev Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is\n configured to use block numbers, this will return the value at the end of the corresponding block.\n Requirements:\n - `timepoint` must be in the past. If operating using block numbers, the block must be already mined."},"functionSelector":"3a46b1a8","id":5132,"implemented":true,"kind":"function","modifiers":[],"name":"getPastVotes","nameLocation":"4307:12:12","nodeType":"FunctionDefinition","parameters":{"id":5118,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5115,"mutability":"mutable","name":"account","nameLocation":"4328:7:12","nodeType":"VariableDeclaration","scope":5132,"src":"4320:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5114,"name":"address","nodeType":"ElementaryTypeName","src":"4320:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5117,"mutability":"mutable","name":"timepoint","nameLocation":"4345:9:12","nodeType":"VariableDeclaration","scope":5132,"src":"4337:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5116,"name":"uint256","nodeType":"ElementaryTypeName","src":"4337:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4319:36:12"},"returnParameters":{"id":5121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5120,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5132,"src":"4385:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5119,"name":"uint256","nodeType":"ElementaryTypeName","src":"4385:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4384:9:12"},"scope":5523,"src":"4298:198:12","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[4949],"body":{"id":5147,"nodeType":"Block","src":"5217:90:12","statements":[{"expression":{"arguments":[{"arguments":[{"id":5143,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5135,"src":"5289:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5142,"name":"_validateTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5097,"src":"5270:18:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) view returns (uint48)"}},"id":5144,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5270:29:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"expression":{"id":5140,"name":"_totalCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5028,"src":"5234:17:12","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":5141,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5252:17:12","memberName":"upperLookupRecent","nodeType":"MemberAccess","referencedDeclaration":14080,"src":"5234:35:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13885_storage_ptr_$_t_uint48_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13885_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint48) view returns (uint208)"}},"id":5145,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5234:66:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":5139,"id":5146,"nodeType":"Return","src":"5227:73:12"}]},"documentation":{"id":5133,"nodeType":"StructuredDocumentation","src":"4502:625:12","text":" @dev Returns the total supply of votes available at a specific moment in the past. If the `clock()` is\n configured to use block numbers, this will return the value at the end of the corresponding block.\n NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.\n Votes that have not been delegated are still part of total supply, even though they would not participate in a\n vote.\n Requirements:\n - `timepoint` must be in the past. If operating using block numbers, the block must be already mined."},"functionSelector":"8e539e8c","id":5148,"implemented":true,"kind":"function","modifiers":[],"name":"getPastTotalSupply","nameLocation":"5141:18:12","nodeType":"FunctionDefinition","parameters":{"id":5136,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5135,"mutability":"mutable","name":"timepoint","nameLocation":"5168:9:12","nodeType":"VariableDeclaration","scope":5148,"src":"5160:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5134,"name":"uint256","nodeType":"ElementaryTypeName","src":"5160:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5159:19:12"},"returnParameters":{"id":5139,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5138,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5148,"src":"5208:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5137,"name":"uint256","nodeType":"ElementaryTypeName","src":"5208:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5207:9:12"},"scope":5523,"src":"5132:175:12","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":5158,"nodeType":"Block","src":"5451:50:12","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5154,"name":"_totalCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5028,"src":"5468:17:12","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":5155,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5486:6:12","memberName":"latest","nodeType":"MemberAccess","referencedDeclaration":14110,"src":"5468:24:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13885_storage_ptr_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13885_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer) view returns (uint208)"}},"id":5156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5468:26:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":5153,"id":5157,"nodeType":"Return","src":"5461:33:12"}]},"documentation":{"id":5149,"nodeType":"StructuredDocumentation","src":"5313:66:12","text":" @dev Returns the current total supply of votes."},"id":5159,"implemented":true,"kind":"function","modifiers":[],"name":"_getTotalSupply","nameLocation":"5393:15:12","nodeType":"FunctionDefinition","parameters":{"id":5150,"nodeType":"ParameterList","parameters":[],"src":"5408:2:12"},"returnParameters":{"id":5153,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5152,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5159,"src":"5442:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5151,"name":"uint256","nodeType":"ElementaryTypeName","src":"5442:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5441:9:12"},"scope":5523,"src":"5384:117:12","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[4957],"body":{"id":5171,"nodeType":"Block","src":"5657:43:12","statements":[{"expression":{"baseExpression":{"id":5167,"name":"_delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5020,"src":"5674:10:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":5169,"indexExpression":{"id":5168,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5162,"src":"5685:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5674:19:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":5166,"id":5170,"nodeType":"Return","src":"5667:26:12"}]},"documentation":{"id":5160,"nodeType":"StructuredDocumentation","src":"5507:71:12","text":" @dev Returns the delegate that `account` has chosen."},"functionSelector":"587cde1e","id":5172,"implemented":true,"kind":"function","modifiers":[],"name":"delegates","nameLocation":"5592:9:12","nodeType":"FunctionDefinition","parameters":{"id":5163,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5162,"mutability":"mutable","name":"account","nameLocation":"5610:7:12","nodeType":"VariableDeclaration","scope":5172,"src":"5602:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5161,"name":"address","nodeType":"ElementaryTypeName","src":"5602:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5601:17:12"},"returnParameters":{"id":5166,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5165,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5172,"src":"5648:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5164,"name":"address","nodeType":"ElementaryTypeName","src":"5648:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5647:9:12"},"scope":5523,"src":"5583:117:12","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[4963],"body":{"id":5188,"nodeType":"Block","src":"5834:86:12","statements":[{"assignments":[5179],"declarations":[{"constant":false,"id":5179,"mutability":"mutable","name":"account","nameLocation":"5852:7:12","nodeType":"VariableDeclaration","scope":5188,"src":"5844:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5178,"name":"address","nodeType":"ElementaryTypeName","src":"5844:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5182,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5180,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"5862:10:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5181,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5862:12:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5844:30:12"},{"expression":{"arguments":[{"id":5184,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5179,"src":"5894:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5185,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"5903:9:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":5183,"name":"_delegate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5281,"src":"5884:9:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":5186,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5884:29:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5187,"nodeType":"ExpressionStatement","src":"5884:29:12"}]},"documentation":{"id":5173,"nodeType":"StructuredDocumentation","src":"5706:71:12","text":" @dev Delegates votes from the sender to `delegatee`."},"functionSelector":"5c19a95c","id":5189,"implemented":true,"kind":"function","modifiers":[],"name":"delegate","nameLocation":"5791:8:12","nodeType":"FunctionDefinition","parameters":{"id":5176,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5175,"mutability":"mutable","name":"delegatee","nameLocation":"5808:9:12","nodeType":"VariableDeclaration","scope":5189,"src":"5800:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5174,"name":"address","nodeType":"ElementaryTypeName","src":"5800:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5799:19:12"},"returnParameters":{"id":5177,"nodeType":"ParameterList","parameters":[],"src":"5834:0:12"},"scope":5523,"src":"5782:138:12","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[4979],"body":{"id":5245,"nodeType":"Block","src":"6171:381:12","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5205,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967292,"src":"6185:5:12","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":5206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6191:9:12","memberName":"timestamp","nodeType":"MemberAccess","src":"6185:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":5207,"name":"expiry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5196,"src":"6203:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6185:24:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5214,"nodeType":"IfStatement","src":"6181:91:12","trueBody":{"id":5213,"nodeType":"Block","src":"6211:61:12","statements":[{"errorCall":{"arguments":[{"id":5210,"name":"expiry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5196,"src":"6254:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5209,"name":"VotesExpiredSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4905,"src":"6232:21:12","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":5211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6232:29:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5212,"nodeType":"RevertStatement","src":"6225:36:12"}]}},{"assignments":[5216],"declarations":[{"constant":false,"id":5216,"mutability":"mutable","name":"signer","nameLocation":"6289:6:12","nodeType":"VariableDeclaration","scope":5245,"src":"6281:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5215,"name":"address","nodeType":"ElementaryTypeName","src":"6281:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5234,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"id":5223,"name":"DELEGATION_TYPEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5016,"src":"6363:19:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":5224,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5192,"src":"6384:9:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5225,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5194,"src":"6395:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5226,"name":"expiry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5196,"src":"6402:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5221,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967295,"src":"6352:3:12","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":5222,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6356:6:12","memberName":"encode","nodeType":"MemberAccess","src":"6352:10:12","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":5227,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6352:57:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":5220,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"6342:9:12","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":5228,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6342:68:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":5219,"name":"_hashTypedDataV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9521,"src":"6325:16:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":5229,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6325:86:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":5230,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5198,"src":"6425:1:12","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":5231,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5200,"src":"6440:1:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":5232,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5202,"src":"6455:1:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":5217,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9361,"src":"6298:5:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$9361_$","typeString":"type(library ECDSA)"}},"id":5218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6304:7:12","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":9311,"src":"6298:13:12","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address)"}},"id":5233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6298:168:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6281:185:12"},{"expression":{"arguments":[{"id":5236,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5216,"src":"6493:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5237,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5194,"src":"6501:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5235,"name":"_useCheckedNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7217,"src":"6476:16:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":5238,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6476:31:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5239,"nodeType":"ExpressionStatement","src":"6476:31:12"},{"expression":{"arguments":[{"id":5241,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5216,"src":"6527:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5242,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5192,"src":"6535:9:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":5240,"name":"_delegate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5281,"src":"6517:9:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":5243,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6517:28:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5244,"nodeType":"ExpressionStatement","src":"6517:28:12"}]},"documentation":{"id":5190,"nodeType":"StructuredDocumentation","src":"5926:67:12","text":" @dev Delegates votes from signer to `delegatee`."},"functionSelector":"c3cda520","id":5246,"implemented":true,"kind":"function","modifiers":[],"name":"delegateBySig","nameLocation":"6007:13:12","nodeType":"FunctionDefinition","parameters":{"id":5203,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5192,"mutability":"mutable","name":"delegatee","nameLocation":"6038:9:12","nodeType":"VariableDeclaration","scope":5246,"src":"6030:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5191,"name":"address","nodeType":"ElementaryTypeName","src":"6030:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5194,"mutability":"mutable","name":"nonce","nameLocation":"6065:5:12","nodeType":"VariableDeclaration","scope":5246,"src":"6057:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5193,"name":"uint256","nodeType":"ElementaryTypeName","src":"6057:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5196,"mutability":"mutable","name":"expiry","nameLocation":"6088:6:12","nodeType":"VariableDeclaration","scope":5246,"src":"6080:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5195,"name":"uint256","nodeType":"ElementaryTypeName","src":"6080:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5198,"mutability":"mutable","name":"v","nameLocation":"6110:1:12","nodeType":"VariableDeclaration","scope":5246,"src":"6104:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":5197,"name":"uint8","nodeType":"ElementaryTypeName","src":"6104:5:12","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":5200,"mutability":"mutable","name":"r","nameLocation":"6129:1:12","nodeType":"VariableDeclaration","scope":5246,"src":"6121:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5199,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6121:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":5202,"mutability":"mutable","name":"s","nameLocation":"6148:1:12","nodeType":"VariableDeclaration","scope":5246,"src":"6140:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5201,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6140:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6020:135:12"},"returnParameters":{"id":5204,"nodeType":"ParameterList","parameters":[],"src":"6171:0:12"},"scope":5523,"src":"5998:554:12","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":5280,"nodeType":"Block","src":"6802:240:12","statements":[{"assignments":[5255],"declarations":[{"constant":false,"id":5255,"mutability":"mutable","name":"oldDelegate","nameLocation":"6820:11:12","nodeType":"VariableDeclaration","scope":5280,"src":"6812:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5254,"name":"address","nodeType":"ElementaryTypeName","src":"6812:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5259,"initialValue":{"arguments":[{"id":5257,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5249,"src":"6844:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5256,"name":"delegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5172,"src":"6834:9:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_address_$","typeString":"function (address) view returns (address)"}},"id":5258,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6834:18:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6812:40:12"},{"expression":{"id":5264,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5260,"name":"_delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5020,"src":"6862:10:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":5262,"indexExpression":{"id":5261,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5249,"src":"6873:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6862:19:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5263,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5251,"src":"6884:9:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6862:31:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5265,"nodeType":"ExpressionStatement","src":"6862:31:12"},{"eventCall":{"arguments":[{"id":5267,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5249,"src":"6925:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5268,"name":"oldDelegate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5255,"src":"6934:11:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5269,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5251,"src":"6947:9:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":5266,"name":"DelegateChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4914,"src":"6909:15:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_address_$returns$__$","typeString":"function (address,address,address)"}},"id":5270,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6909:48:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5271,"nodeType":"EmitStatement","src":"6904:53:12"},{"expression":{"arguments":[{"id":5273,"name":"oldDelegate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5255,"src":"6986:11:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5274,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5251,"src":"6999:9:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":5276,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5249,"src":"7026:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5275,"name":"_getVotingUnits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5522,"src":"7010:15:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":5277,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7010:24:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5272,"name":"_moveDelegateVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5414,"src":"6967:18:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5278,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6967:68:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5279,"nodeType":"ExpressionStatement","src":"6967:68:12"}]},"documentation":{"id":5247,"nodeType":"StructuredDocumentation","src":"6558:167:12","text":" @dev Delegate all of `account`'s voting units to `delegatee`.\n Emits events {IVotes-DelegateChanged} and {IVotes-DelegateVotesChanged}."},"id":5281,"implemented":true,"kind":"function","modifiers":[],"name":"_delegate","nameLocation":"6739:9:12","nodeType":"FunctionDefinition","parameters":{"id":5252,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5249,"mutability":"mutable","name":"account","nameLocation":"6757:7:12","nodeType":"VariableDeclaration","scope":5281,"src":"6749:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5248,"name":"address","nodeType":"ElementaryTypeName","src":"6749:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5251,"mutability":"mutable","name":"delegatee","nameLocation":"6774:9:12","nodeType":"VariableDeclaration","scope":5281,"src":"6766:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5250,"name":"address","nodeType":"ElementaryTypeName","src":"6766:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6748:36:12"},"returnParameters":{"id":5253,"nodeType":"ParameterList","parameters":[],"src":"6802:0:12"},"scope":5523,"src":"6730:312:12","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":5335,"nodeType":"Block","src":"7365:310:12","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5291,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5284,"src":"7379:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5294,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7395:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5293,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7387:7:12","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5292,"name":"address","nodeType":"ElementaryTypeName","src":"7387:7:12","typeDescriptions":{}}},"id":5295,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7387:10:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7379:18:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5307,"nodeType":"IfStatement","src":"7375:107:12","trueBody":{"id":5306,"nodeType":"Block","src":"7399:83:12","statements":[{"expression":{"arguments":[{"id":5298,"name":"_totalCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5028,"src":"7419:17:12","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},{"id":5299,"name":"_add","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5500,"src":"7438:4:12","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"}},{"arguments":[{"id":5302,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5288,"src":"7463:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5300,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"7444:8:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":5301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7453:9:12","memberName":"toUint208","nodeType":"MemberAccess","referencedDeclaration":11634,"src":"7444:18:12","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint208_$","typeString":"function (uint256) pure returns (uint208)"}},"id":5303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7444:26:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208 storage ref"},{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":5297,"name":"_push","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5486,"src":"7413:5:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Trace208_$13885_storage_ptr_$_t_function_internal_view$_t_uint208_$_t_uint208_$returns$_t_uint208_$_$_t_uint208_$returns$_t_uint208_$_t_uint208_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,function (uint208,uint208) view returns (uint208),uint208) returns (uint208,uint208)"}},"id":5304,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7413:58:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"id":5305,"nodeType":"ExpressionStatement","src":"7413:58:12"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5308,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5286,"src":"7495:2:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5311,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7509:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5310,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7501:7:12","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5309,"name":"address","nodeType":"ElementaryTypeName","src":"7501:7:12","typeDescriptions":{}}},"id":5312,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7501:10:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7495:16:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5324,"nodeType":"IfStatement","src":"7491:110:12","trueBody":{"id":5323,"nodeType":"Block","src":"7513:88:12","statements":[{"expression":{"arguments":[{"id":5315,"name":"_totalCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5028,"src":"7533:17:12","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},{"id":5316,"name":"_subtract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5514,"src":"7552:9:12","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"}},{"arguments":[{"id":5319,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5288,"src":"7582:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5317,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"7563:8:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":5318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7572:9:12","memberName":"toUint208","nodeType":"MemberAccess","referencedDeclaration":11634,"src":"7563:18:12","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint208_$","typeString":"function (uint256) pure returns (uint208)"}},"id":5320,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7563:26:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208 storage ref"},{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":5314,"name":"_push","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5486,"src":"7527:5:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Trace208_$13885_storage_ptr_$_t_function_internal_view$_t_uint208_$_t_uint208_$returns$_t_uint208_$_$_t_uint208_$returns$_t_uint208_$_t_uint208_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,function (uint208,uint208) view returns (uint208),uint208) returns (uint208,uint208)"}},"id":5321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7527:63:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"id":5322,"nodeType":"ExpressionStatement","src":"7527:63:12"}]}},{"expression":{"arguments":[{"arguments":[{"id":5327,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5284,"src":"7639:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5326,"name":"delegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5172,"src":"7629:9:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_address_$","typeString":"function (address) view returns (address)"}},"id":5328,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7629:15:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":5330,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5286,"src":"7656:2:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5329,"name":"delegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5172,"src":"7646:9:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_address_$","typeString":"function (address) view returns (address)"}},"id":5331,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7646:13:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5332,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5288,"src":"7661:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5325,"name":"_moveDelegateVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5414,"src":"7610:18:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5333,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7610:58:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5334,"nodeType":"ExpressionStatement","src":"7610:58:12"}]},"documentation":{"id":5282,"nodeType":"StructuredDocumentation","src":"7048:223:12","text":" @dev Transfers, mints, or burns voting units. To register a mint, `from` should be zero. To register a burn, `to`\n should be zero. Total supply of voting units will be adjusted with mints and burns."},"id":5336,"implemented":true,"kind":"function","modifiers":[],"name":"_transferVotingUnits","nameLocation":"7285:20:12","nodeType":"FunctionDefinition","parameters":{"id":5289,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5284,"mutability":"mutable","name":"from","nameLocation":"7314:4:12","nodeType":"VariableDeclaration","scope":5336,"src":"7306:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5283,"name":"address","nodeType":"ElementaryTypeName","src":"7306:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5286,"mutability":"mutable","name":"to","nameLocation":"7328:2:12","nodeType":"VariableDeclaration","scope":5336,"src":"7320:10:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5285,"name":"address","nodeType":"ElementaryTypeName","src":"7320:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5288,"mutability":"mutable","name":"amount","nameLocation":"7340:6:12","nodeType":"VariableDeclaration","scope":5336,"src":"7332:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5287,"name":"uint256","nodeType":"ElementaryTypeName","src":"7332:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7305:42:12"},"returnParameters":{"id":5290,"nodeType":"ParameterList","parameters":[],"src":"7365:0:12"},"scope":5523,"src":"7276:399:12","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":5413,"nodeType":"Block","src":"7848:702:12","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5348,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5346,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5339,"src":"7862:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":5347,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5341,"src":"7870:2:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7862:10:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5349,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5343,"src":"7876:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":5350,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7885:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7876:10:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7862:24:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5412,"nodeType":"IfStatement","src":"7858:686:12","trueBody":{"id":5411,"nodeType":"Block","src":"7888:656:12","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5353,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5339,"src":"7906:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":5356,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7922:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5355,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7914:7:12","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5354,"name":"address","nodeType":"ElementaryTypeName","src":"7914:7:12","typeDescriptions":{}}},"id":5357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7914:10:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7906:18:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5381,"nodeType":"IfStatement","src":"7902:315:12","trueBody":{"id":5380,"nodeType":"Block","src":"7926:291:12","statements":[{"assignments":[5360,5362],"declarations":[{"constant":false,"id":5360,"mutability":"mutable","name":"oldValue","nameLocation":"7953:8:12","nodeType":"VariableDeclaration","scope":5380,"src":"7945:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5359,"name":"uint256","nodeType":"ElementaryTypeName","src":"7945:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5362,"mutability":"mutable","name":"newValue","nameLocation":"7971:8:12","nodeType":"VariableDeclaration","scope":5380,"src":"7963:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5361,"name":"uint256","nodeType":"ElementaryTypeName","src":"7963:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5373,"initialValue":{"arguments":[{"baseExpression":{"id":5364,"name":"_delegateCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5025,"src":"8010:20:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13885_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208 storage ref)"}},"id":5366,"indexExpression":{"id":5365,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5339,"src":"8031:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8010:26:12","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},{"id":5367,"name":"_subtract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5514,"src":"8058:9:12","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"}},{"arguments":[{"id":5370,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5343,"src":"8108:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5368,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"8089:8:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":5369,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8098:9:12","memberName":"toUint208","nodeType":"MemberAccess","referencedDeclaration":11634,"src":"8089:18:12","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint208_$","typeString":"function (uint256) pure returns (uint208)"}},"id":5371,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8089:26:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208 storage ref"},{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":5363,"name":"_push","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5486,"src":"7983:5:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Trace208_$13885_storage_ptr_$_t_function_internal_view$_t_uint208_$_t_uint208_$returns$_t_uint208_$_$_t_uint208_$returns$_t_uint208_$_t_uint208_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,function (uint208,uint208) view returns (uint208),uint208) returns (uint208,uint208)"}},"id":5372,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7983:150:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"nodeType":"VariableDeclarationStatement","src":"7944:189:12"},{"eventCall":{"arguments":[{"id":5375,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5339,"src":"8177:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5376,"name":"oldValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5360,"src":"8183:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5377,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5362,"src":"8193:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5374,"name":"DelegateVotesChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4923,"src":"8156:20:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":5378,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8156:46:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5379,"nodeType":"EmitStatement","src":"8151:51:12"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5382,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5341,"src":"8234:2:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":5385,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8248:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5384,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8240:7:12","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5383,"name":"address","nodeType":"ElementaryTypeName","src":"8240:7:12","typeDescriptions":{}}},"id":5386,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8240:10:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8234:16:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5410,"nodeType":"IfStatement","src":"8230:304:12","trueBody":{"id":5409,"nodeType":"Block","src":"8252:282:12","statements":[{"assignments":[5389,5391],"declarations":[{"constant":false,"id":5389,"mutability":"mutable","name":"oldValue","nameLocation":"8279:8:12","nodeType":"VariableDeclaration","scope":5409,"src":"8271:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5388,"name":"uint256","nodeType":"ElementaryTypeName","src":"8271:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5391,"mutability":"mutable","name":"newValue","nameLocation":"8297:8:12","nodeType":"VariableDeclaration","scope":5409,"src":"8289:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5390,"name":"uint256","nodeType":"ElementaryTypeName","src":"8289:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5402,"initialValue":{"arguments":[{"baseExpression":{"id":5393,"name":"_delegateCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5025,"src":"8336:20:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13885_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208 storage ref)"}},"id":5395,"indexExpression":{"id":5394,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5341,"src":"8357:2:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8336:24:12","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},{"id":5396,"name":"_add","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5500,"src":"8382:4:12","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"}},{"arguments":[{"id":5399,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5343,"src":"8427:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5397,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"8408:8:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":5398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8417:9:12","memberName":"toUint208","nodeType":"MemberAccess","referencedDeclaration":11634,"src":"8408:18:12","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint208_$","typeString":"function (uint256) pure returns (uint208)"}},"id":5400,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8408:26:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208 storage ref"},{"typeIdentifier":"t_function_internal_pure$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) pure returns (uint208)"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":5392,"name":"_push","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5486,"src":"8309:5:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Trace208_$13885_storage_ptr_$_t_function_internal_view$_t_uint208_$_t_uint208_$returns$_t_uint208_$_$_t_uint208_$returns$_t_uint208_$_t_uint208_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,function (uint208,uint208) view returns (uint208),uint208) returns (uint208,uint208)"}},"id":5401,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8309:143:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"nodeType":"VariableDeclarationStatement","src":"8270:182:12"},{"eventCall":{"arguments":[{"id":5404,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5341,"src":"8496:2:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5405,"name":"oldValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5389,"src":"8500:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5406,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5391,"src":"8510:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5403,"name":"DelegateVotesChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4923,"src":"8475:20:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":5407,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8475:44:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5408,"nodeType":"EmitStatement","src":"8470:49:12"}]}}]}}]},"documentation":{"id":5337,"nodeType":"StructuredDocumentation","src":"7681:75:12","text":" @dev Moves delegated votes from one delegate to another."},"id":5414,"implemented":true,"kind":"function","modifiers":[],"name":"_moveDelegateVotes","nameLocation":"7770:18:12","nodeType":"FunctionDefinition","parameters":{"id":5344,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5339,"mutability":"mutable","name":"from","nameLocation":"7797:4:12","nodeType":"VariableDeclaration","scope":5414,"src":"7789:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5338,"name":"address","nodeType":"ElementaryTypeName","src":"7789:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5341,"mutability":"mutable","name":"to","nameLocation":"7811:2:12","nodeType":"VariableDeclaration","scope":5414,"src":"7803:10:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5340,"name":"address","nodeType":"ElementaryTypeName","src":"7803:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5343,"mutability":"mutable","name":"amount","nameLocation":"7823:6:12","nodeType":"VariableDeclaration","scope":5414,"src":"7815:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5342,"name":"uint256","nodeType":"ElementaryTypeName","src":"7815:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7788:42:12"},"returnParameters":{"id":5345,"nodeType":"ParameterList","parameters":[],"src":"7848:0:12"},"scope":5523,"src":"7761:789:12","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":5431,"nodeType":"Block","src":"8706:81:12","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"baseExpression":{"id":5424,"name":"_delegateCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5025,"src":"8741:20:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13885_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208 storage ref)"}},"id":5426,"indexExpression":{"id":5425,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5417,"src":"8762:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8741:29:12","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":5427,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8771:6:12","memberName":"length","nodeType":"MemberAccess","referencedDeclaration":14173,"src":"8741:36:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13885_storage_ptr_$returns$_t_uint256_$attached_to$_t_struct$_Trace208_$13885_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer) view returns (uint256)"}},"id":5428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8741:38:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5422,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"8723:8:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":5423,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8732:8:12","memberName":"toUint32","nodeType":"MemberAccess","referencedDeclaration":12250,"src":"8723:17:12","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint256) pure returns (uint32)"}},"id":5429,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8723:57:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":5421,"id":5430,"nodeType":"Return","src":"8716:64:12"}]},"documentation":{"id":5415,"nodeType":"StructuredDocumentation","src":"8556:64:12","text":" @dev Get number of checkpoints for `account`."},"id":5432,"implemented":true,"kind":"function","modifiers":[],"name":"_numCheckpoints","nameLocation":"8634:15:12","nodeType":"FunctionDefinition","parameters":{"id":5418,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5417,"mutability":"mutable","name":"account","nameLocation":"8658:7:12","nodeType":"VariableDeclaration","scope":5432,"src":"8650:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5416,"name":"address","nodeType":"ElementaryTypeName","src":"8650:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8649:17:12"},"returnParameters":{"id":5421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5420,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5432,"src":"8698:6:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5419,"name":"uint32","nodeType":"ElementaryTypeName","src":"8698:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"8697:8:12"},"scope":5523,"src":"8625:162:12","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":5450,"nodeType":"Block","src":"9002:61:12","statements":[{"expression":{"arguments":[{"id":5447,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5437,"src":"9052:3:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"baseExpression":{"id":5443,"name":"_delegateCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5025,"src":"9019:20:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Trace208_$13885_storage_$","typeString":"mapping(address => struct Checkpoints.Trace208 storage ref)"}},"id":5445,"indexExpression":{"id":5444,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5435,"src":"9040:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9019:29:12","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage","typeString":"struct Checkpoints.Trace208 storage ref"}},"id":5446,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9049:2:12","memberName":"at","nodeType":"MemberAccess","referencedDeclaration":14191,"src":"9019:32:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13885_storage_ptr_$_t_uint32_$returns$_t_struct$_Checkpoint208_$13890_memory_ptr_$attached_to$_t_struct$_Trace208_$13885_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint32) view returns (struct Checkpoints.Checkpoint208 memory)"}},"id":5448,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9019:37:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_memory_ptr","typeString":"struct Checkpoints.Checkpoint208 memory"}},"functionReturnParameters":5442,"id":5449,"nodeType":"Return","src":"9012:44:12"}]},"documentation":{"id":5433,"nodeType":"StructuredDocumentation","src":"8793:66:12","text":" @dev Get the `pos`-th checkpoint for `account`."},"id":5451,"implemented":true,"kind":"function","modifiers":[],"name":"_checkpoints","nameLocation":"8873:12:12","nodeType":"FunctionDefinition","parameters":{"id":5438,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5435,"mutability":"mutable","name":"account","nameLocation":"8903:7:12","nodeType":"VariableDeclaration","scope":5451,"src":"8895:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5434,"name":"address","nodeType":"ElementaryTypeName","src":"8895:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5437,"mutability":"mutable","name":"pos","nameLocation":"8927:3:12","nodeType":"VariableDeclaration","scope":5451,"src":"8920:10:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5436,"name":"uint32","nodeType":"ElementaryTypeName","src":"8920:6:12","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"8885:51:12"},"returnParameters":{"id":5442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5441,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5451,"src":"8968:32:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_memory_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":5440,"nodeType":"UserDefinedTypeName","pathNode":{"id":5439,"name":"Checkpoints.Checkpoint208","nameLocations":["8968:11:12","8980:13:12"],"nodeType":"IdentifierPath","referencedDeclaration":13890,"src":"8968:25:12"},"referencedDeclaration":13890,"src":"8968:25:12","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"src":"8967:34:12"},"scope":5523,"src":"8864:199:12","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":5485,"nodeType":"Block","src":"9272:70:12","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":5475,"name":"clock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5049,"src":"9300:5:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":5476,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9300:7:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5478,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5454,"src":"9312:5:12","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":5479,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9318:6:12","memberName":"latest","nodeType":"MemberAccess","referencedDeclaration":14110,"src":"9312:12:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Trace208_$13885_storage_ptr_$returns$_t_uint208_$attached_to$_t_struct$_Trace208_$13885_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer) view returns (uint208)"}},"id":5480,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9312:14:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},{"id":5481,"name":"delta","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5466,"src":"9328:5:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint208","typeString":"uint208"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":5477,"name":"op","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5464,"src":"9309:2:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) view returns (uint208)"}},"id":5482,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9309:25:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"expression":{"id":5473,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5454,"src":"9289:5:12","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":5474,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9295:4:12","memberName":"push","nodeType":"MemberAccess","referencedDeclaration":13913,"src":"9289:10:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_Trace208_$13885_storage_ptr_$_t_uint48_$_t_uint208_$returns$_t_uint208_$_t_uint208_$attached_to$_t_struct$_Trace208_$13885_storage_ptr_$","typeString":"function (struct Checkpoints.Trace208 storage pointer,uint48,uint208) returns (uint208,uint208)"}},"id":5483,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9289:46:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"functionReturnParameters":5472,"id":5484,"nodeType":"Return","src":"9282:53:12"}]},"id":5486,"implemented":true,"kind":"function","modifiers":[],"name":"_push","nameLocation":"9078:5:12","nodeType":"FunctionDefinition","parameters":{"id":5467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5454,"mutability":"mutable","name":"store","nameLocation":"9122:5:12","nodeType":"VariableDeclaration","scope":5486,"src":"9093:34:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":5453,"nodeType":"UserDefinedTypeName","pathNode":{"id":5452,"name":"Checkpoints.Trace208","nameLocations":["9093:11:12","9105:8:12"],"nodeType":"IdentifierPath","referencedDeclaration":13885,"src":"9093:20:12"},"referencedDeclaration":13885,"src":"9093:20:12","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":5464,"mutability":"mutable","name":"op","nameLocation":"9187:2:12","nodeType":"VariableDeclaration","scope":5486,"src":"9137:52:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) view returns (uint208)"},"typeName":{"id":5463,"nodeType":"FunctionTypeName","parameterTypes":{"id":5459,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5456,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5463,"src":"9146:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5455,"name":"uint208","nodeType":"ElementaryTypeName","src":"9146:7:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"},{"constant":false,"id":5458,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5463,"src":"9155:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5457,"name":"uint208","nodeType":"ElementaryTypeName","src":"9155:7:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9145:18:12"},"returnParameterTypes":{"id":5462,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5461,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5463,"src":"9178:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5460,"name":"uint208","nodeType":"ElementaryTypeName","src":"9178:7:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9177:9:12"},"src":"9137:52:12","stateMutability":"view","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint208_$_t_uint208_$returns$_t_uint208_$","typeString":"function (uint208,uint208) view returns (uint208)"},"visibility":"internal"},"visibility":"internal"},{"constant":false,"id":5466,"mutability":"mutable","name":"delta","nameLocation":"9207:5:12","nodeType":"VariableDeclaration","scope":5486,"src":"9199:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5465,"name":"uint208","nodeType":"ElementaryTypeName","src":"9199:7:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9083:135:12"},"returnParameters":{"id":5472,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5469,"mutability":"mutable","name":"oldValue","nameLocation":"9244:8:12","nodeType":"VariableDeclaration","scope":5486,"src":"9236:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5468,"name":"uint208","nodeType":"ElementaryTypeName","src":"9236:7:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"},{"constant":false,"id":5471,"mutability":"mutable","name":"newValue","nameLocation":"9262:8:12","nodeType":"VariableDeclaration","scope":5486,"src":"9254:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5470,"name":"uint208","nodeType":"ElementaryTypeName","src":"9254:7:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9235:36:12"},"scope":5523,"src":"9069:273:12","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":5499,"nodeType":"Block","src":"9415:29:12","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint208","typeString":"uint208"},"id":5497,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5495,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5488,"src":"9432:1:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":5496,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5490,"src":"9436:1:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"src":"9432:5:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":5494,"id":5498,"nodeType":"Return","src":"9425:12:12"}]},"id":5500,"implemented":true,"kind":"function","modifiers":[],"name":"_add","nameLocation":"9357:4:12","nodeType":"FunctionDefinition","parameters":{"id":5491,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5488,"mutability":"mutable","name":"a","nameLocation":"9370:1:12","nodeType":"VariableDeclaration","scope":5500,"src":"9362:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5487,"name":"uint208","nodeType":"ElementaryTypeName","src":"9362:7:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"},{"constant":false,"id":5490,"mutability":"mutable","name":"b","nameLocation":"9381:1:12","nodeType":"VariableDeclaration","scope":5500,"src":"9373:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5489,"name":"uint208","nodeType":"ElementaryTypeName","src":"9373:7:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9361:22:12"},"returnParameters":{"id":5494,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5493,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5500,"src":"9406:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5492,"name":"uint208","nodeType":"ElementaryTypeName","src":"9406:7:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9405:9:12"},"scope":5523,"src":"9348:96:12","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":5513,"nodeType":"Block","src":"9522:29:12","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint208","typeString":"uint208"},"id":5511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5509,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5502,"src":"9539:1:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":5510,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5504,"src":"9543:1:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"src":"9539:5:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":5508,"id":5512,"nodeType":"Return","src":"9532:12:12"}]},"id":5514,"implemented":true,"kind":"function","modifiers":[],"name":"_subtract","nameLocation":"9459:9:12","nodeType":"FunctionDefinition","parameters":{"id":5505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5502,"mutability":"mutable","name":"a","nameLocation":"9477:1:12","nodeType":"VariableDeclaration","scope":5514,"src":"9469:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5501,"name":"uint208","nodeType":"ElementaryTypeName","src":"9469:7:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"},{"constant":false,"id":5504,"mutability":"mutable","name":"b","nameLocation":"9488:1:12","nodeType":"VariableDeclaration","scope":5514,"src":"9480:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5503,"name":"uint208","nodeType":"ElementaryTypeName","src":"9480:7:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9468:22:12"},"returnParameters":{"id":5508,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5507,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5514,"src":"9513:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":5506,"name":"uint208","nodeType":"ElementaryTypeName","src":"9513:7:12","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9512:9:12"},"scope":5523,"src":"9450:101:12","stateMutability":"pure","virtual":false,"visibility":"private"},{"documentation":{"id":5515,"nodeType":"StructuredDocumentation","src":"9557:72:12","text":" @dev Must return the voting units held by an account."},"id":5522,"implemented":false,"kind":"function","modifiers":[],"name":"_getVotingUnits","nameLocation":"9643:15:12","nodeType":"FunctionDefinition","parameters":{"id":5518,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5517,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5522,"src":"9659:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5516,"name":"address","nodeType":"ElementaryTypeName","src":"9659:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9658:9:12"},"returnParameters":{"id":5521,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5520,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5522,"src":"9699:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5519,"name":"uint256","nodeType":"ElementaryTypeName","src":"9699:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9698:9:12"},"scope":5523,"src":"9634:74:12","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":5524,"src":"1892:7818:12","usedErrors":[4905,5031,5038,7160,7284,7286,9024,9029,9034,11449,13356],"usedEvents":[4914,4923,5546]}],"src":"109:9602:12"},"id":12},"@openzeppelin/contracts/interfaces/IERC1271.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1271.sol","exportedSymbols":{"IERC1271":[5537]},"id":5538,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5525,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:13"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1271","contractDependencies":[],"contractKind":"interface","documentation":{"id":5526,"nodeType":"StructuredDocumentation","src":"133:160:13","text":" @dev Interface of the ERC-1271 standard signature validation method for\n contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271]."},"fullyImplemented":false,"id":5537,"linearizedBaseContracts":[5537],"name":"IERC1271","nameLocation":"304:8:13","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5527,"nodeType":"StructuredDocumentation","src":"319:221:13","text":" @dev Should return whether the signature provided is valid for the provided data\n @param hash Hash of the data to be signed\n @param signature Signature byte array associated with `hash`"},"functionSelector":"1626ba7e","id":5536,"implemented":false,"kind":"function","modifiers":[],"name":"isValidSignature","nameLocation":"554:16:13","nodeType":"FunctionDefinition","parameters":{"id":5532,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5529,"mutability":"mutable","name":"hash","nameLocation":"579:4:13","nodeType":"VariableDeclaration","scope":5536,"src":"571:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5528,"name":"bytes32","nodeType":"ElementaryTypeName","src":"571:7:13","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":5531,"mutability":"mutable","name":"signature","nameLocation":"598:9:13","nodeType":"VariableDeclaration","scope":5536,"src":"585:22:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5530,"name":"bytes","nodeType":"ElementaryTypeName","src":"585:5:13","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"570:38:13"},"returnParameters":{"id":5535,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5534,"mutability":"mutable","name":"magicValue","nameLocation":"639:10:13","nodeType":"VariableDeclaration","scope":5536,"src":"632:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5533,"name":"bytes4","nodeType":"ElementaryTypeName","src":"632:6:13","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"631:19:13"},"scope":5537,"src":"545:106:13","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":5538,"src":"294:359:13","usedErrors":[],"usedEvents":[]}],"src":"107:547:13"},"id":13},"@openzeppelin/contracts/interfaces/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","exportedSymbols":{"IERC165":[9818]},"id":5542,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5539,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:14"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../utils/introspection/IERC165.sol","id":5541,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5542,"sourceUnit":9819,"src":"132:59:14","symbolAliases":[{"foreign":{"id":5540,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9818,"src":"140:7:14","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"106:86:14"},"id":14},"@openzeppelin/contracts/interfaces/IERC5267.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5267.sol","exportedSymbols":{"IERC5267":[5566]},"id":5567,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5543,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:15"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC5267","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":5566,"linearizedBaseContracts":[5566],"name":"IERC5267","nameLocation":"143:8:15","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":5544,"nodeType":"StructuredDocumentation","src":"158:84:15","text":" @dev MAY be emitted to signal that the domain could have changed."},"eventSelector":"0a6387c9ea3628b88a633bb4f3b151770f70085117a15f9bf3787cda53f13d31","id":5546,"name":"EIP712DomainChanged","nameLocation":"253:19:15","nodeType":"EventDefinition","parameters":{"id":5545,"nodeType":"ParameterList","parameters":[],"src":"272:2:15"},"src":"247:28:15"},{"documentation":{"id":5547,"nodeType":"StructuredDocumentation","src":"281:140:15","text":" @dev returns the fields and values that describe the domain separator used by this contract for EIP-712\n signature."},"functionSelector":"84b0196e","id":5565,"implemented":false,"kind":"function","modifiers":[],"name":"eip712Domain","nameLocation":"435:12:15","nodeType":"FunctionDefinition","parameters":{"id":5548,"nodeType":"ParameterList","parameters":[],"src":"447:2:15"},"returnParameters":{"id":5564,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5550,"mutability":"mutable","name":"fields","nameLocation":"517:6:15","nodeType":"VariableDeclaration","scope":5565,"src":"510:13:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":5549,"name":"bytes1","nodeType":"ElementaryTypeName","src":"510:6:15","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":5552,"mutability":"mutable","name":"name","nameLocation":"551:4:15","nodeType":"VariableDeclaration","scope":5565,"src":"537:18:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5551,"name":"string","nodeType":"ElementaryTypeName","src":"537:6:15","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":5554,"mutability":"mutable","name":"version","nameLocation":"583:7:15","nodeType":"VariableDeclaration","scope":5565,"src":"569:21:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5553,"name":"string","nodeType":"ElementaryTypeName","src":"569:6:15","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":5556,"mutability":"mutable","name":"chainId","nameLocation":"612:7:15","nodeType":"VariableDeclaration","scope":5565,"src":"604:15:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5555,"name":"uint256","nodeType":"ElementaryTypeName","src":"604:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5558,"mutability":"mutable","name":"verifyingContract","nameLocation":"641:17:15","nodeType":"VariableDeclaration","scope":5565,"src":"633:25:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5557,"name":"address","nodeType":"ElementaryTypeName","src":"633:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5560,"mutability":"mutable","name":"salt","nameLocation":"680:4:15","nodeType":"VariableDeclaration","scope":5565,"src":"672:12:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5559,"name":"bytes32","nodeType":"ElementaryTypeName","src":"672:7:15","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":5563,"mutability":"mutable","name":"extensions","nameLocation":"715:10:15","nodeType":"VariableDeclaration","scope":5565,"src":"698:27:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":5561,"name":"uint256","nodeType":"ElementaryTypeName","src":"698:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5562,"nodeType":"ArrayTypeName","src":"698:9:15","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"496:239:15"},"scope":5566,"src":"426:310:15","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":5567,"src":"133:605:15","usedErrors":[],"usedEvents":[5546]}],"src":"107:632:15"},"id":15},"@openzeppelin/contracts/interfaces/IERC5805.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5805.sol","exportedSymbols":{"IERC5805":[5577],"IERC6372":[5592],"IVotes":[4980]},"id":5578,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5568,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:16"},{"absolutePath":"@openzeppelin/contracts/governance/utils/IVotes.sol","file":"../governance/utils/IVotes.sol","id":5570,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5578,"sourceUnit":4981,"src":"133:54:16","symbolAliases":[{"foreign":{"id":5569,"name":"IVotes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4980,"src":"141:6:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC6372.sol","file":"./IERC6372.sol","id":5572,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5578,"sourceUnit":5593,"src":"188:40:16","symbolAliases":[{"foreign":{"id":5571,"name":"IERC6372","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5592,"src":"196:8:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":5573,"name":"IERC6372","nameLocations":["252:8:16"],"nodeType":"IdentifierPath","referencedDeclaration":5592,"src":"252:8:16"},"id":5574,"nodeType":"InheritanceSpecifier","src":"252:8:16"},{"baseName":{"id":5575,"name":"IVotes","nameLocations":["262:6:16"],"nodeType":"IdentifierPath","referencedDeclaration":4980,"src":"262:6:16"},"id":5576,"nodeType":"InheritanceSpecifier","src":"262:6:16"}],"canonicalName":"IERC5805","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":5577,"linearizedBaseContracts":[5577,4980,5592],"name":"IERC5805","nameLocation":"240:8:16","nodeType":"ContractDefinition","nodes":[],"scope":5578,"src":"230:41:16","usedErrors":[4905],"usedEvents":[4914,4923]}],"src":"107:165:16"},"id":16},"@openzeppelin/contracts/interfaces/IERC6372.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC6372.sol","exportedSymbols":{"IERC6372":[5592]},"id":5593,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5579,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:17"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC6372","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":5592,"linearizedBaseContracts":[5592],"name":"IERC6372","nameLocation":"143:8:17","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5580,"nodeType":"StructuredDocumentation","src":"158:133:17","text":" @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting)."},"functionSelector":"91ddadf4","id":5585,"implemented":false,"kind":"function","modifiers":[],"name":"clock","nameLocation":"305:5:17","nodeType":"FunctionDefinition","parameters":{"id":5581,"nodeType":"ParameterList","parameters":[],"src":"310:2:17"},"returnParameters":{"id":5584,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5583,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5585,"src":"336:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":5582,"name":"uint48","nodeType":"ElementaryTypeName","src":"336:6:17","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"335:8:17"},"scope":5592,"src":"296:48:17","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":5586,"nodeType":"StructuredDocumentation","src":"350:48:17","text":" @dev Description of the clock"},"functionSelector":"4bf5d7e9","id":5591,"implemented":false,"kind":"function","modifiers":[],"name":"CLOCK_MODE","nameLocation":"465:10:17","nodeType":"FunctionDefinition","parameters":{"id":5587,"nodeType":"ParameterList","parameters":[],"src":"475:2:17"},"returnParameters":{"id":5590,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5589,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5591,"src":"501:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5588,"name":"string","nodeType":"ElementaryTypeName","src":"501:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"500:15:17"},"scope":5592,"src":"456:60:17","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":5593,"src":"133:385:17","usedErrors":[],"usedEvents":[]}],"src":"107:412:17"},"id":17},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","exportedSymbols":{"IERC1155Errors":[5729],"IERC20Errors":[5634],"IERC721Errors":[5682]},"id":5730,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5594,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"112:24:18"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":5595,"nodeType":"StructuredDocumentation","src":"138:141:18","text":" @dev Standard ERC-20 Errors\n Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens."},"fullyImplemented":true,"id":5634,"linearizedBaseContracts":[5634],"name":"IERC20Errors","nameLocation":"290:12:18","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5596,"nodeType":"StructuredDocumentation","src":"309:309:18","text":" @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred.\n @param balance Current balance for the interacting account.\n @param needed Minimum amount required to perform a transfer."},"errorSelector":"e450d38c","id":5604,"name":"ERC20InsufficientBalance","nameLocation":"629:24:18","nodeType":"ErrorDefinition","parameters":{"id":5603,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5598,"mutability":"mutable","name":"sender","nameLocation":"662:6:18","nodeType":"VariableDeclaration","scope":5604,"src":"654:14:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5597,"name":"address","nodeType":"ElementaryTypeName","src":"654:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5600,"mutability":"mutable","name":"balance","nameLocation":"678:7:18","nodeType":"VariableDeclaration","scope":5604,"src":"670:15:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5599,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5602,"mutability":"mutable","name":"needed","nameLocation":"695:6:18","nodeType":"VariableDeclaration","scope":5604,"src":"687:14:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5601,"name":"uint256","nodeType":"ElementaryTypeName","src":"687:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"653:49:18"},"src":"623:80:18"},{"documentation":{"id":5605,"nodeType":"StructuredDocumentation","src":"709:152:18","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"96c6fd1e","id":5609,"name":"ERC20InvalidSender","nameLocation":"872:18:18","nodeType":"ErrorDefinition","parameters":{"id":5608,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5607,"mutability":"mutable","name":"sender","nameLocation":"899:6:18","nodeType":"VariableDeclaration","scope":5609,"src":"891:14:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5606,"name":"address","nodeType":"ElementaryTypeName","src":"891:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"890:16:18"},"src":"866:41:18"},{"documentation":{"id":5610,"nodeType":"StructuredDocumentation","src":"913:159:18","text":" @dev Indicates a failure with the token `receiver`. Used in transfers.\n @param receiver Address to which tokens are being transferred."},"errorSelector":"ec442f05","id":5614,"name":"ERC20InvalidReceiver","nameLocation":"1083:20:18","nodeType":"ErrorDefinition","parameters":{"id":5613,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5612,"mutability":"mutable","name":"receiver","nameLocation":"1112:8:18","nodeType":"VariableDeclaration","scope":5614,"src":"1104:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5611,"name":"address","nodeType":"ElementaryTypeName","src":"1104:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1103:18:18"},"src":"1077:45:18"},{"documentation":{"id":5615,"nodeType":"StructuredDocumentation","src":"1128:345:18","text":" @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.\n @param spender Address that may be allowed to operate on tokens without being their owner.\n @param allowance Amount of tokens a `spender` is allowed to operate with.\n @param needed Minimum amount required to perform a transfer."},"errorSelector":"fb8f41b2","id":5623,"name":"ERC20InsufficientAllowance","nameLocation":"1484:26:18","nodeType":"ErrorDefinition","parameters":{"id":5622,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5617,"mutability":"mutable","name":"spender","nameLocation":"1519:7:18","nodeType":"VariableDeclaration","scope":5623,"src":"1511:15:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5616,"name":"address","nodeType":"ElementaryTypeName","src":"1511:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5619,"mutability":"mutable","name":"allowance","nameLocation":"1536:9:18","nodeType":"VariableDeclaration","scope":5623,"src":"1528:17:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5618,"name":"uint256","nodeType":"ElementaryTypeName","src":"1528:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5621,"mutability":"mutable","name":"needed","nameLocation":"1555:6:18","nodeType":"VariableDeclaration","scope":5623,"src":"1547:14:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5620,"name":"uint256","nodeType":"ElementaryTypeName","src":"1547:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1510:52:18"},"src":"1478:85:18"},{"documentation":{"id":5624,"nodeType":"StructuredDocumentation","src":"1569:174:18","text":" @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n @param approver Address initiating an approval operation."},"errorSelector":"e602df05","id":5628,"name":"ERC20InvalidApprover","nameLocation":"1754:20:18","nodeType":"ErrorDefinition","parameters":{"id":5627,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5626,"mutability":"mutable","name":"approver","nameLocation":"1783:8:18","nodeType":"VariableDeclaration","scope":5628,"src":"1775:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5625,"name":"address","nodeType":"ElementaryTypeName","src":"1775:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1774:18:18"},"src":"1748:45:18"},{"documentation":{"id":5629,"nodeType":"StructuredDocumentation","src":"1799:195:18","text":" @dev Indicates a failure with the `spender` to be approved. Used in approvals.\n @param spender Address that may be allowed to operate on tokens without being their owner."},"errorSelector":"94280d62","id":5633,"name":"ERC20InvalidSpender","nameLocation":"2005:19:18","nodeType":"ErrorDefinition","parameters":{"id":5632,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5631,"mutability":"mutable","name":"spender","nameLocation":"2033:7:18","nodeType":"VariableDeclaration","scope":5633,"src":"2025:15:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5630,"name":"address","nodeType":"ElementaryTypeName","src":"2025:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2024:17:18"},"src":"1999:43:18"}],"scope":5730,"src":"280:1764:18","usedErrors":[5604,5609,5614,5623,5628,5633],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":5635,"nodeType":"StructuredDocumentation","src":"2046:143:18","text":" @dev Standard ERC-721 Errors\n Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens."},"fullyImplemented":true,"id":5682,"linearizedBaseContracts":[5682],"name":"IERC721Errors","nameLocation":"2200:13:18","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5636,"nodeType":"StructuredDocumentation","src":"2220:219:18","text":" @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.\n Used in balance queries.\n @param owner Address of the current owner of a token."},"errorSelector":"89c62b64","id":5640,"name":"ERC721InvalidOwner","nameLocation":"2450:18:18","nodeType":"ErrorDefinition","parameters":{"id":5639,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5638,"mutability":"mutable","name":"owner","nameLocation":"2477:5:18","nodeType":"VariableDeclaration","scope":5640,"src":"2469:13:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5637,"name":"address","nodeType":"ElementaryTypeName","src":"2469:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2468:15:18"},"src":"2444:40:18"},{"documentation":{"id":5641,"nodeType":"StructuredDocumentation","src":"2490:132:18","text":" @dev Indicates a `tokenId` whose `owner` is the zero address.\n @param tokenId Identifier number of a token."},"errorSelector":"7e273289","id":5645,"name":"ERC721NonexistentToken","nameLocation":"2633:22:18","nodeType":"ErrorDefinition","parameters":{"id":5644,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5643,"mutability":"mutable","name":"tokenId","nameLocation":"2664:7:18","nodeType":"VariableDeclaration","scope":5645,"src":"2656:15:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5642,"name":"uint256","nodeType":"ElementaryTypeName","src":"2656:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2655:17:18"},"src":"2627:46:18"},{"documentation":{"id":5646,"nodeType":"StructuredDocumentation","src":"2679:289:18","text":" @dev Indicates an error related to the ownership over a particular token. Used in transfers.\n @param sender Address whose tokens are being transferred.\n @param tokenId Identifier number of a token.\n @param owner Address of the current owner of a token."},"errorSelector":"64283d7b","id":5654,"name":"ERC721IncorrectOwner","nameLocation":"2979:20:18","nodeType":"ErrorDefinition","parameters":{"id":5653,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5648,"mutability":"mutable","name":"sender","nameLocation":"3008:6:18","nodeType":"VariableDeclaration","scope":5654,"src":"3000:14:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5647,"name":"address","nodeType":"ElementaryTypeName","src":"3000:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5650,"mutability":"mutable","name":"tokenId","nameLocation":"3024:7:18","nodeType":"VariableDeclaration","scope":5654,"src":"3016:15:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5649,"name":"uint256","nodeType":"ElementaryTypeName","src":"3016:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5652,"mutability":"mutable","name":"owner","nameLocation":"3041:5:18","nodeType":"VariableDeclaration","scope":5654,"src":"3033:13:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5651,"name":"address","nodeType":"ElementaryTypeName","src":"3033:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2999:48:18"},"src":"2973:75:18"},{"documentation":{"id":5655,"nodeType":"StructuredDocumentation","src":"3054:152:18","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"73c6ac6e","id":5659,"name":"ERC721InvalidSender","nameLocation":"3217:19:18","nodeType":"ErrorDefinition","parameters":{"id":5658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5657,"mutability":"mutable","name":"sender","nameLocation":"3245:6:18","nodeType":"VariableDeclaration","scope":5659,"src":"3237:14:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5656,"name":"address","nodeType":"ElementaryTypeName","src":"3237:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3236:16:18"},"src":"3211:42:18"},{"documentation":{"id":5660,"nodeType":"StructuredDocumentation","src":"3259:159:18","text":" @dev Indicates a failure with the token `receiver`. Used in transfers.\n @param receiver Address to which tokens are being transferred."},"errorSelector":"64a0ae92","id":5664,"name":"ERC721InvalidReceiver","nameLocation":"3429:21:18","nodeType":"ErrorDefinition","parameters":{"id":5663,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5662,"mutability":"mutable","name":"receiver","nameLocation":"3459:8:18","nodeType":"VariableDeclaration","scope":5664,"src":"3451:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5661,"name":"address","nodeType":"ElementaryTypeName","src":"3451:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3450:18:18"},"src":"3423:46:18"},{"documentation":{"id":5665,"nodeType":"StructuredDocumentation","src":"3475:247:18","text":" @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n @param operator Address that may be allowed to operate on tokens without being their owner.\n @param tokenId Identifier number of a token."},"errorSelector":"177e802f","id":5671,"name":"ERC721InsufficientApproval","nameLocation":"3733:26:18","nodeType":"ErrorDefinition","parameters":{"id":5670,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5667,"mutability":"mutable","name":"operator","nameLocation":"3768:8:18","nodeType":"VariableDeclaration","scope":5671,"src":"3760:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5666,"name":"address","nodeType":"ElementaryTypeName","src":"3760:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5669,"mutability":"mutable","name":"tokenId","nameLocation":"3786:7:18","nodeType":"VariableDeclaration","scope":5671,"src":"3778:15:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5668,"name":"uint256","nodeType":"ElementaryTypeName","src":"3778:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3759:35:18"},"src":"3727:68:18"},{"documentation":{"id":5672,"nodeType":"StructuredDocumentation","src":"3801:174:18","text":" @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n @param approver Address initiating an approval operation."},"errorSelector":"a9fbf51f","id":5676,"name":"ERC721InvalidApprover","nameLocation":"3986:21:18","nodeType":"ErrorDefinition","parameters":{"id":5675,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5674,"mutability":"mutable","name":"approver","nameLocation":"4016:8:18","nodeType":"VariableDeclaration","scope":5676,"src":"4008:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5673,"name":"address","nodeType":"ElementaryTypeName","src":"4008:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4007:18:18"},"src":"3980:46:18"},{"documentation":{"id":5677,"nodeType":"StructuredDocumentation","src":"4032:197:18","text":" @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n @param operator Address that may be allowed to operate on tokens without being their owner."},"errorSelector":"5b08ba18","id":5681,"name":"ERC721InvalidOperator","nameLocation":"4240:21:18","nodeType":"ErrorDefinition","parameters":{"id":5680,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5679,"mutability":"mutable","name":"operator","nameLocation":"4270:8:18","nodeType":"VariableDeclaration","scope":5681,"src":"4262:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5678,"name":"address","nodeType":"ElementaryTypeName","src":"4262:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4261:18:18"},"src":"4234:46:18"}],"scope":5730,"src":"2190:2092:18","usedErrors":[5640,5645,5654,5659,5664,5671,5676,5681],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1155Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":5683,"nodeType":"StructuredDocumentation","src":"4284:145:18","text":" @dev Standard ERC-1155 Errors\n Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens."},"fullyImplemented":true,"id":5729,"linearizedBaseContracts":[5729],"name":"IERC1155Errors","nameLocation":"4440:14:18","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5684,"nodeType":"StructuredDocumentation","src":"4461:361:18","text":" @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred.\n @param balance Current balance for the interacting account.\n @param needed Minimum amount required to perform a transfer.\n @param tokenId Identifier number of a token."},"errorSelector":"03dee4c5","id":5694,"name":"ERC1155InsufficientBalance","nameLocation":"4833:26:18","nodeType":"ErrorDefinition","parameters":{"id":5693,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5686,"mutability":"mutable","name":"sender","nameLocation":"4868:6:18","nodeType":"VariableDeclaration","scope":5694,"src":"4860:14:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5685,"name":"address","nodeType":"ElementaryTypeName","src":"4860:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5688,"mutability":"mutable","name":"balance","nameLocation":"4884:7:18","nodeType":"VariableDeclaration","scope":5694,"src":"4876:15:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5687,"name":"uint256","nodeType":"ElementaryTypeName","src":"4876:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5690,"mutability":"mutable","name":"needed","nameLocation":"4901:6:18","nodeType":"VariableDeclaration","scope":5694,"src":"4893:14:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5689,"name":"uint256","nodeType":"ElementaryTypeName","src":"4893:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5692,"mutability":"mutable","name":"tokenId","nameLocation":"4917:7:18","nodeType":"VariableDeclaration","scope":5694,"src":"4909:15:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5691,"name":"uint256","nodeType":"ElementaryTypeName","src":"4909:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4859:66:18"},"src":"4827:99:18"},{"documentation":{"id":5695,"nodeType":"StructuredDocumentation","src":"4932:152:18","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"01a83514","id":5699,"name":"ERC1155InvalidSender","nameLocation":"5095:20:18","nodeType":"ErrorDefinition","parameters":{"id":5698,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5697,"mutability":"mutable","name":"sender","nameLocation":"5124:6:18","nodeType":"VariableDeclaration","scope":5699,"src":"5116:14:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5696,"name":"address","nodeType":"ElementaryTypeName","src":"5116:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5115:16:18"},"src":"5089:43:18"},{"documentation":{"id":5700,"nodeType":"StructuredDocumentation","src":"5138:159:18","text":" @dev Indicates a failure with the token `receiver`. Used in transfers.\n @param receiver Address to which tokens are being transferred."},"errorSelector":"57f447ce","id":5704,"name":"ERC1155InvalidReceiver","nameLocation":"5308:22:18","nodeType":"ErrorDefinition","parameters":{"id":5703,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5702,"mutability":"mutable","name":"receiver","nameLocation":"5339:8:18","nodeType":"VariableDeclaration","scope":5704,"src":"5331:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5701,"name":"address","nodeType":"ElementaryTypeName","src":"5331:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5330:18:18"},"src":"5302:47:18"},{"documentation":{"id":5705,"nodeType":"StructuredDocumentation","src":"5355:256:18","text":" @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n @param operator Address that may be allowed to operate on tokens without being their owner.\n @param owner Address of the current owner of a token."},"errorSelector":"e237d922","id":5711,"name":"ERC1155MissingApprovalForAll","nameLocation":"5622:28:18","nodeType":"ErrorDefinition","parameters":{"id":5710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5707,"mutability":"mutable","name":"operator","nameLocation":"5659:8:18","nodeType":"VariableDeclaration","scope":5711,"src":"5651:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5706,"name":"address","nodeType":"ElementaryTypeName","src":"5651:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5709,"mutability":"mutable","name":"owner","nameLocation":"5677:5:18","nodeType":"VariableDeclaration","scope":5711,"src":"5669:13:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5708,"name":"address","nodeType":"ElementaryTypeName","src":"5669:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5650:33:18"},"src":"5616:68:18"},{"documentation":{"id":5712,"nodeType":"StructuredDocumentation","src":"5690:174:18","text":" @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n @param approver Address initiating an approval operation."},"errorSelector":"3e31884e","id":5716,"name":"ERC1155InvalidApprover","nameLocation":"5875:22:18","nodeType":"ErrorDefinition","parameters":{"id":5715,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5714,"mutability":"mutable","name":"approver","nameLocation":"5906:8:18","nodeType":"VariableDeclaration","scope":5716,"src":"5898:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5713,"name":"address","nodeType":"ElementaryTypeName","src":"5898:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5897:18:18"},"src":"5869:47:18"},{"documentation":{"id":5717,"nodeType":"StructuredDocumentation","src":"5922:197:18","text":" @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n @param operator Address that may be allowed to operate on tokens without being their owner."},"errorSelector":"ced3e100","id":5721,"name":"ERC1155InvalidOperator","nameLocation":"6130:22:18","nodeType":"ErrorDefinition","parameters":{"id":5720,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5719,"mutability":"mutable","name":"operator","nameLocation":"6161:8:18","nodeType":"VariableDeclaration","scope":5721,"src":"6153:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5718,"name":"address","nodeType":"ElementaryTypeName","src":"6153:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6152:18:18"},"src":"6124:47:18"},{"documentation":{"id":5722,"nodeType":"StructuredDocumentation","src":"6177:280:18","text":" @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.\n Used in batch transfers.\n @param idsLength Length of the array of token identifiers\n @param valuesLength Length of the array of token amounts"},"errorSelector":"5b059991","id":5728,"name":"ERC1155InvalidArrayLength","nameLocation":"6468:25:18","nodeType":"ErrorDefinition","parameters":{"id":5727,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5724,"mutability":"mutable","name":"idsLength","nameLocation":"6502:9:18","nodeType":"VariableDeclaration","scope":5728,"src":"6494:17:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5723,"name":"uint256","nodeType":"ElementaryTypeName","src":"6494:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5726,"mutability":"mutable","name":"valuesLength","nameLocation":"6521:12:18","nodeType":"VariableDeclaration","scope":5728,"src":"6513:20:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5725,"name":"uint256","nodeType":"ElementaryTypeName","src":"6513:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6493:41:18"},"src":"6462:73:18"}],"scope":5730,"src":"4430:2107:18","usedErrors":[5694,5699,5704,5711,5716,5721,5728],"usedEvents":[]}],"src":"112:6426:18"},"id":18},"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol","exportedSymbols":{"IERC1155Receiver":[5771],"IERC165":[9818]},"id":5772,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5731,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"118:24:19"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../../utils/introspection/IERC165.sol","id":5733,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5772,"sourceUnit":9819,"src":"144:62:19","symbolAliases":[{"foreign":{"id":5732,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9818,"src":"152:7:19","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":5735,"name":"IERC165","nameLocations":["357:7:19"],"nodeType":"IdentifierPath","referencedDeclaration":9818,"src":"357:7:19"},"id":5736,"nodeType":"InheritanceSpecifier","src":"357:7:19"}],"canonicalName":"IERC1155Receiver","contractDependencies":[],"contractKind":"interface","documentation":{"id":5734,"nodeType":"StructuredDocumentation","src":"208:118:19","text":" @dev Interface that must be implemented by smart contracts in order to receive\n ERC-1155 token transfers."},"fullyImplemented":false,"id":5771,"linearizedBaseContracts":[5771,9818],"name":"IERC1155Receiver","nameLocation":"337:16:19","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5737,"nodeType":"StructuredDocumentation","src":"371:827:19","text":" @dev Handles the receipt of a single ERC-1155 token type. This function is\n called at the end of a `safeTransferFrom` after the balance has been updated.\n NOTE: To accept the transfer, this must return\n `bytes4(keccak256(\"onERC1155Received(address,address,uint256,uint256,bytes)\"))`\n (i.e. 0xf23a6e61, or its own function selector).\n @param operator The address which initiated the transfer (i.e. msg.sender)\n @param from The address which previously owned the token\n @param id The ID of the token being transferred\n @param value The amount of tokens being transferred\n @param data Additional data with no specified format\n @return `bytes4(keccak256(\"onERC1155Received(address,address,uint256,uint256,bytes)\"))` if transfer is allowed"},"functionSelector":"f23a6e61","id":5752,"implemented":false,"kind":"function","modifiers":[],"name":"onERC1155Received","nameLocation":"1212:17:19","nodeType":"FunctionDefinition","parameters":{"id":5748,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5739,"mutability":"mutable","name":"operator","nameLocation":"1247:8:19","nodeType":"VariableDeclaration","scope":5752,"src":"1239:16:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5738,"name":"address","nodeType":"ElementaryTypeName","src":"1239:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5741,"mutability":"mutable","name":"from","nameLocation":"1273:4:19","nodeType":"VariableDeclaration","scope":5752,"src":"1265:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5740,"name":"address","nodeType":"ElementaryTypeName","src":"1265:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5743,"mutability":"mutable","name":"id","nameLocation":"1295:2:19","nodeType":"VariableDeclaration","scope":5752,"src":"1287:10:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5742,"name":"uint256","nodeType":"ElementaryTypeName","src":"1287:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5745,"mutability":"mutable","name":"value","nameLocation":"1315:5:19","nodeType":"VariableDeclaration","scope":5752,"src":"1307:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5744,"name":"uint256","nodeType":"ElementaryTypeName","src":"1307:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5747,"mutability":"mutable","name":"data","nameLocation":"1345:4:19","nodeType":"VariableDeclaration","scope":5752,"src":"1330:19:19","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":5746,"name":"bytes","nodeType":"ElementaryTypeName","src":"1330:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1229:126:19"},"returnParameters":{"id":5751,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5750,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5752,"src":"1374:6:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5749,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1374:6:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1373:8:19"},"scope":5771,"src":"1203:179:19","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":5753,"nodeType":"StructuredDocumentation","src":"1388:995:19","text":" @dev Handles the receipt of a multiple ERC-1155 token types. This function\n is called at the end of a `safeBatchTransferFrom` after the balances have\n been updated.\n NOTE: To accept the transfer(s), this must return\n `bytes4(keccak256(\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\"))`\n (i.e. 0xbc197c81, or its own function selector).\n @param operator The address which initiated the batch transfer (i.e. msg.sender)\n @param from The address which previously owned the token\n @param ids An array containing ids of each token being transferred (order and length must match values array)\n @param values An array containing amounts of each token being transferred (order and length must match ids array)\n @param data Additional data with no specified format\n @return `bytes4(keccak256(\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\"))` if transfer is allowed"},"functionSelector":"bc197c81","id":5770,"implemented":false,"kind":"function","modifiers":[],"name":"onERC1155BatchReceived","nameLocation":"2397:22:19","nodeType":"FunctionDefinition","parameters":{"id":5766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5755,"mutability":"mutable","name":"operator","nameLocation":"2437:8:19","nodeType":"VariableDeclaration","scope":5770,"src":"2429:16:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5754,"name":"address","nodeType":"ElementaryTypeName","src":"2429:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5757,"mutability":"mutable","name":"from","nameLocation":"2463:4:19","nodeType":"VariableDeclaration","scope":5770,"src":"2455:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5756,"name":"address","nodeType":"ElementaryTypeName","src":"2455:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5760,"mutability":"mutable","name":"ids","nameLocation":"2496:3:19","nodeType":"VariableDeclaration","scope":5770,"src":"2477:22:19","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":5758,"name":"uint256","nodeType":"ElementaryTypeName","src":"2477:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5759,"nodeType":"ArrayTypeName","src":"2477:9:19","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":5763,"mutability":"mutable","name":"values","nameLocation":"2528:6:19","nodeType":"VariableDeclaration","scope":5770,"src":"2509:25:19","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":5761,"name":"uint256","nodeType":"ElementaryTypeName","src":"2509:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5762,"nodeType":"ArrayTypeName","src":"2509:9:19","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":5765,"mutability":"mutable","name":"data","nameLocation":"2559:4:19","nodeType":"VariableDeclaration","scope":5770,"src":"2544:19:19","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":5764,"name":"bytes","nodeType":"ElementaryTypeName","src":"2544:5:19","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2419:150:19"},"returnParameters":{"id":5769,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5768,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5770,"src":"2588:6:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5767,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2588:6:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2587:8:19"},"scope":5771,"src":"2388:208:19","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":5772,"src":"327:2271:19","usedErrors":[],"usedEvents":[]}],"src":"118:2481:19"},"id":19},"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol","exportedSymbols":{"ERC1155Holder":[5852],"ERC165":[9806],"IERC1155Receiver":[5771],"IERC165":[9818]},"id":5853,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5773,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"121:24:20"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"../../../utils/introspection/ERC165.sol","id":5776,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5853,"sourceUnit":9807,"src":"147:72:20","symbolAliases":[{"foreign":{"id":5774,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9818,"src":"155:7:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":5775,"name":"ERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9806,"src":"164:6:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol","file":"../IERC1155Receiver.sol","id":5778,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5853,"sourceUnit":5772,"src":"220:57:20","symbolAliases":[{"foreign":{"id":5777,"name":"IERC1155Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5771,"src":"228:16:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":5780,"name":"ERC165","nameLocations":["558:6:20"],"nodeType":"IdentifierPath","referencedDeclaration":9806,"src":"558:6:20"},"id":5781,"nodeType":"InheritanceSpecifier","src":"558:6:20"},{"baseName":{"id":5782,"name":"IERC1155Receiver","nameLocations":["566:16:20"],"nodeType":"IdentifierPath","referencedDeclaration":5771,"src":"566:16:20"},"id":5783,"nodeType":"InheritanceSpecifier","src":"566:16:20"}],"canonicalName":"ERC1155Holder","contractDependencies":[],"contractKind":"contract","documentation":{"id":5779,"nodeType":"StructuredDocumentation","src":"279:243:20","text":" @dev Simple implementation of `IERC1155Receiver` that will allow a contract to hold ERC-1155 tokens.\n IMPORTANT: When inheriting this contract, you must include a way to use the received tokens, otherwise they will be\n stuck."},"fullyImplemented":true,"id":5852,"linearizedBaseContracts":[5852,5771,9806,9818],"name":"ERC1155Holder","nameLocation":"541:13:20","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[9805,9817],"body":{"id":5806,"nodeType":"Block","src":"758:113:20","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":5799,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5794,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5786,"src":"775:11:20","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":5796,"name":"IERC1155Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5771,"src":"795:16:20","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1155Receiver_$5771_$","typeString":"type(contract IERC1155Receiver)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC1155Receiver_$5771_$","typeString":"type(contract IERC1155Receiver)"}],"id":5795,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"790:4:20","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":5797,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"790:22:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC1155Receiver_$5771","typeString":"type(contract IERC1155Receiver)"}},"id":5798,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"813:11:20","memberName":"interfaceId","nodeType":"MemberAccess","src":"790:34:20","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"775:49:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":5802,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5786,"src":"852:11:20","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":5800,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"828:5:20","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC1155Holder_$5852_$","typeString":"type(contract super ERC1155Holder)"}},"id":5801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"834:17:20","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":9805,"src":"828:23:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":5803,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"828:36:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"775:89:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":5793,"id":5805,"nodeType":"Return","src":"768:96:20"}]},"documentation":{"id":5784,"nodeType":"StructuredDocumentation","src":"589:56:20","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":5807,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"659:17:20","nodeType":"FunctionDefinition","overrides":{"id":5790,"nodeType":"OverrideSpecifier","overrides":[{"id":5788,"name":"ERC165","nameLocations":["726:6:20"],"nodeType":"IdentifierPath","referencedDeclaration":9806,"src":"726:6:20"},{"id":5789,"name":"IERC165","nameLocations":["734:7:20"],"nodeType":"IdentifierPath","referencedDeclaration":9818,"src":"734:7:20"}],"src":"717:25:20"},"parameters":{"id":5787,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5786,"mutability":"mutable","name":"interfaceId","nameLocation":"684:11:20","nodeType":"VariableDeclaration","scope":5807,"src":"677:18:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5785,"name":"bytes4","nodeType":"ElementaryTypeName","src":"677:6:20","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"676:20:20"},"returnParameters":{"id":5793,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5792,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5807,"src":"752:4:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5791,"name":"bool","nodeType":"ElementaryTypeName","src":"752:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"751:6:20"},"scope":5852,"src":"650:221:20","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5752],"body":{"id":5827,"nodeType":"Block","src":"1041:55:20","statements":[{"expression":{"expression":{"expression":{"id":5823,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"1058:4:20","typeDescriptions":{"typeIdentifier":"t_contract$_ERC1155Holder_$5852","typeString":"contract ERC1155Holder"}},"id":5824,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1063:17:20","memberName":"onERC1155Received","nodeType":"MemberAccess","referencedDeclaration":5828,"src":"1058:22:20","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (address,address,uint256,uint256,bytes memory) external returns (bytes4)"}},"id":5825,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1081:8:20","memberName":"selector","nodeType":"MemberAccess","src":"1058:31:20","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":5822,"id":5826,"nodeType":"Return","src":"1051:38:20"}]},"functionSelector":"f23a6e61","id":5828,"implemented":true,"kind":"function","modifiers":[],"name":"onERC1155Received","nameLocation":"886:17:20","nodeType":"FunctionDefinition","overrides":{"id":5819,"nodeType":"OverrideSpecifier","overrides":[],"src":"1015:8:20"},"parameters":{"id":5818,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5809,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5828,"src":"913:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5808,"name":"address","nodeType":"ElementaryTypeName","src":"913:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5811,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5828,"src":"930:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5810,"name":"address","nodeType":"ElementaryTypeName","src":"930:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5813,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5828,"src":"947:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5812,"name":"uint256","nodeType":"ElementaryTypeName","src":"947:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5815,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5828,"src":"964:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5814,"name":"uint256","nodeType":"ElementaryTypeName","src":"964:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5817,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5828,"src":"981:12:20","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5816,"name":"bytes","nodeType":"ElementaryTypeName","src":"981:5:20","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"903:96:20"},"returnParameters":{"id":5822,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5821,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5828,"src":"1033:6:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5820,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1033:6:20","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1032:8:20"},"scope":5852,"src":"877:219:20","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[5770],"body":{"id":5850,"nodeType":"Block","src":"1289:60:20","statements":[{"expression":{"expression":{"expression":{"id":5846,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"1306:4:20","typeDescriptions":{"typeIdentifier":"t_contract$_ERC1155Holder_$5852","typeString":"contract ERC1155Holder"}},"id":5847,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1311:22:20","memberName":"onERC1155BatchReceived","nodeType":"MemberAccess","referencedDeclaration":5851,"src":"1306:27:20","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (address,address,uint256[] memory,uint256[] memory,bytes memory) external returns (bytes4)"}},"id":5848,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1334:8:20","memberName":"selector","nodeType":"MemberAccess","src":"1306:36:20","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":5845,"id":5849,"nodeType":"Return","src":"1299:43:20"}]},"functionSelector":"bc197c81","id":5851,"implemented":true,"kind":"function","modifiers":[],"name":"onERC1155BatchReceived","nameLocation":"1111:22:20","nodeType":"FunctionDefinition","overrides":{"id":5842,"nodeType":"OverrideSpecifier","overrides":[],"src":"1263:8:20"},"parameters":{"id":5841,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5830,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5851,"src":"1143:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5829,"name":"address","nodeType":"ElementaryTypeName","src":"1143:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5832,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5851,"src":"1160:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5831,"name":"address","nodeType":"ElementaryTypeName","src":"1160:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5835,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5851,"src":"1177:16:20","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":5833,"name":"uint256","nodeType":"ElementaryTypeName","src":"1177:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5834,"nodeType":"ArrayTypeName","src":"1177:9:20","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":5838,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5851,"src":"1203:16:20","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":5836,"name":"uint256","nodeType":"ElementaryTypeName","src":"1203:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5837,"nodeType":"ArrayTypeName","src":"1203:9:20","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":5840,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5851,"src":"1229:12:20","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5839,"name":"bytes","nodeType":"ElementaryTypeName","src":"1229:5:20","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1133:114:20"},"returnParameters":{"id":5845,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5844,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5851,"src":"1281:6:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":5843,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1281:6:20","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1280:8:20"},"scope":5852,"src":"1102:247:20","stateMutability":"nonpayable","virtual":true,"visibility":"public"}],"scope":5853,"src":"523:828:20","usedErrors":[],"usedEvents":[]}],"src":"121:1231:20"},"id":20},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","exportedSymbols":{"Context":[7128],"ERC20":[6367],"IERC20":[6445],"IERC20Errors":[5634],"IERC20Metadata":[6757]},"id":6368,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5854,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"105:24:21"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"./IERC20.sol","id":5856,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6368,"sourceUnit":6446,"src":"131:36:21","symbolAliases":[{"foreign":{"id":5855,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6445,"src":"139:6:21","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"./extensions/IERC20Metadata.sol","id":5858,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6368,"sourceUnit":6758,"src":"168:63:21","symbolAliases":[{"foreign":{"id":5857,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6757,"src":"176:14:21","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":5860,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6368,"sourceUnit":7129,"src":"232:48:21","symbolAliases":[{"foreign":{"id":5859,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7128,"src":"240:7:21","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"../../interfaces/draft-IERC6093.sol","id":5862,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6368,"sourceUnit":5730,"src":"281:65:21","symbolAliases":[{"foreign":{"id":5861,"name":"IERC20Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5634,"src":"289:12:21","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":5864,"name":"Context","nameLocations":["1133:7:21"],"nodeType":"IdentifierPath","referencedDeclaration":7128,"src":"1133:7:21"},"id":5865,"nodeType":"InheritanceSpecifier","src":"1133:7:21"},{"baseName":{"id":5866,"name":"IERC20","nameLocations":["1142:6:21"],"nodeType":"IdentifierPath","referencedDeclaration":6445,"src":"1142:6:21"},"id":5867,"nodeType":"InheritanceSpecifier","src":"1142:6:21"},{"baseName":{"id":5868,"name":"IERC20Metadata","nameLocations":["1150:14:21"],"nodeType":"IdentifierPath","referencedDeclaration":6757,"src":"1150:14:21"},"id":5869,"nodeType":"InheritanceSpecifier","src":"1150:14:21"},{"baseName":{"id":5870,"name":"IERC20Errors","nameLocations":["1166:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":5634,"src":"1166:12:21"},"id":5871,"nodeType":"InheritanceSpecifier","src":"1166:12:21"}],"canonicalName":"ERC20","contractDependencies":[],"contractKind":"contract","documentation":{"id":5863,"nodeType":"StructuredDocumentation","src":"348:757:21","text":" @dev Implementation of the {IERC20} interface.\n This implementation is agnostic to the way tokens are created. This means\n that a supply mechanism has to be added in a derived contract using {_mint}.\n TIP: For a detailed writeup see our guide\n https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n to implement supply mechanisms].\n The default value of {decimals} is 18. To change this, you should override\n this function so it returns a different value.\n We have followed general OpenZeppelin Contracts guidelines: functions revert\n instead returning `false` on failure. This behavior is nonetheless\n conventional and does not conflict with the expectations of ERC-20\n applications."},"fullyImplemented":true,"id":6367,"linearizedBaseContracts":[6367,5634,6757,6445,7128],"name":"ERC20","nameLocation":"1124:5:21","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":5875,"mutability":"mutable","name":"_balances","nameLocation":"1229:9:21","nodeType":"VariableDeclaration","scope":6367,"src":"1185:53:21","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":5874,"keyName":"account","keyNameLocation":"1201:7:21","keyType":{"id":5872,"name":"address","nodeType":"ElementaryTypeName","src":"1193:7:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1185:35:21","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5873,"name":"uint256","nodeType":"ElementaryTypeName","src":"1212:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":5881,"mutability":"mutable","name":"_allowances","nameLocation":"1317:11:21","nodeType":"VariableDeclaration","scope":6367,"src":"1245:83:21","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":5880,"keyName":"account","keyNameLocation":"1261:7:21","keyType":{"id":5876,"name":"address","nodeType":"ElementaryTypeName","src":"1253:7:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1245:63:21","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5879,"keyName":"spender","keyNameLocation":"1288:7:21","keyType":{"id":5877,"name":"address","nodeType":"ElementaryTypeName","src":"1280:7:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1272:35:21","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5878,"name":"uint256","nodeType":"ElementaryTypeName","src":"1299:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"id":5883,"mutability":"mutable","name":"_totalSupply","nameLocation":"1351:12:21","nodeType":"VariableDeclaration","scope":6367,"src":"1335:28:21","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5882,"name":"uint256","nodeType":"ElementaryTypeName","src":"1335:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":5885,"mutability":"mutable","name":"_name","nameLocation":"1385:5:21","nodeType":"VariableDeclaration","scope":6367,"src":"1370:20:21","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":5884,"name":"string","nodeType":"ElementaryTypeName","src":"1370:6:21","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":5887,"mutability":"mutable","name":"_symbol","nameLocation":"1411:7:21","nodeType":"VariableDeclaration","scope":6367,"src":"1396:22:21","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":5886,"name":"string","nodeType":"ElementaryTypeName","src":"1396:6:21","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":5903,"nodeType":"Block","src":"1638:57:21","statements":[{"expression":{"id":5897,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5895,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5885,"src":"1648:5:21","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5896,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5890,"src":"1656:5:21","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1648:13:21","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":5898,"nodeType":"ExpressionStatement","src":"1648:13:21"},{"expression":{"id":5901,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5899,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5887,"src":"1671:7:21","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5900,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5892,"src":"1681:7:21","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1671:17:21","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":5902,"nodeType":"ExpressionStatement","src":"1671:17:21"}]},"documentation":{"id":5888,"nodeType":"StructuredDocumentation","src":"1425:152:21","text":" @dev Sets the values for {name} and {symbol}.\n Both values are immutable: they can only be set once during construction."},"id":5904,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":5893,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5890,"mutability":"mutable","name":"name_","nameLocation":"1608:5:21","nodeType":"VariableDeclaration","scope":5904,"src":"1594:19:21","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5889,"name":"string","nodeType":"ElementaryTypeName","src":"1594:6:21","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":5892,"mutability":"mutable","name":"symbol_","nameLocation":"1629:7:21","nodeType":"VariableDeclaration","scope":5904,"src":"1615:21:21","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5891,"name":"string","nodeType":"ElementaryTypeName","src":"1615:6:21","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1593:44:21"},"returnParameters":{"id":5894,"nodeType":"ParameterList","parameters":[],"src":"1638:0:21"},"scope":6367,"src":"1582:113:21","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[6744],"body":{"id":5912,"nodeType":"Block","src":"1820:29:21","statements":[{"expression":{"id":5910,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5885,"src":"1837:5:21","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":5909,"id":5911,"nodeType":"Return","src":"1830:12:21"}]},"documentation":{"id":5905,"nodeType":"StructuredDocumentation","src":"1701:54:21","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":5913,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"1769:4:21","nodeType":"FunctionDefinition","parameters":{"id":5906,"nodeType":"ParameterList","parameters":[],"src":"1773:2:21"},"returnParameters":{"id":5909,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5908,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5913,"src":"1805:13:21","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5907,"name":"string","nodeType":"ElementaryTypeName","src":"1805:6:21","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1804:15:21"},"scope":6367,"src":"1760:89:21","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6750],"body":{"id":5921,"nodeType":"Block","src":"2024:31:21","statements":[{"expression":{"id":5919,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5887,"src":"2041:7:21","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":5918,"id":5920,"nodeType":"Return","src":"2034:14:21"}]},"documentation":{"id":5914,"nodeType":"StructuredDocumentation","src":"1855:102:21","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":5922,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"1971:6:21","nodeType":"FunctionDefinition","parameters":{"id":5915,"nodeType":"ParameterList","parameters":[],"src":"1977:2:21"},"returnParameters":{"id":5918,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5917,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5922,"src":"2009:13:21","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5916,"name":"string","nodeType":"ElementaryTypeName","src":"2009:6:21","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2008:15:21"},"scope":6367,"src":"1962:93:21","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6756],"body":{"id":5930,"nodeType":"Block","src":"2744:26:21","statements":[{"expression":{"hexValue":"3138","id":5928,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2761:2:21","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":5927,"id":5929,"nodeType":"Return","src":"2754:9:21"}]},"documentation":{"id":5923,"nodeType":"StructuredDocumentation","src":"2061:622:21","text":" @dev Returns the number of decimals used to get its user representation.\n For example, if `decimals` equals `2`, a balance of `505` tokens should\n be displayed to a user as `5.05` (`505 / 10 ** 2`).\n Tokens usually opt for a value of 18, imitating the relationship between\n Ether and Wei. This is the default value returned by this function, unless\n it's overridden.\n NOTE: This information is only used for _display_ purposes: it in\n no way affects any of the arithmetic of the contract, including\n {IERC20-balanceOf} and {IERC20-transfer}."},"functionSelector":"313ce567","id":5931,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"2697:8:21","nodeType":"FunctionDefinition","parameters":{"id":5924,"nodeType":"ParameterList","parameters":[],"src":"2705:2:21"},"returnParameters":{"id":5927,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5926,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5931,"src":"2737:5:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":5925,"name":"uint8","nodeType":"ElementaryTypeName","src":"2737:5:21","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2736:7:21"},"scope":6367,"src":"2688:82:21","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6394],"body":{"id":5939,"nodeType":"Block","src":"2891:36:21","statements":[{"expression":{"id":5937,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5883,"src":"2908:12:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5936,"id":5938,"nodeType":"Return","src":"2901:19:21"}]},"documentation":{"id":5932,"nodeType":"StructuredDocumentation","src":"2776:49:21","text":" @dev See {IERC20-totalSupply}."},"functionSelector":"18160ddd","id":5940,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"2839:11:21","nodeType":"FunctionDefinition","parameters":{"id":5933,"nodeType":"ParameterList","parameters":[],"src":"2850:2:21"},"returnParameters":{"id":5936,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5935,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5940,"src":"2882:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5934,"name":"uint256","nodeType":"ElementaryTypeName","src":"2882:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2881:9:21"},"scope":6367,"src":"2830:97:21","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6402],"body":{"id":5952,"nodeType":"Block","src":"3059:42:21","statements":[{"expression":{"baseExpression":{"id":5948,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5875,"src":"3076:9:21","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5950,"indexExpression":{"id":5949,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5943,"src":"3086:7:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3076:18:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5947,"id":5951,"nodeType":"Return","src":"3069:25:21"}]},"documentation":{"id":5941,"nodeType":"StructuredDocumentation","src":"2933:47:21","text":" @dev See {IERC20-balanceOf}."},"functionSelector":"70a08231","id":5953,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"2994:9:21","nodeType":"FunctionDefinition","parameters":{"id":5944,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5943,"mutability":"mutable","name":"account","nameLocation":"3012:7:21","nodeType":"VariableDeclaration","scope":5953,"src":"3004:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5942,"name":"address","nodeType":"ElementaryTypeName","src":"3004:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3003:17:21"},"returnParameters":{"id":5947,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5946,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5953,"src":"3050:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5945,"name":"uint256","nodeType":"ElementaryTypeName","src":"3050:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3049:9:21"},"scope":6367,"src":"2985:116:21","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6412],"body":{"id":5976,"nodeType":"Block","src":"3371:103:21","statements":[{"assignments":[5964],"declarations":[{"constant":false,"id":5964,"mutability":"mutable","name":"owner","nameLocation":"3389:5:21","nodeType":"VariableDeclaration","scope":5976,"src":"3381:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5963,"name":"address","nodeType":"ElementaryTypeName","src":"3381:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5967,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5965,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"3397:10:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5966,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3397:12:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3381:28:21"},{"expression":{"arguments":[{"id":5969,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5964,"src":"3429:5:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5970,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5956,"src":"3436:2:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5971,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5958,"src":"3440:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5968,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6097,"src":"3419:9:21","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3419:27:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5973,"nodeType":"ExpressionStatement","src":"3419:27:21"},{"expression":{"hexValue":"74727565","id":5974,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3463:4:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":5962,"id":5975,"nodeType":"Return","src":"3456:11:21"}]},"documentation":{"id":5954,"nodeType":"StructuredDocumentation","src":"3107:184:21","text":" @dev See {IERC20-transfer}.\n Requirements:\n - `to` cannot be the zero address.\n - the caller must have a balance of at least `value`."},"functionSelector":"a9059cbb","id":5977,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"3305:8:21","nodeType":"FunctionDefinition","parameters":{"id":5959,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5956,"mutability":"mutable","name":"to","nameLocation":"3322:2:21","nodeType":"VariableDeclaration","scope":5977,"src":"3314:10:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5955,"name":"address","nodeType":"ElementaryTypeName","src":"3314:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5958,"mutability":"mutable","name":"value","nameLocation":"3334:5:21","nodeType":"VariableDeclaration","scope":5977,"src":"3326:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5957,"name":"uint256","nodeType":"ElementaryTypeName","src":"3326:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3313:27:21"},"returnParameters":{"id":5962,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5961,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5977,"src":"3365:4:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5960,"name":"bool","nodeType":"ElementaryTypeName","src":"3365:4:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3364:6:21"},"scope":6367,"src":"3296:178:21","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[6422],"body":{"id":5993,"nodeType":"Block","src":"3621:51:21","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":5987,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5881,"src":"3638:11:21","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":5989,"indexExpression":{"id":5988,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5980,"src":"3650:5:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3638:18:21","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5991,"indexExpression":{"id":5990,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5982,"src":"3657:7:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3638:27:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5986,"id":5992,"nodeType":"Return","src":"3631:34:21"}]},"documentation":{"id":5978,"nodeType":"StructuredDocumentation","src":"3480:47:21","text":" @dev See {IERC20-allowance}."},"functionSelector":"dd62ed3e","id":5994,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"3541:9:21","nodeType":"FunctionDefinition","parameters":{"id":5983,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5980,"mutability":"mutable","name":"owner","nameLocation":"3559:5:21","nodeType":"VariableDeclaration","scope":5994,"src":"3551:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5979,"name":"address","nodeType":"ElementaryTypeName","src":"3551:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5982,"mutability":"mutable","name":"spender","nameLocation":"3574:7:21","nodeType":"VariableDeclaration","scope":5994,"src":"3566:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5981,"name":"address","nodeType":"ElementaryTypeName","src":"3566:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3550:32:21"},"returnParameters":{"id":5986,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5985,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5994,"src":"3612:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5984,"name":"uint256","nodeType":"ElementaryTypeName","src":"3612:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3611:9:21"},"scope":6367,"src":"3532:140:21","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6432],"body":{"id":6017,"nodeType":"Block","src":"4058:107:21","statements":[{"assignments":[6005],"declarations":[{"constant":false,"id":6005,"mutability":"mutable","name":"owner","nameLocation":"4076:5:21","nodeType":"VariableDeclaration","scope":6017,"src":"4068:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6004,"name":"address","nodeType":"ElementaryTypeName","src":"4068:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":6008,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6006,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"4084:10:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":6007,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4084:12:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4068:28:21"},{"expression":{"arguments":[{"id":6010,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6005,"src":"4115:5:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6011,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5997,"src":"4122:7:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6012,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5999,"src":"4131:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6009,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[6258,6318],"referencedDeclaration":6258,"src":"4106:8:21","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4106:31:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6014,"nodeType":"ExpressionStatement","src":"4106:31:21"},{"expression":{"hexValue":"74727565","id":6015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4154:4:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":6003,"id":6016,"nodeType":"Return","src":"4147:11:21"}]},"documentation":{"id":5995,"nodeType":"StructuredDocumentation","src":"3678:296:21","text":" @dev See {IERC20-approve}.\n NOTE: If `value` is the maximum `uint256`, the allowance is not updated on\n `transferFrom`. This is semantically equivalent to an infinite approval.\n Requirements:\n - `spender` cannot be the zero address."},"functionSelector":"095ea7b3","id":6018,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"3988:7:21","nodeType":"FunctionDefinition","parameters":{"id":6000,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5997,"mutability":"mutable","name":"spender","nameLocation":"4004:7:21","nodeType":"VariableDeclaration","scope":6018,"src":"3996:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5996,"name":"address","nodeType":"ElementaryTypeName","src":"3996:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5999,"mutability":"mutable","name":"value","nameLocation":"4021:5:21","nodeType":"VariableDeclaration","scope":6018,"src":"4013:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5998,"name":"uint256","nodeType":"ElementaryTypeName","src":"4013:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3995:32:21"},"returnParameters":{"id":6003,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6002,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6018,"src":"4052:4:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6001,"name":"bool","nodeType":"ElementaryTypeName","src":"4052:4:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4051:6:21"},"scope":6367,"src":"3979:186:21","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[6444],"body":{"id":6049,"nodeType":"Block","src":"4850:151:21","statements":[{"assignments":[6031],"declarations":[{"constant":false,"id":6031,"mutability":"mutable","name":"spender","nameLocation":"4868:7:21","nodeType":"VariableDeclaration","scope":6049,"src":"4860:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6030,"name":"address","nodeType":"ElementaryTypeName","src":"4860:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":6034,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6032,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7110,"src":"4878:10:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":6033,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4878:12:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4860:30:21"},{"expression":{"arguments":[{"id":6036,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6021,"src":"4916:4:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6037,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6031,"src":"4922:7:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6038,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6025,"src":"4931:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6035,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6366,"src":"4900:15:21","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6039,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4900:37:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6040,"nodeType":"ExpressionStatement","src":"4900:37:21"},{"expression":{"arguments":[{"id":6042,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6021,"src":"4957:4:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6043,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6023,"src":"4963:2:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6044,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6025,"src":"4967:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6041,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6097,"src":"4947:9:21","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6045,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4947:26:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6046,"nodeType":"ExpressionStatement","src":"4947:26:21"},{"expression":{"hexValue":"74727565","id":6047,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4990:4:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":6029,"id":6048,"nodeType":"Return","src":"4983:11:21"}]},"documentation":{"id":6019,"nodeType":"StructuredDocumentation","src":"4171:581:21","text":" @dev See {IERC20-transferFrom}.\n Skips emitting an {Approval} event indicating an allowance update. This is not\n required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].\n NOTE: Does not update the allowance if the current allowance\n is the maximum `uint256`.\n Requirements:\n - `from` and `to` cannot be the zero address.\n - `from` must have a balance of at least `value`.\n - the caller must have allowance for ``from``'s tokens of at least\n `value`."},"functionSelector":"23b872dd","id":6050,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"4766:12:21","nodeType":"FunctionDefinition","parameters":{"id":6026,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6021,"mutability":"mutable","name":"from","nameLocation":"4787:4:21","nodeType":"VariableDeclaration","scope":6050,"src":"4779:12:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6020,"name":"address","nodeType":"ElementaryTypeName","src":"4779:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6023,"mutability":"mutable","name":"to","nameLocation":"4801:2:21","nodeType":"VariableDeclaration","scope":6050,"src":"4793:10:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6022,"name":"address","nodeType":"ElementaryTypeName","src":"4793:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6025,"mutability":"mutable","name":"value","nameLocation":"4813:5:21","nodeType":"VariableDeclaration","scope":6050,"src":"4805:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6024,"name":"uint256","nodeType":"ElementaryTypeName","src":"4805:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4778:41:21"},"returnParameters":{"id":6029,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6028,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6050,"src":"4844:4:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6027,"name":"bool","nodeType":"ElementaryTypeName","src":"4844:4:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4843:6:21"},"scope":6367,"src":"4757:244:21","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":6096,"nodeType":"Block","src":"5443:231:21","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6065,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6060,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6053,"src":"5457:4:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6063,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5473:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6062,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5465:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6061,"name":"address","nodeType":"ElementaryTypeName","src":"5465:7:21","typeDescriptions":{}}},"id":6064,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5465:10:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5457:18:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6074,"nodeType":"IfStatement","src":"5453:86:21","trueBody":{"id":6073,"nodeType":"Block","src":"5477:62:21","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":6069,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5525:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6068,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5517:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6067,"name":"address","nodeType":"ElementaryTypeName","src":"5517:7:21","typeDescriptions":{}}},"id":6070,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5517:10:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6066,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5609,"src":"5498:18:21","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":6071,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5498:30:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6072,"nodeType":"RevertStatement","src":"5491:37:21"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6075,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6055,"src":"5552:2:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6078,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5566:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6077,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5558:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6076,"name":"address","nodeType":"ElementaryTypeName","src":"5558:7:21","typeDescriptions":{}}},"id":6079,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5558:10:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5552:16:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6089,"nodeType":"IfStatement","src":"5548:86:21","trueBody":{"id":6088,"nodeType":"Block","src":"5570:64:21","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":6084,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5620:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6083,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5612:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6082,"name":"address","nodeType":"ElementaryTypeName","src":"5612:7:21","typeDescriptions":{}}},"id":6085,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5612:10:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6081,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5614,"src":"5591:20:21","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":6086,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5591:32:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6087,"nodeType":"RevertStatement","src":"5584:39:21"}]}},{"expression":{"arguments":[{"id":6091,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6053,"src":"5651:4:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6092,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6055,"src":"5657:2:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6093,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6057,"src":"5661:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6090,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6174,"src":"5643:7:21","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6094,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5643:24:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6095,"nodeType":"ExpressionStatement","src":"5643:24:21"}]},"documentation":{"id":6051,"nodeType":"StructuredDocumentation","src":"5007:362:21","text":" @dev Moves a `value` amount of tokens from `from` to `to`.\n This internal function is equivalent to {transfer}, and can be used to\n e.g. implement automatic token fees, slashing mechanisms, etc.\n Emits a {Transfer} event.\n NOTE: This function is not virtual, {_update} should be overridden instead."},"id":6097,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"5383:9:21","nodeType":"FunctionDefinition","parameters":{"id":6058,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6053,"mutability":"mutable","name":"from","nameLocation":"5401:4:21","nodeType":"VariableDeclaration","scope":6097,"src":"5393:12:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6052,"name":"address","nodeType":"ElementaryTypeName","src":"5393:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6055,"mutability":"mutable","name":"to","nameLocation":"5415:2:21","nodeType":"VariableDeclaration","scope":6097,"src":"5407:10:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6054,"name":"address","nodeType":"ElementaryTypeName","src":"5407:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6057,"mutability":"mutable","name":"value","nameLocation":"5427:5:21","nodeType":"VariableDeclaration","scope":6097,"src":"5419:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6056,"name":"uint256","nodeType":"ElementaryTypeName","src":"5419:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5392:41:21"},"returnParameters":{"id":6059,"nodeType":"ParameterList","parameters":[],"src":"5443:0:21"},"scope":6367,"src":"5374:300:21","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6173,"nodeType":"Block","src":"6064:1032:21","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6112,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6107,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6100,"src":"6078:4:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6110,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6094:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6109,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6086:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6108,"name":"address","nodeType":"ElementaryTypeName","src":"6086:7:21","typeDescriptions":{}}},"id":6111,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6086:10:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6078:18:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":6144,"nodeType":"Block","src":"6252:362:21","statements":[{"assignments":[6119],"declarations":[{"constant":false,"id":6119,"mutability":"mutable","name":"fromBalance","nameLocation":"6274:11:21","nodeType":"VariableDeclaration","scope":6144,"src":"6266:19:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6118,"name":"uint256","nodeType":"ElementaryTypeName","src":"6266:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6123,"initialValue":{"baseExpression":{"id":6120,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5875,"src":"6288:9:21","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":6122,"indexExpression":{"id":6121,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6100,"src":"6298:4:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6288:15:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6266:37:21"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6124,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6119,"src":"6321:11:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":6125,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6104,"src":"6335:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6321:19:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6134,"nodeType":"IfStatement","src":"6317:115:21","trueBody":{"id":6133,"nodeType":"Block","src":"6342:90:21","statements":[{"errorCall":{"arguments":[{"id":6128,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6100,"src":"6392:4:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6129,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6119,"src":"6398:11:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6130,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6104,"src":"6411:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6127,"name":"ERC20InsufficientBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5604,"src":"6367:24:21","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":6131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6367:50:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6132,"nodeType":"RevertStatement","src":"6360:57:21"}]}},{"id":6143,"nodeType":"UncheckedBlock","src":"6445:159:21","statements":[{"expression":{"id":6141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":6135,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5875,"src":"6552:9:21","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":6137,"indexExpression":{"id":6136,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6100,"src":"6562:4:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6552:15:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6138,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6119,"src":"6570:11:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":6139,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6104,"src":"6584:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6570:19:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6552:37:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6142,"nodeType":"ExpressionStatement","src":"6552:37:21"}]}]},"id":6145,"nodeType":"IfStatement","src":"6074:540:21","trueBody":{"id":6117,"nodeType":"Block","src":"6098:148:21","statements":[{"expression":{"id":6115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6113,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5883,"src":"6214:12:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":6114,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6104,"src":"6230:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6214:21:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6116,"nodeType":"ExpressionStatement","src":"6214:21:21"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6146,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6102,"src":"6628:2:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6642:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6148,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6634:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6147,"name":"address","nodeType":"ElementaryTypeName","src":"6634:7:21","typeDescriptions":{}}},"id":6150,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6634:10:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6628:16:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":6165,"nodeType":"Block","src":"6843:206:21","statements":[{"id":6164,"nodeType":"UncheckedBlock","src":"6857:182:21","statements":[{"expression":{"id":6162,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":6158,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5875,"src":"7002:9:21","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":6160,"indexExpression":{"id":6159,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6102,"src":"7012:2:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7002:13:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":6161,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6104,"src":"7019:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7002:22:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6163,"nodeType":"ExpressionStatement","src":"7002:22:21"}]}]},"id":6166,"nodeType":"IfStatement","src":"6624:425:21","trueBody":{"id":6157,"nodeType":"Block","src":"6646:191:21","statements":[{"id":6156,"nodeType":"UncheckedBlock","src":"6660:167:21","statements":[{"expression":{"id":6154,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6152,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5883,"src":"6791:12:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":6153,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6104,"src":"6807:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6791:21:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6155,"nodeType":"ExpressionStatement","src":"6791:21:21"}]}]}},{"eventCall":{"arguments":[{"id":6168,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6100,"src":"7073:4:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6169,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6102,"src":"7079:2:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6170,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6104,"src":"7083:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6167,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6379,"src":"7064:8:21","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6171,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7064:25:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6172,"nodeType":"EmitStatement","src":"7059:30:21"}]},"documentation":{"id":6098,"nodeType":"StructuredDocumentation","src":"5680:304:21","text":" @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`\n (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding\n this function.\n Emits a {Transfer} event."},"id":6174,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"5998:7:21","nodeType":"FunctionDefinition","parameters":{"id":6105,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6100,"mutability":"mutable","name":"from","nameLocation":"6014:4:21","nodeType":"VariableDeclaration","scope":6174,"src":"6006:12:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6099,"name":"address","nodeType":"ElementaryTypeName","src":"6006:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6102,"mutability":"mutable","name":"to","nameLocation":"6028:2:21","nodeType":"VariableDeclaration","scope":6174,"src":"6020:10:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6101,"name":"address","nodeType":"ElementaryTypeName","src":"6020:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6104,"mutability":"mutable","name":"value","nameLocation":"6040:5:21","nodeType":"VariableDeclaration","scope":6174,"src":"6032:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6103,"name":"uint256","nodeType":"ElementaryTypeName","src":"6032:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6005:41:21"},"returnParameters":{"id":6106,"nodeType":"ParameterList","parameters":[],"src":"6064:0:21"},"scope":6367,"src":"5989:1107:21","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":6206,"nodeType":"Block","src":"7495:152:21","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6182,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6177,"src":"7509:7:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7528:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6184,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7520:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6183,"name":"address","nodeType":"ElementaryTypeName","src":"7520:7:21","typeDescriptions":{}}},"id":6186,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7520:10:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7509:21:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6196,"nodeType":"IfStatement","src":"7505:91:21","trueBody":{"id":6195,"nodeType":"Block","src":"7532:64:21","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":6191,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7582:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6190,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7574:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6189,"name":"address","nodeType":"ElementaryTypeName","src":"7574:7:21","typeDescriptions":{}}},"id":6192,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7574:10:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6188,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5614,"src":"7553:20:21","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":6193,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7553:32:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6194,"nodeType":"RevertStatement","src":"7546:39:21"}]}},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":6200,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7621:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6199,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7613:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6198,"name":"address","nodeType":"ElementaryTypeName","src":"7613:7:21","typeDescriptions":{}}},"id":6201,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7613:10:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6202,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6177,"src":"7625:7:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6203,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6179,"src":"7634:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6197,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6174,"src":"7605:7:21","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6204,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7605:35:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6205,"nodeType":"ExpressionStatement","src":"7605:35:21"}]},"documentation":{"id":6175,"nodeType":"StructuredDocumentation","src":"7102:332:21","text":" @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).\n Relies on the `_update` mechanism\n Emits a {Transfer} event with `from` set to the zero address.\n NOTE: This function is not virtual, {_update} should be overridden instead."},"id":6207,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"7448:5:21","nodeType":"FunctionDefinition","parameters":{"id":6180,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6177,"mutability":"mutable","name":"account","nameLocation":"7462:7:21","nodeType":"VariableDeclaration","scope":6207,"src":"7454:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6176,"name":"address","nodeType":"ElementaryTypeName","src":"7454:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6179,"mutability":"mutable","name":"value","nameLocation":"7479:5:21","nodeType":"VariableDeclaration","scope":6207,"src":"7471:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6178,"name":"uint256","nodeType":"ElementaryTypeName","src":"7471:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7453:32:21"},"returnParameters":{"id":6181,"nodeType":"ParameterList","parameters":[],"src":"7495:0:21"},"scope":6367,"src":"7439:208:21","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6239,"nodeType":"Block","src":"8021:150:21","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6220,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6215,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6210,"src":"8035:7:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6218,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8054:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6217,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8046:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6216,"name":"address","nodeType":"ElementaryTypeName","src":"8046:7:21","typeDescriptions":{}}},"id":6219,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8046:10:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8035:21:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6229,"nodeType":"IfStatement","src":"8031:89:21","trueBody":{"id":6228,"nodeType":"Block","src":"8058:62:21","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":6224,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8106:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6223,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8098:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6222,"name":"address","nodeType":"ElementaryTypeName","src":"8098:7:21","typeDescriptions":{}}},"id":6225,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8098:10:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6221,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5609,"src":"8079:18:21","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":6226,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8079:30:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6227,"nodeType":"RevertStatement","src":"8072:37:21"}]}},{"expression":{"arguments":[{"id":6231,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6210,"src":"8137:7:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":6234,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8154:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6233,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8146:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6232,"name":"address","nodeType":"ElementaryTypeName","src":"8146:7:21","typeDescriptions":{}}},"id":6235,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8146:10:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6236,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6212,"src":"8158:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6230,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6174,"src":"8129:7:21","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6237,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8129:35:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6238,"nodeType":"ExpressionStatement","src":"8129:35:21"}]},"documentation":{"id":6208,"nodeType":"StructuredDocumentation","src":"7653:307:21","text":" @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.\n Relies on the `_update` mechanism.\n Emits a {Transfer} event with `to` set to the zero address.\n NOTE: This function is not virtual, {_update} should be overridden instead"},"id":6240,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"7974:5:21","nodeType":"FunctionDefinition","parameters":{"id":6213,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6210,"mutability":"mutable","name":"account","nameLocation":"7988:7:21","nodeType":"VariableDeclaration","scope":6240,"src":"7980:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6209,"name":"address","nodeType":"ElementaryTypeName","src":"7980:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6212,"mutability":"mutable","name":"value","nameLocation":"8005:5:21","nodeType":"VariableDeclaration","scope":6240,"src":"7997:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6211,"name":"uint256","nodeType":"ElementaryTypeName","src":"7997:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7979:32:21"},"returnParameters":{"id":6214,"nodeType":"ParameterList","parameters":[],"src":"8021:0:21"},"scope":6367,"src":"7965:206:21","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6257,"nodeType":"Block","src":"8781:54:21","statements":[{"expression":{"arguments":[{"id":6251,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6243,"src":"8800:5:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6252,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6245,"src":"8807:7:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6253,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6247,"src":"8816:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":6254,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8823:4:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":6250,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[6258,6318],"referencedDeclaration":6318,"src":"8791:8:21","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":6255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8791:37:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6256,"nodeType":"ExpressionStatement","src":"8791:37:21"}]},"documentation":{"id":6241,"nodeType":"StructuredDocumentation","src":"8177:525:21","text":" @dev Sets `value` as the allowance of `spender` over the `owner`'s tokens.\n This internal function is equivalent to `approve`, and can be used to\n e.g. set automatic allowances for certain subsystems, etc.\n Emits an {Approval} event.\n Requirements:\n - `owner` cannot be the zero address.\n - `spender` cannot be the zero address.\n Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument."},"id":6258,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"8716:8:21","nodeType":"FunctionDefinition","parameters":{"id":6248,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6243,"mutability":"mutable","name":"owner","nameLocation":"8733:5:21","nodeType":"VariableDeclaration","scope":6258,"src":"8725:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6242,"name":"address","nodeType":"ElementaryTypeName","src":"8725:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6245,"mutability":"mutable","name":"spender","nameLocation":"8748:7:21","nodeType":"VariableDeclaration","scope":6258,"src":"8740:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6244,"name":"address","nodeType":"ElementaryTypeName","src":"8740:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6247,"mutability":"mutable","name":"value","nameLocation":"8765:5:21","nodeType":"VariableDeclaration","scope":6258,"src":"8757:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6246,"name":"uint256","nodeType":"ElementaryTypeName","src":"8757:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8724:47:21"},"returnParameters":{"id":6249,"nodeType":"ParameterList","parameters":[],"src":"8781:0:21"},"scope":6367,"src":"8707:128:21","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6317,"nodeType":"Block","src":"9780:334:21","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6270,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6261,"src":"9794:5:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6273,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9811:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6272,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9803:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6271,"name":"address","nodeType":"ElementaryTypeName","src":"9803:7:21","typeDescriptions":{}}},"id":6274,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9803:10:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9794:19:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6284,"nodeType":"IfStatement","src":"9790:89:21","trueBody":{"id":6283,"nodeType":"Block","src":"9815:64:21","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":6279,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9865:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6278,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9857:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6277,"name":"address","nodeType":"ElementaryTypeName","src":"9857:7:21","typeDescriptions":{}}},"id":6280,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9857:10:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6276,"name":"ERC20InvalidApprover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5628,"src":"9836:20:21","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":6281,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9836:32:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6282,"nodeType":"RevertStatement","src":"9829:39:21"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6285,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6263,"src":"9892:7:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6288,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9911:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6287,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9903:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6286,"name":"address","nodeType":"ElementaryTypeName","src":"9903:7:21","typeDescriptions":{}}},"id":6289,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9903:10:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9892:21:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6299,"nodeType":"IfStatement","src":"9888:90:21","trueBody":{"id":6298,"nodeType":"Block","src":"9915:63:21","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":6294,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9964:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6293,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9956:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6292,"name":"address","nodeType":"ElementaryTypeName","src":"9956:7:21","typeDescriptions":{}}},"id":6295,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9956:10:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6291,"name":"ERC20InvalidSpender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5633,"src":"9936:19:21","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":6296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9936:31:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6297,"nodeType":"RevertStatement","src":"9929:38:21"}]}},{"expression":{"id":6306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":6300,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5881,"src":"9987:11:21","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":6303,"indexExpression":{"id":6301,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6261,"src":"9999:5:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9987:18:21","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":6304,"indexExpression":{"id":6302,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6263,"src":"10006:7:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9987:27:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":6305,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6265,"src":"10017:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9987:35:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6307,"nodeType":"ExpressionStatement","src":"9987:35:21"},{"condition":{"id":6308,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6267,"src":"10036:9:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6316,"nodeType":"IfStatement","src":"10032:76:21","trueBody":{"id":6315,"nodeType":"Block","src":"10047:61:21","statements":[{"eventCall":{"arguments":[{"id":6310,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6261,"src":"10075:5:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6311,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6263,"src":"10082:7:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6312,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6265,"src":"10091:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6309,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6388,"src":"10066:8:21","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6313,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10066:31:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6314,"nodeType":"EmitStatement","src":"10061:36:21"}]}}]},"documentation":{"id":6259,"nodeType":"StructuredDocumentation","src":"8841:836:21","text":" @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.\n By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by\n `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any\n `Approval` event during `transferFrom` operations.\n Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to\n true using the following override:\n ```solidity\n function _approve(address owner, address spender, uint256 value, bool) internal virtual override {\n super._approve(owner, spender, value, true);\n }\n ```\n Requirements are the same as {_approve}."},"id":6318,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"9691:8:21","nodeType":"FunctionDefinition","parameters":{"id":6268,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6261,"mutability":"mutable","name":"owner","nameLocation":"9708:5:21","nodeType":"VariableDeclaration","scope":6318,"src":"9700:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6260,"name":"address","nodeType":"ElementaryTypeName","src":"9700:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6263,"mutability":"mutable","name":"spender","nameLocation":"9723:7:21","nodeType":"VariableDeclaration","scope":6318,"src":"9715:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6262,"name":"address","nodeType":"ElementaryTypeName","src":"9715:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6265,"mutability":"mutable","name":"value","nameLocation":"9740:5:21","nodeType":"VariableDeclaration","scope":6318,"src":"9732:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6264,"name":"uint256","nodeType":"ElementaryTypeName","src":"9732:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6267,"mutability":"mutable","name":"emitEvent","nameLocation":"9752:9:21","nodeType":"VariableDeclaration","scope":6318,"src":"9747:14:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6266,"name":"bool","nodeType":"ElementaryTypeName","src":"9747:4:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9699:63:21"},"returnParameters":{"id":6269,"nodeType":"ParameterList","parameters":[],"src":"9780:0:21"},"scope":6367,"src":"9682:432:21","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":6365,"nodeType":"Block","src":"10485:387:21","statements":[{"assignments":[6329],"declarations":[{"constant":false,"id":6329,"mutability":"mutable","name":"currentAllowance","nameLocation":"10503:16:21","nodeType":"VariableDeclaration","scope":6365,"src":"10495:24:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6328,"name":"uint256","nodeType":"ElementaryTypeName","src":"10495:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6334,"initialValue":{"arguments":[{"id":6331,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6321,"src":"10532:5:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6332,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6323,"src":"10539:7:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":6330,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5994,"src":"10522:9:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":6333,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10522:25:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10495:52:21"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6335,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6329,"src":"10561:16:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"id":6338,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10585:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":6337,"name":"uint256","nodeType":"ElementaryTypeName","src":"10585:7:21","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":6336,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"10580:4:21","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6339,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10580:13:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":6340,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10594:3:21","memberName":"max","nodeType":"MemberAccess","src":"10580:17:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10561:36:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6364,"nodeType":"IfStatement","src":"10557:309:21","trueBody":{"id":6363,"nodeType":"Block","src":"10599:267:21","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6342,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6329,"src":"10617:16:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":6343,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6325,"src":"10636:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10617:24:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6352,"nodeType":"IfStatement","src":"10613:130:21","trueBody":{"id":6351,"nodeType":"Block","src":"10643:100:21","statements":[{"errorCall":{"arguments":[{"id":6346,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6323,"src":"10695:7:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6347,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6329,"src":"10704:16:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6348,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6325,"src":"10722:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6345,"name":"ERC20InsufficientAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5623,"src":"10668:26:21","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":6349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10668:60:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6350,"nodeType":"RevertStatement","src":"10661:67:21"}]}},{"id":6362,"nodeType":"UncheckedBlock","src":"10756:100:21","statements":[{"expression":{"arguments":[{"id":6354,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6321,"src":"10793:5:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6355,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6323,"src":"10800:7:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6356,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6329,"src":"10809:16:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":6357,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6325,"src":"10828:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10809:24:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":6359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10835:5:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":6353,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[6258,6318],"referencedDeclaration":6318,"src":"10784:8:21","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":6360,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10784:57:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6361,"nodeType":"ExpressionStatement","src":"10784:57:21"}]}]}}]},"documentation":{"id":6319,"nodeType":"StructuredDocumentation","src":"10120:271:21","text":" @dev Updates `owner`'s allowance for `spender` based on spent `value`.\n Does not update the allowance value in case of infinite allowance.\n Revert if not enough allowance is available.\n Does not emit an {Approval} event."},"id":6366,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"10405:15:21","nodeType":"FunctionDefinition","parameters":{"id":6326,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6321,"mutability":"mutable","name":"owner","nameLocation":"10429:5:21","nodeType":"VariableDeclaration","scope":6366,"src":"10421:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6320,"name":"address","nodeType":"ElementaryTypeName","src":"10421:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6323,"mutability":"mutable","name":"spender","nameLocation":"10444:7:21","nodeType":"VariableDeclaration","scope":6366,"src":"10436:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6322,"name":"address","nodeType":"ElementaryTypeName","src":"10436:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6325,"mutability":"mutable","name":"value","nameLocation":"10461:5:21","nodeType":"VariableDeclaration","scope":6366,"src":"10453:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6324,"name":"uint256","nodeType":"ElementaryTypeName","src":"10453:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10420:47:21"},"returnParameters":{"id":6327,"nodeType":"ParameterList","parameters":[],"src":"10485:0:21"},"scope":6367,"src":"10396:476:21","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":6368,"src":"1106:9768:21","usedErrors":[5604,5609,5614,5623,5628,5633],"usedEvents":[6379,6388]}],"src":"105:10770:21"},"id":21},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[6445]},"id":6446,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6369,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:22"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":6370,"nodeType":"StructuredDocumentation","src":"132:71:22","text":" @dev Interface of the ERC-20 standard as defined in the ERC."},"fullyImplemented":false,"id":6445,"linearizedBaseContracts":[6445],"name":"IERC20","nameLocation":"214:6:22","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":6371,"nodeType":"StructuredDocumentation","src":"227:158:22","text":" @dev Emitted when `value` tokens are moved from one account (`from`) to\n another (`to`).\n Note that `value` may be zero."},"eventSelector":"ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","id":6379,"name":"Transfer","nameLocation":"396:8:22","nodeType":"EventDefinition","parameters":{"id":6378,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6373,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"421:4:22","nodeType":"VariableDeclaration","scope":6379,"src":"405:20:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6372,"name":"address","nodeType":"ElementaryTypeName","src":"405:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6375,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"443:2:22","nodeType":"VariableDeclaration","scope":6379,"src":"427:18:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6374,"name":"address","nodeType":"ElementaryTypeName","src":"427:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6377,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"455:5:22","nodeType":"VariableDeclaration","scope":6379,"src":"447:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6376,"name":"uint256","nodeType":"ElementaryTypeName","src":"447:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"404:57:22"},"src":"390:72:22"},{"anonymous":false,"documentation":{"id":6380,"nodeType":"StructuredDocumentation","src":"468:148:22","text":" @dev Emitted when the allowance of a `spender` for an `owner` is set by\n a call to {approve}. `value` is the new allowance."},"eventSelector":"8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925","id":6388,"name":"Approval","nameLocation":"627:8:22","nodeType":"EventDefinition","parameters":{"id":6387,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6382,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"652:5:22","nodeType":"VariableDeclaration","scope":6388,"src":"636:21:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6381,"name":"address","nodeType":"ElementaryTypeName","src":"636:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6384,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"675:7:22","nodeType":"VariableDeclaration","scope":6388,"src":"659:23:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6383,"name":"address","nodeType":"ElementaryTypeName","src":"659:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6386,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"692:5:22","nodeType":"VariableDeclaration","scope":6388,"src":"684:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6385,"name":"uint256","nodeType":"ElementaryTypeName","src":"684:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"635:63:22"},"src":"621:78:22"},{"documentation":{"id":6389,"nodeType":"StructuredDocumentation","src":"705:65:22","text":" @dev Returns the value of tokens in existence."},"functionSelector":"18160ddd","id":6394,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"784:11:22","nodeType":"FunctionDefinition","parameters":{"id":6390,"nodeType":"ParameterList","parameters":[],"src":"795:2:22"},"returnParameters":{"id":6393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6392,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6394,"src":"821:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6391,"name":"uint256","nodeType":"ElementaryTypeName","src":"821:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"820:9:22"},"scope":6445,"src":"775:55:22","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6395,"nodeType":"StructuredDocumentation","src":"836:71:22","text":" @dev Returns the value of tokens owned by `account`."},"functionSelector":"70a08231","id":6402,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"921:9:22","nodeType":"FunctionDefinition","parameters":{"id":6398,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6397,"mutability":"mutable","name":"account","nameLocation":"939:7:22","nodeType":"VariableDeclaration","scope":6402,"src":"931:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6396,"name":"address","nodeType":"ElementaryTypeName","src":"931:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"930:17:22"},"returnParameters":{"id":6401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6400,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6402,"src":"971:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6399,"name":"uint256","nodeType":"ElementaryTypeName","src":"971:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"970:9:22"},"scope":6445,"src":"912:68:22","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6403,"nodeType":"StructuredDocumentation","src":"986:213:22","text":" @dev Moves a `value` amount of tokens from the caller's account to `to`.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"a9059cbb","id":6412,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1213:8:22","nodeType":"FunctionDefinition","parameters":{"id":6408,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6405,"mutability":"mutable","name":"to","nameLocation":"1230:2:22","nodeType":"VariableDeclaration","scope":6412,"src":"1222:10:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6404,"name":"address","nodeType":"ElementaryTypeName","src":"1222:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6407,"mutability":"mutable","name":"value","nameLocation":"1242:5:22","nodeType":"VariableDeclaration","scope":6412,"src":"1234:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6406,"name":"uint256","nodeType":"ElementaryTypeName","src":"1234:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1221:27:22"},"returnParameters":{"id":6411,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6410,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6412,"src":"1267:4:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6409,"name":"bool","nodeType":"ElementaryTypeName","src":"1267:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1266:6:22"},"scope":6445,"src":"1204:69:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6413,"nodeType":"StructuredDocumentation","src":"1279:264:22","text":" @dev Returns the remaining number of tokens that `spender` will be\n allowed to spend on behalf of `owner` through {transferFrom}. This is\n zero by default.\n This value changes when {approve} or {transferFrom} are called."},"functionSelector":"dd62ed3e","id":6422,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1557:9:22","nodeType":"FunctionDefinition","parameters":{"id":6418,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6415,"mutability":"mutable","name":"owner","nameLocation":"1575:5:22","nodeType":"VariableDeclaration","scope":6422,"src":"1567:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6414,"name":"address","nodeType":"ElementaryTypeName","src":"1567:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6417,"mutability":"mutable","name":"spender","nameLocation":"1590:7:22","nodeType":"VariableDeclaration","scope":6422,"src":"1582:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6416,"name":"address","nodeType":"ElementaryTypeName","src":"1582:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1566:32:22"},"returnParameters":{"id":6421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6420,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6422,"src":"1622:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6419,"name":"uint256","nodeType":"ElementaryTypeName","src":"1622:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1621:9:22"},"scope":6445,"src":"1548:83:22","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6423,"nodeType":"StructuredDocumentation","src":"1637:667:22","text":" @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n caller's tokens.\n Returns a boolean value indicating whether the operation succeeded.\n IMPORTANT: Beware that changing an allowance with this method brings the risk\n that someone may use both the old and the new allowance by unfortunate\n transaction ordering. One possible solution to mitigate this race\n condition is to first reduce the spender's allowance to 0 and set the\n desired value afterwards:\n https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n Emits an {Approval} event."},"functionSelector":"095ea7b3","id":6432,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2318:7:22","nodeType":"FunctionDefinition","parameters":{"id":6428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6425,"mutability":"mutable","name":"spender","nameLocation":"2334:7:22","nodeType":"VariableDeclaration","scope":6432,"src":"2326:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6424,"name":"address","nodeType":"ElementaryTypeName","src":"2326:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6427,"mutability":"mutable","name":"value","nameLocation":"2351:5:22","nodeType":"VariableDeclaration","scope":6432,"src":"2343:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6426,"name":"uint256","nodeType":"ElementaryTypeName","src":"2343:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2325:32:22"},"returnParameters":{"id":6431,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6430,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6432,"src":"2376:4:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6429,"name":"bool","nodeType":"ElementaryTypeName","src":"2376:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2375:6:22"},"scope":6445,"src":"2309:73:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6433,"nodeType":"StructuredDocumentation","src":"2388:297:22","text":" @dev Moves a `value` amount of tokens from `from` to `to` using the\n allowance mechanism. `value` is then deducted from the caller's\n allowance.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"23b872dd","id":6444,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2699:12:22","nodeType":"FunctionDefinition","parameters":{"id":6440,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6435,"mutability":"mutable","name":"from","nameLocation":"2720:4:22","nodeType":"VariableDeclaration","scope":6444,"src":"2712:12:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6434,"name":"address","nodeType":"ElementaryTypeName","src":"2712:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6437,"mutability":"mutable","name":"to","nameLocation":"2734:2:22","nodeType":"VariableDeclaration","scope":6444,"src":"2726:10:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6436,"name":"address","nodeType":"ElementaryTypeName","src":"2726:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6439,"mutability":"mutable","name":"value","nameLocation":"2746:5:22","nodeType":"VariableDeclaration","scope":6444,"src":"2738:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6438,"name":"uint256","nodeType":"ElementaryTypeName","src":"2738:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2711:41:22"},"returnParameters":{"id":6443,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6442,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6444,"src":"2771:4:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6441,"name":"bool","nodeType":"ElementaryTypeName","src":"2771:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2770:6:22"},"scope":6445,"src":"2690:87:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":6446,"src":"204:2575:22","usedErrors":[],"usedEvents":[6379,6388]}],"src":"106:2674:22"},"id":22},"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol","exportedSymbols":{"ECDSA":[9361],"EIP712":[9588],"ERC20":[6367],"ERC20Permit":[6599],"IERC20Permit":[6793],"Nonces":[7218]},"id":6600,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6447,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"122:24:23"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","file":"./IERC20Permit.sol","id":6449,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6600,"sourceUnit":6794,"src":"148:48:23","symbolAliases":[{"foreign":{"id":6448,"name":"IERC20Permit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6793,"src":"156:12:23","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"../ERC20.sol","id":6451,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6600,"sourceUnit":6368,"src":"197:35:23","symbolAliases":[{"foreign":{"id":6450,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6367,"src":"205:5:23","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","file":"../../../utils/cryptography/ECDSA.sol","id":6453,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6600,"sourceUnit":9362,"src":"233:60:23","symbolAliases":[{"foreign":{"id":6452,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9361,"src":"241:5:23","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/EIP712.sol","file":"../../../utils/cryptography/EIP712.sol","id":6455,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6600,"sourceUnit":9589,"src":"294:62:23","symbolAliases":[{"foreign":{"id":6454,"name":"EIP712","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9588,"src":"302:6:23","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Nonces.sol","file":"../../../utils/Nonces.sol","id":6457,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6600,"sourceUnit":7219,"src":"357:49:23","symbolAliases":[{"foreign":{"id":6456,"name":"Nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7218,"src":"365:6:23","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":6459,"name":"ERC20","nameLocations":["931:5:23"],"nodeType":"IdentifierPath","referencedDeclaration":6367,"src":"931:5:23"},"id":6460,"nodeType":"InheritanceSpecifier","src":"931:5:23"},{"baseName":{"id":6461,"name":"IERC20Permit","nameLocations":["938:12:23"],"nodeType":"IdentifierPath","referencedDeclaration":6793,"src":"938:12:23"},"id":6462,"nodeType":"InheritanceSpecifier","src":"938:12:23"},{"baseName":{"id":6463,"name":"EIP712","nameLocations":["952:6:23"],"nodeType":"IdentifierPath","referencedDeclaration":9588,"src":"952:6:23"},"id":6464,"nodeType":"InheritanceSpecifier","src":"952:6:23"},{"baseName":{"id":6465,"name":"Nonces","nameLocations":["960:6:23"],"nodeType":"IdentifierPath","referencedDeclaration":7218,"src":"960:6:23"},"id":6466,"nodeType":"InheritanceSpecifier","src":"960:6:23"}],"canonicalName":"ERC20Permit","contractDependencies":[],"contractKind":"contract","documentation":{"id":6458,"nodeType":"StructuredDocumentation","src":"408:489:23","text":" @dev Implementation of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by\n presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't\n need to send a transaction, and thus is not required to hold Ether at all."},"fullyImplemented":true,"id":6599,"linearizedBaseContracts":[6599,7218,9588,5566,6793,6367,5634,6757,6445,7128],"name":"ERC20Permit","nameLocation":"916:11:23","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":6471,"mutability":"constant","name":"PERMIT_TYPEHASH","nameLocation":"998:15:23","nodeType":"VariableDeclaration","scope":6599,"src":"973:146:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6467,"name":"bytes32","nodeType":"ElementaryTypeName","src":"973:7:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"5065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e6529","id":6469,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1034:84:23","typeDescriptions":{"typeIdentifier":"t_stringliteral_6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9","typeString":"literal_string \"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\""},"value":"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9","typeString":"literal_string \"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\""}],"id":6468,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"1024:9:23","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":6470,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1024:95:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"documentation":{"id":6472,"nodeType":"StructuredDocumentation","src":"1126:52:23","text":" @dev Permit deadline has expired."},"errorSelector":"62791302","id":6476,"name":"ERC2612ExpiredSignature","nameLocation":"1189:23:23","nodeType":"ErrorDefinition","parameters":{"id":6475,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6474,"mutability":"mutable","name":"deadline","nameLocation":"1221:8:23","nodeType":"VariableDeclaration","scope":6476,"src":"1213:16:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6473,"name":"uint256","nodeType":"ElementaryTypeName","src":"1213:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1212:18:23"},"src":"1183:48:23"},{"documentation":{"id":6477,"nodeType":"StructuredDocumentation","src":"1237:45:23","text":" @dev Mismatched signature."},"errorSelector":"4b800e46","id":6483,"name":"ERC2612InvalidSigner","nameLocation":"1293:20:23","nodeType":"ErrorDefinition","parameters":{"id":6482,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6479,"mutability":"mutable","name":"signer","nameLocation":"1322:6:23","nodeType":"VariableDeclaration","scope":6483,"src":"1314:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6478,"name":"address","nodeType":"ElementaryTypeName","src":"1314:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6481,"mutability":"mutable","name":"owner","nameLocation":"1338:5:23","nodeType":"VariableDeclaration","scope":6483,"src":"1330:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6480,"name":"address","nodeType":"ElementaryTypeName","src":"1330:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1313:31:23"},"src":"1287:58:23"},{"body":{"id":6493,"nodeType":"Block","src":"1627:2:23","statements":[]},"documentation":{"id":6484,"nodeType":"StructuredDocumentation","src":"1351:221:23","text":" @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\"1\"`.\n It's a good idea to use the same `name` that is defined as the ERC-20 token name."},"id":6494,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":6489,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6486,"src":"1616:4:23","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"31","id":6490,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1622:3:23","typeDescriptions":{"typeIdentifier":"t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6","typeString":"literal_string \"1\""},"value":"1"}],"id":6491,"kind":"baseConstructorSpecifier","modifierName":{"id":6488,"name":"EIP712","nameLocations":["1609:6:23"],"nodeType":"IdentifierPath","referencedDeclaration":9588,"src":"1609:6:23"},"nodeType":"ModifierInvocation","src":"1609:17:23"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":6487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6486,"mutability":"mutable","name":"name","nameLocation":"1603:4:23","nodeType":"VariableDeclaration","scope":6494,"src":"1589:18:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6485,"name":"string","nodeType":"ElementaryTypeName","src":"1589:6:23","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1588:20:23"},"returnParameters":{"id":6492,"nodeType":"ParameterList","parameters":[],"src":"1627:0:23"},"scope":6599,"src":"1577:52:23","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[6778],"body":{"id":6570,"nodeType":"Block","src":"1872:483:23","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6512,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967292,"src":"1886:5:23","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":6513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1892:9:23","memberName":"timestamp","nodeType":"MemberAccess","src":"1886:15:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":6514,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6503,"src":"1904:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1886:26:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6521,"nodeType":"IfStatement","src":"1882:97:23","trueBody":{"id":6520,"nodeType":"Block","src":"1914:65:23","statements":[{"errorCall":{"arguments":[{"id":6517,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6503,"src":"1959:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6516,"name":"ERC2612ExpiredSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6476,"src":"1935:23:23","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":6518,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1935:33:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6519,"nodeType":"RevertStatement","src":"1928:40:23"}]}},{"assignments":[6523],"declarations":[{"constant":false,"id":6523,"mutability":"mutable","name":"structHash","nameLocation":"1997:10:23","nodeType":"VariableDeclaration","scope":6570,"src":"1989:18:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6522,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1989:7:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":6537,"initialValue":{"arguments":[{"arguments":[{"id":6527,"name":"PERMIT_TYPEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6471,"src":"2031:15:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":6528,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6497,"src":"2048:5:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6529,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6499,"src":"2055:7:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6530,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6501,"src":"2064:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":6532,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6497,"src":"2081:5:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6531,"name":"_useNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7192,"src":"2071:9:23","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$","typeString":"function (address) returns (uint256)"}},"id":6533,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2071:16:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6534,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6503,"src":"2089:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6525,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967295,"src":"2020:3:23","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":6526,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2024:6:23","memberName":"encode","nodeType":"MemberAccess","src":"2020:10:23","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":6535,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2020:78:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":6524,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"2010:9:23","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":6536,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2010:89:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"1989:110:23"},{"assignments":[6539],"declarations":[{"constant":false,"id":6539,"mutability":"mutable","name":"hash","nameLocation":"2118:4:23","nodeType":"VariableDeclaration","scope":6570,"src":"2110:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6538,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2110:7:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":6543,"initialValue":{"arguments":[{"id":6541,"name":"structHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6523,"src":"2142:10:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":6540,"name":"_hashTypedDataV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9521,"src":"2125:16:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":6542,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2125:28:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2110:43:23"},{"assignments":[6545],"declarations":[{"constant":false,"id":6545,"mutability":"mutable","name":"signer","nameLocation":"2172:6:23","nodeType":"VariableDeclaration","scope":6570,"src":"2164:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6544,"name":"address","nodeType":"ElementaryTypeName","src":"2164:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":6553,"initialValue":{"arguments":[{"id":6548,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6539,"src":"2195:4:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":6549,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6505,"src":"2201:1:23","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":6550,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6507,"src":"2204:1:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":6551,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6509,"src":"2207:1:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":6546,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9361,"src":"2181:5:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$9361_$","typeString":"type(library ECDSA)"}},"id":6547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2187:7:23","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":9311,"src":"2181:13:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address)"}},"id":6552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2181:28:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2164:45:23"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6556,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6554,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"2223:6:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":6555,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6497,"src":"2233:5:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2223:15:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6563,"nodeType":"IfStatement","src":"2219:88:23","trueBody":{"id":6562,"nodeType":"Block","src":"2240:67:23","statements":[{"errorCall":{"arguments":[{"id":6558,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"2282:6:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6559,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6497,"src":"2290:5:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":6557,"name":"ERC2612InvalidSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6483,"src":"2261:20:23","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$returns$__$","typeString":"function (address,address) pure"}},"id":6560,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2261:35:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6561,"nodeType":"RevertStatement","src":"2254:42:23"}]}},{"expression":{"arguments":[{"id":6565,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6497,"src":"2326:5:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6566,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6499,"src":"2333:7:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6567,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6501,"src":"2342:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6564,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[6258,6318],"referencedDeclaration":6258,"src":"2317:8:23","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6568,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2317:31:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6569,"nodeType":"ExpressionStatement","src":"2317:31:23"}]},"documentation":{"id":6495,"nodeType":"StructuredDocumentation","src":"1635:43:23","text":" @inheritdoc IERC20Permit"},"functionSelector":"d505accf","id":6571,"implemented":true,"kind":"function","modifiers":[],"name":"permit","nameLocation":"1692:6:23","nodeType":"FunctionDefinition","parameters":{"id":6510,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6497,"mutability":"mutable","name":"owner","nameLocation":"1716:5:23","nodeType":"VariableDeclaration","scope":6571,"src":"1708:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6496,"name":"address","nodeType":"ElementaryTypeName","src":"1708:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6499,"mutability":"mutable","name":"spender","nameLocation":"1739:7:23","nodeType":"VariableDeclaration","scope":6571,"src":"1731:15:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6498,"name":"address","nodeType":"ElementaryTypeName","src":"1731:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6501,"mutability":"mutable","name":"value","nameLocation":"1764:5:23","nodeType":"VariableDeclaration","scope":6571,"src":"1756:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6500,"name":"uint256","nodeType":"ElementaryTypeName","src":"1756:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6503,"mutability":"mutable","name":"deadline","nameLocation":"1787:8:23","nodeType":"VariableDeclaration","scope":6571,"src":"1779:16:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6502,"name":"uint256","nodeType":"ElementaryTypeName","src":"1779:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6505,"mutability":"mutable","name":"v","nameLocation":"1811:1:23","nodeType":"VariableDeclaration","scope":6571,"src":"1805:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":6504,"name":"uint8","nodeType":"ElementaryTypeName","src":"1805:5:23","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":6507,"mutability":"mutable","name":"r","nameLocation":"1830:1:23","nodeType":"VariableDeclaration","scope":6571,"src":"1822:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6506,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1822:7:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":6509,"mutability":"mutable","name":"s","nameLocation":"1849:1:23","nodeType":"VariableDeclaration","scope":6571,"src":"1841:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6508,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1841:7:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1698:158:23"},"returnParameters":{"id":6511,"nodeType":"ParameterList","parameters":[],"src":"1872:0:23"},"scope":6599,"src":"1683:672:23","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[6786,7177],"body":{"id":6587,"nodeType":"Block","src":"2509:43:23","statements":[{"expression":{"arguments":[{"id":6584,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6574,"src":"2539:5:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":6582,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"2526:5:23","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC20Permit_$6599_$","typeString":"type(contract super ERC20Permit)"}},"id":6583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2532:6:23","memberName":"nonces","nodeType":"MemberAccess","referencedDeclaration":7177,"src":"2526:12:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6585,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2526:19:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6581,"id":6586,"nodeType":"Return","src":"2519:26:23"}]},"documentation":{"id":6572,"nodeType":"StructuredDocumentation","src":"2361:43:23","text":" @inheritdoc IERC20Permit"},"functionSelector":"7ecebe00","id":6588,"implemented":true,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"2418:6:23","nodeType":"FunctionDefinition","overrides":{"id":6578,"nodeType":"OverrideSpecifier","overrides":[{"id":6576,"name":"IERC20Permit","nameLocations":["2469:12:23"],"nodeType":"IdentifierPath","referencedDeclaration":6793,"src":"2469:12:23"},{"id":6577,"name":"Nonces","nameLocations":["2483:6:23"],"nodeType":"IdentifierPath","referencedDeclaration":7218,"src":"2483:6:23"}],"src":"2460:30:23"},"parameters":{"id":6575,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6574,"mutability":"mutable","name":"owner","nameLocation":"2433:5:23","nodeType":"VariableDeclaration","scope":6588,"src":"2425:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6573,"name":"address","nodeType":"ElementaryTypeName","src":"2425:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2424:15:23"},"returnParameters":{"id":6581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6580,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6588,"src":"2500:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6579,"name":"uint256","nodeType":"ElementaryTypeName","src":"2500:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2499:9:23"},"scope":6599,"src":"2409:143:23","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6792],"body":{"id":6597,"nodeType":"Block","src":"2727:44:23","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":6594,"name":"_domainSeparatorV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9484,"src":"2744:18:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":6595,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2744:20:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":6593,"id":6596,"nodeType":"Return","src":"2737:27:23"}]},"documentation":{"id":6589,"nodeType":"StructuredDocumentation","src":"2558:43:23","text":" @inheritdoc IERC20Permit"},"functionSelector":"3644e515","id":6598,"implemented":true,"kind":"function","modifiers":[],"name":"DOMAIN_SEPARATOR","nameLocation":"2668:16:23","nodeType":"FunctionDefinition","parameters":{"id":6590,"nodeType":"ParameterList","parameters":[],"src":"2684:2:23"},"returnParameters":{"id":6593,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6592,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6598,"src":"2718:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6591,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2718:7:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2717:9:23"},"scope":6599,"src":"2659:112:23","stateMutability":"view","virtual":true,"visibility":"external"}],"scope":6600,"src":"898:1875:23","usedErrors":[5604,5609,5614,5623,5628,5633,6476,6483,7160,7284,7286,9024,9029,9034],"usedEvents":[5546,6379,6388]}],"src":"122:2652:23"},"id":23},"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol","exportedSymbols":{"Checkpoints":[14929],"ERC20":[6367],"ERC20Votes":[6731],"Votes":[5523]},"id":6732,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6601,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"121:24:24"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"../ERC20.sol","id":6603,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6732,"sourceUnit":6368,"src":"147:35:24","symbolAliases":[{"foreign":{"id":6602,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6367,"src":"155:5:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/utils/Votes.sol","file":"../../../governance/utils/Votes.sol","id":6605,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6732,"sourceUnit":5524,"src":"183:58:24","symbolAliases":[{"foreign":{"id":6604,"name":"Votes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5523,"src":"191:5:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/structs/Checkpoints.sol","file":"../../../utils/structs/Checkpoints.sol","id":6607,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6732,"sourceUnit":14930,"src":"242:67:24","symbolAliases":[{"foreign":{"id":6606,"name":"Checkpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14929,"src":"250:11:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":6609,"name":"ERC20","nameLocations":["1226:5:24"],"nodeType":"IdentifierPath","referencedDeclaration":6367,"src":"1226:5:24"},"id":6610,"nodeType":"InheritanceSpecifier","src":"1226:5:24"},{"baseName":{"id":6611,"name":"Votes","nameLocations":["1233:5:24"],"nodeType":"IdentifierPath","referencedDeclaration":5523,"src":"1233:5:24"},"id":6612,"nodeType":"InheritanceSpecifier","src":"1233:5:24"}],"canonicalName":"ERC20Votes","contractDependencies":[],"contractKind":"contract","documentation":{"id":6608,"nodeType":"StructuredDocumentation","src":"311:882:24","text":" @dev Extension of ERC-20 to support Compound-like voting and delegation. This version is more generic than Compound's,\n and supports token supply up to 2^208^ - 1, while COMP is limited to 2^96^ - 1.\n NOTE: This contract does not provide interface compatibility with Compound's COMP token.\n This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either\n by calling the {Votes-delegate} function directly, or by providing a signature to be used with {Votes-delegateBySig}. Voting\n power can be queried through the public accessors {Votes-getVotes} and {Votes-getPastVotes}.\n By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it\n requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked."},"fullyImplemented":true,"id":6731,"internalFunctionIDs":{"5500":1,"5514":2},"linearizedBaseContracts":[6731,5523,5577,4980,5592,7218,9588,5566,6367,5634,6757,6445,7128],"name":"ERC20Votes","nameLocation":"1212:10:24","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6613,"nodeType":"StructuredDocumentation","src":"1245:100:24","text":" @dev Total supply cap has been exceeded, introducing a risk of votes overflowing."},"errorSelector":"1cb15d26","id":6619,"name":"ERC20ExceededSafeSupply","nameLocation":"1356:23:24","nodeType":"ErrorDefinition","parameters":{"id":6618,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6615,"mutability":"mutable","name":"increasedSupply","nameLocation":"1388:15:24","nodeType":"VariableDeclaration","scope":6619,"src":"1380:23:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6614,"name":"uint256","nodeType":"ElementaryTypeName","src":"1380:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6617,"mutability":"mutable","name":"cap","nameLocation":"1413:3:24","nodeType":"VariableDeclaration","scope":6619,"src":"1405:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6616,"name":"uint256","nodeType":"ElementaryTypeName","src":"1405:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1379:38:24"},"src":"1350:68:24"},{"body":{"id":6631,"nodeType":"Block","src":"2175:41:24","statements":[{"expression":{"expression":{"arguments":[{"id":6627,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2197:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":6626,"name":"uint208","nodeType":"ElementaryTypeName","src":"2197:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"}],"id":6625,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"2192:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6628,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2192:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint208","typeString":"type(uint208)"}},"id":6629,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2206:3:24","memberName":"max","nodeType":"MemberAccess","src":"2192:17:24","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":6624,"id":6630,"nodeType":"Return","src":"2185:24:24"}]},"documentation":{"id":6620,"nodeType":"StructuredDocumentation","src":"1424:684:24","text":" @dev Maximum token supply. Defaults to `type(uint208).max` (2^208^ - 1).\n This maximum is enforced in {_update}. It limits the total supply of the token, which is otherwise a uint256,\n so that checkpoints can be stored in the Trace208 structure used by {Votes}. Increasing this value will not\n remove the underlying limitation, and will cause {_update} to fail because of a math overflow in\n {Votes-_transferVotingUnits}. An override could be used to further restrict the total supply (to a lower value) if\n additional logic requires it. When resolving override conflicts on this function, the minimum should be\n returned."},"id":6632,"implemented":true,"kind":"function","modifiers":[],"name":"_maxSupply","nameLocation":"2122:10:24","nodeType":"FunctionDefinition","parameters":{"id":6621,"nodeType":"ParameterList","parameters":[],"src":"2132:2:24"},"returnParameters":{"id":6624,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6623,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6632,"src":"2166:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6622,"name":"uint256","nodeType":"ElementaryTypeName","src":"2166:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2165:9:24"},"scope":6731,"src":"2113:103:24","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[6174],"body":{"id":6685,"nodeType":"Block","src":"2440:329:24","statements":[{"expression":{"arguments":[{"id":6646,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6635,"src":"2464:4:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6647,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6637,"src":"2470:2:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6648,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6639,"src":"2474:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6643,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"2450:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC20Votes_$6731_$","typeString":"type(contract super ERC20Votes)"}},"id":6645,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2456:7:24","memberName":"_update","nodeType":"MemberAccess","referencedDeclaration":6174,"src":"2450:13:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6649,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2450:30:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6650,"nodeType":"ExpressionStatement","src":"2450:30:24"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6656,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6651,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6635,"src":"2494:4:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6654,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2510:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6653,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2502:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6652,"name":"address","nodeType":"ElementaryTypeName","src":"2502:7:24","typeDescriptions":{}}},"id":6655,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2502:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2494:18:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6678,"nodeType":"IfStatement","src":"2490:226:24","trueBody":{"id":6677,"nodeType":"Block","src":"2514:202:24","statements":[{"assignments":[6658],"declarations":[{"constant":false,"id":6658,"mutability":"mutable","name":"supply","nameLocation":"2536:6:24","nodeType":"VariableDeclaration","scope":6677,"src":"2528:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6657,"name":"uint256","nodeType":"ElementaryTypeName","src":"2528:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6661,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6659,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5940,"src":"2545:11:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6660,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2545:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2528:30:24"},{"assignments":[6663],"declarations":[{"constant":false,"id":6663,"mutability":"mutable","name":"cap","nameLocation":"2580:3:24","nodeType":"VariableDeclaration","scope":6677,"src":"2572:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6662,"name":"uint256","nodeType":"ElementaryTypeName","src":"2572:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6666,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6664,"name":"_maxSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6632,"src":"2586:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6665,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2586:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2572:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6669,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6667,"name":"supply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6658,"src":"2616:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":6668,"name":"cap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6663,"src":"2625:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2616:12:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6676,"nodeType":"IfStatement","src":"2612:94:24","trueBody":{"id":6675,"nodeType":"Block","src":"2630:76:24","statements":[{"errorCall":{"arguments":[{"id":6671,"name":"supply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6658,"src":"2679:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6672,"name":"cap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6663,"src":"2687:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6670,"name":"ERC20ExceededSafeSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6619,"src":"2655:23:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256) pure"}},"id":6673,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2655:36:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6674,"nodeType":"RevertStatement","src":"2648:43:24"}]}}]}},{"expression":{"arguments":[{"id":6680,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6635,"src":"2746:4:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6681,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6637,"src":"2752:2:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6682,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6639,"src":"2756:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6679,"name":"_transferVotingUnits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5336,"src":"2725:20:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6683,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2725:37:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6684,"nodeType":"ExpressionStatement","src":"2725:37:24"}]},"documentation":{"id":6633,"nodeType":"StructuredDocumentation","src":"2222:129:24","text":" @dev Move voting power when tokens are transferred.\n Emits a {IVotes-DelegateVotesChanged} event."},"id":6686,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"2365:7:24","nodeType":"FunctionDefinition","overrides":{"id":6641,"nodeType":"OverrideSpecifier","overrides":[],"src":"2431:8:24"},"parameters":{"id":6640,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6635,"mutability":"mutable","name":"from","nameLocation":"2381:4:24","nodeType":"VariableDeclaration","scope":6686,"src":"2373:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6634,"name":"address","nodeType":"ElementaryTypeName","src":"2373:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6637,"mutability":"mutable","name":"to","nameLocation":"2395:2:24","nodeType":"VariableDeclaration","scope":6686,"src":"2387:10:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6636,"name":"address","nodeType":"ElementaryTypeName","src":"2387:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6639,"mutability":"mutable","name":"value","nameLocation":"2407:5:24","nodeType":"VariableDeclaration","scope":6686,"src":"2399:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6638,"name":"uint256","nodeType":"ElementaryTypeName","src":"2399:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2372:41:24"},"returnParameters":{"id":6642,"nodeType":"ParameterList","parameters":[],"src":"2440:0:24"},"scope":6731,"src":"2356:413:24","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[5522],"body":{"id":6699,"nodeType":"Block","src":"3120:42:24","statements":[{"expression":{"arguments":[{"id":6696,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6689,"src":"3147:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6695,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5953,"src":"3137:9:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6697,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3137:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6694,"id":6698,"nodeType":"Return","src":"3130:25:24"}]},"documentation":{"id":6687,"nodeType":"StructuredDocumentation","src":"2775:249:24","text":" @dev Returns the voting units of an `account`.\n WARNING: Overriding this function may compromise the internal vote accounting.\n `ERC20Votes` assumes tokens map to voting units 1:1 and this is not easy to change."},"id":6700,"implemented":true,"kind":"function","modifiers":[],"name":"_getVotingUnits","nameLocation":"3038:15:24","nodeType":"FunctionDefinition","overrides":{"id":6691,"nodeType":"OverrideSpecifier","overrides":[],"src":"3093:8:24"},"parameters":{"id":6690,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6689,"mutability":"mutable","name":"account","nameLocation":"3062:7:24","nodeType":"VariableDeclaration","scope":6700,"src":"3054:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6688,"name":"address","nodeType":"ElementaryTypeName","src":"3054:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3053:17:24"},"returnParameters":{"id":6694,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6693,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6700,"src":"3111:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6692,"name":"uint256","nodeType":"ElementaryTypeName","src":"3111:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3110:9:24"},"scope":6731,"src":"3029:133:24","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":6712,"nodeType":"Block","src":"3315:48:24","statements":[{"expression":{"arguments":[{"id":6709,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6703,"src":"3348:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6708,"name":"_numCheckpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5432,"src":"3332:15:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint32_$","typeString":"function (address) view returns (uint32)"}},"id":6710,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3332:24:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":6707,"id":6711,"nodeType":"Return","src":"3325:31:24"}]},"documentation":{"id":6701,"nodeType":"StructuredDocumentation","src":"3168:64:24","text":" @dev Get number of checkpoints for `account`."},"functionSelector":"6fcfff45","id":6713,"implemented":true,"kind":"function","modifiers":[],"name":"numCheckpoints","nameLocation":"3246:14:24","nodeType":"FunctionDefinition","parameters":{"id":6704,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6703,"mutability":"mutable","name":"account","nameLocation":"3269:7:24","nodeType":"VariableDeclaration","scope":6713,"src":"3261:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6702,"name":"address","nodeType":"ElementaryTypeName","src":"3261:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3260:17:24"},"returnParameters":{"id":6707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6706,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6713,"src":"3307:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":6705,"name":"uint32","nodeType":"ElementaryTypeName","src":"3307:6:24","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"3306:8:24"},"scope":6731,"src":"3237:126:24","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":6729,"nodeType":"Block","src":"3553:50:24","statements":[{"expression":{"arguments":[{"id":6725,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6716,"src":"3583:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6726,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6718,"src":"3592:3:24","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":6724,"name":"_checkpoints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5451,"src":"3570:12:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint32_$returns$_t_struct$_Checkpoint208_$13890_memory_ptr_$","typeString":"function (address,uint32) view returns (struct Checkpoints.Checkpoint208 memory)"}},"id":6727,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3570:26:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_memory_ptr","typeString":"struct Checkpoints.Checkpoint208 memory"}},"functionReturnParameters":6723,"id":6728,"nodeType":"Return","src":"3563:33:24"}]},"documentation":{"id":6714,"nodeType":"StructuredDocumentation","src":"3369:66:24","text":" @dev Get the `pos`-th checkpoint for `account`."},"functionSelector":"f1127ed8","id":6730,"implemented":true,"kind":"function","modifiers":[],"name":"checkpoints","nameLocation":"3449:11:24","nodeType":"FunctionDefinition","parameters":{"id":6719,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6716,"mutability":"mutable","name":"account","nameLocation":"3469:7:24","nodeType":"VariableDeclaration","scope":6730,"src":"3461:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6715,"name":"address","nodeType":"ElementaryTypeName","src":"3461:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6718,"mutability":"mutable","name":"pos","nameLocation":"3485:3:24","nodeType":"VariableDeclaration","scope":6730,"src":"3478:10:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":6717,"name":"uint32","nodeType":"ElementaryTypeName","src":"3478:6:24","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"3460:29:24"},"returnParameters":{"id":6723,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6722,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6730,"src":"3519:32:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_memory_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":6721,"nodeType":"UserDefinedTypeName","pathNode":{"id":6720,"name":"Checkpoints.Checkpoint208","nameLocations":["3519:11:24","3531:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":13890,"src":"3519:25:24"},"referencedDeclaration":13890,"src":"3519:25:24","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"src":"3518:34:24"},"scope":6731,"src":"3440:163:24","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":6732,"src":"1194:2411:24","usedErrors":[4905,5031,5038,5604,5609,5614,5623,5628,5633,6619,7160,7284,7286,9024,9029,9034,11449,13356],"usedEvents":[4914,4923,5546,6379,6388]}],"src":"121:3485:24"},"id":24},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","exportedSymbols":{"IERC20":[6445],"IERC20Metadata":[6757]},"id":6758,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6733,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"125:24:25"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":6735,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6758,"sourceUnit":6446,"src":"151:37:25","symbolAliases":[{"foreign":{"id":6734,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6445,"src":"159:6:25","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":6737,"name":"IERC20","nameLocations":["306:6:25"],"nodeType":"IdentifierPath","referencedDeclaration":6445,"src":"306:6:25"},"id":6738,"nodeType":"InheritanceSpecifier","src":"306:6:25"}],"canonicalName":"IERC20Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":6736,"nodeType":"StructuredDocumentation","src":"190:87:25","text":" @dev Interface for the optional metadata functions from the ERC-20 standard."},"fullyImplemented":false,"id":6757,"linearizedBaseContracts":[6757,6445],"name":"IERC20Metadata","nameLocation":"288:14:25","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6739,"nodeType":"StructuredDocumentation","src":"319:54:25","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":6744,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"387:4:25","nodeType":"FunctionDefinition","parameters":{"id":6740,"nodeType":"ParameterList","parameters":[],"src":"391:2:25"},"returnParameters":{"id":6743,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6742,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6744,"src":"417:13:25","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6741,"name":"string","nodeType":"ElementaryTypeName","src":"417:6:25","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"416:15:25"},"scope":6757,"src":"378:54:25","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6745,"nodeType":"StructuredDocumentation","src":"438:56:25","text":" @dev Returns the symbol of the token."},"functionSelector":"95d89b41","id":6750,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"508:6:25","nodeType":"FunctionDefinition","parameters":{"id":6746,"nodeType":"ParameterList","parameters":[],"src":"514:2:25"},"returnParameters":{"id":6749,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6748,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6750,"src":"540:13:25","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6747,"name":"string","nodeType":"ElementaryTypeName","src":"540:6:25","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"539:15:25"},"scope":6757,"src":"499:56:25","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6751,"nodeType":"StructuredDocumentation","src":"561:65:25","text":" @dev Returns the decimals places of the token."},"functionSelector":"313ce567","id":6756,"implemented":false,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"640:8:25","nodeType":"FunctionDefinition","parameters":{"id":6752,"nodeType":"ParameterList","parameters":[],"src":"648:2:25"},"returnParameters":{"id":6755,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6754,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6756,"src":"674:5:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":6753,"name":"uint8","nodeType":"ElementaryTypeName","src":"674:5:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"673:7:25"},"scope":6757,"src":"631:50:25","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":6758,"src":"278:405:25","usedErrors":[],"usedEvents":[6379,6388]}],"src":"125:559:25"},"id":25},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","exportedSymbols":{"IERC20Permit":[6793]},"id":6794,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6759,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"123:24:26"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Permit","contractDependencies":[],"contractKind":"interface","documentation":{"id":6760,"nodeType":"StructuredDocumentation","src":"149:1965:26","text":" @dev Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by\n presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\n need to send a transaction, and thus is not required to hold Ether at all.\n ==== Security Considerations\n There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\n expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\n considered as an intention to spend the allowance in any specific way. The second is that because permits have\n built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\n take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\n generally recommended is:\n ```solidity\n function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\n try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\n doThing(..., value);\n }\n function doThing(..., uint256 value) public {\n token.safeTransferFrom(msg.sender, address(this), value);\n ...\n }\n ```\n Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\n `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\n {SafeERC20-safeTransferFrom}).\n Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\n contracts should have entry points that don't rely on permit."},"fullyImplemented":false,"id":6793,"linearizedBaseContracts":[6793],"name":"IERC20Permit","nameLocation":"2125:12:26","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6761,"nodeType":"StructuredDocumentation","src":"2144:850:26","text":" @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n given ``owner``'s signed approval.\n IMPORTANT: The same issues {IERC20-approve} has related to transaction\n ordering also apply here.\n Emits an {Approval} event.\n Requirements:\n - `spender` cannot be the zero address.\n - `deadline` must be a timestamp in the future.\n - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n over the EIP712-formatted function arguments.\n - the signature must use ``owner``'s current nonce (see {nonces}).\n For more information on the signature format, see the\n https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n section].\n CAUTION: See Security Considerations above."},"functionSelector":"d505accf","id":6778,"implemented":false,"kind":"function","modifiers":[],"name":"permit","nameLocation":"3008:6:26","nodeType":"FunctionDefinition","parameters":{"id":6776,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6763,"mutability":"mutable","name":"owner","nameLocation":"3032:5:26","nodeType":"VariableDeclaration","scope":6778,"src":"3024:13:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6762,"name":"address","nodeType":"ElementaryTypeName","src":"3024:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6765,"mutability":"mutable","name":"spender","nameLocation":"3055:7:26","nodeType":"VariableDeclaration","scope":6778,"src":"3047:15:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6764,"name":"address","nodeType":"ElementaryTypeName","src":"3047:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6767,"mutability":"mutable","name":"value","nameLocation":"3080:5:26","nodeType":"VariableDeclaration","scope":6778,"src":"3072:13:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6766,"name":"uint256","nodeType":"ElementaryTypeName","src":"3072:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6769,"mutability":"mutable","name":"deadline","nameLocation":"3103:8:26","nodeType":"VariableDeclaration","scope":6778,"src":"3095:16:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6768,"name":"uint256","nodeType":"ElementaryTypeName","src":"3095:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6771,"mutability":"mutable","name":"v","nameLocation":"3127:1:26","nodeType":"VariableDeclaration","scope":6778,"src":"3121:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":6770,"name":"uint8","nodeType":"ElementaryTypeName","src":"3121:5:26","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":6773,"mutability":"mutable","name":"r","nameLocation":"3146:1:26","nodeType":"VariableDeclaration","scope":6778,"src":"3138:9:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6772,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3138:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":6775,"mutability":"mutable","name":"s","nameLocation":"3165:1:26","nodeType":"VariableDeclaration","scope":6778,"src":"3157:9:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6774,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3157:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3014:158:26"},"returnParameters":{"id":6777,"nodeType":"ParameterList","parameters":[],"src":"3181:0:26"},"scope":6793,"src":"2999:183:26","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":6779,"nodeType":"StructuredDocumentation","src":"3188:294:26","text":" @dev Returns the current nonce for `owner`. This value must be\n included whenever a signature is generated for {permit}.\n Every successful call to {permit} increases ``owner``'s nonce by one. This\n prevents a signature from being used multiple times."},"functionSelector":"7ecebe00","id":6786,"implemented":false,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"3496:6:26","nodeType":"FunctionDefinition","parameters":{"id":6782,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6781,"mutability":"mutable","name":"owner","nameLocation":"3511:5:26","nodeType":"VariableDeclaration","scope":6786,"src":"3503:13:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6780,"name":"address","nodeType":"ElementaryTypeName","src":"3503:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3502:15:26"},"returnParameters":{"id":6785,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6784,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6786,"src":"3541:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6783,"name":"uint256","nodeType":"ElementaryTypeName","src":"3541:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3540:9:26"},"scope":6793,"src":"3487:63:26","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":6787,"nodeType":"StructuredDocumentation","src":"3556:128:26","text":" @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}."},"functionSelector":"3644e515","id":6792,"implemented":false,"kind":"function","modifiers":[],"name":"DOMAIN_SEPARATOR","nameLocation":"3751:16:26","nodeType":"FunctionDefinition","parameters":{"id":6788,"nodeType":"ParameterList","parameters":[],"src":"3767:2:26"},"returnParameters":{"id":6791,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6790,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6792,"src":"3793:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6789,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3793:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3792:9:26"},"scope":6793,"src":"3742:60:26","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":6794,"src":"2115:1689:26","usedErrors":[],"usedEvents":[]}],"src":"123:3682:26"},"id":26},"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","exportedSymbols":{"IERC721Receiver":[6811]},"id":6812,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6795,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"116:24:27"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Receiver","contractDependencies":[],"contractKind":"interface","documentation":{"id":6796,"nodeType":"StructuredDocumentation","src":"142:154:27","text":" @title ERC-721 token receiver interface\n @dev Interface for any contract that wants to support safeTransfers\n from ERC-721 asset contracts."},"fullyImplemented":false,"id":6811,"linearizedBaseContracts":[6811],"name":"IERC721Receiver","nameLocation":"307:15:27","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6797,"nodeType":"StructuredDocumentation","src":"329:500:27","text":" @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n by `operator` from `from`, this function is called.\n It must return its Solidity selector to confirm the token transfer.\n If any other value is returned or the interface is not implemented by the recipient, the transfer will be\n reverted.\n The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`."},"functionSelector":"150b7a02","id":6810,"implemented":false,"kind":"function","modifiers":[],"name":"onERC721Received","nameLocation":"843:16:27","nodeType":"FunctionDefinition","parameters":{"id":6806,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6799,"mutability":"mutable","name":"operator","nameLocation":"877:8:27","nodeType":"VariableDeclaration","scope":6810,"src":"869:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6798,"name":"address","nodeType":"ElementaryTypeName","src":"869:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6801,"mutability":"mutable","name":"from","nameLocation":"903:4:27","nodeType":"VariableDeclaration","scope":6810,"src":"895:12:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6800,"name":"address","nodeType":"ElementaryTypeName","src":"895:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6803,"mutability":"mutable","name":"tokenId","nameLocation":"925:7:27","nodeType":"VariableDeclaration","scope":6810,"src":"917:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6802,"name":"uint256","nodeType":"ElementaryTypeName","src":"917:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6805,"mutability":"mutable","name":"data","nameLocation":"957:4:27","nodeType":"VariableDeclaration","scope":6810,"src":"942:19:27","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":6804,"name":"bytes","nodeType":"ElementaryTypeName","src":"942:5:27","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"859:108:27"},"returnParameters":{"id":6809,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6808,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6810,"src":"986:6:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":6807,"name":"bytes4","nodeType":"ElementaryTypeName","src":"986:6:27","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"985:8:27"},"scope":6811,"src":"834:160:27","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":6812,"src":"297:699:27","usedErrors":[],"usedEvents":[]}],"src":"116:881:27"},"id":27},"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol","exportedSymbols":{"ERC721Holder":[6838],"IERC721Receiver":[6811]},"id":6839,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6813,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"119:24:28"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"../IERC721Receiver.sol","id":6815,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6839,"sourceUnit":6812,"src":"145:55:28","symbolAliases":[{"foreign":{"id":6814,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6811,"src":"153:15:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":6817,"name":"IERC721Receiver","nameLocations":["475:15:28"],"nodeType":"IdentifierPath","referencedDeclaration":6811,"src":"475:15:28"},"id":6818,"nodeType":"InheritanceSpecifier","src":"475:15:28"}],"canonicalName":"ERC721Holder","contractDependencies":[],"contractKind":"contract","documentation":{"id":6816,"nodeType":"StructuredDocumentation","src":"202:238:28","text":" @dev Implementation of the {IERC721Receiver} interface.\n Accepts all token transfers.\n Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or\n {IERC721-setApprovalForAll}."},"fullyImplemented":true,"id":6838,"linearizedBaseContracts":[6838,6811],"name":"ERC721Holder","nameLocation":"459:12:28","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[6810],"body":{"id":6836,"nodeType":"Block","src":"738:54:28","statements":[{"expression":{"expression":{"expression":{"id":6832,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"755:4:28","typeDescriptions":{"typeIdentifier":"t_contract$_ERC721Holder_$6838","typeString":"contract ERC721Holder"}},"id":6833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"760:16:28","memberName":"onERC721Received","nodeType":"MemberAccess","referencedDeclaration":6837,"src":"755:21:28","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (address,address,uint256,bytes memory) external returns (bytes4)"}},"id":6834,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"777:8:28","memberName":"selector","nodeType":"MemberAccess","src":"755:30:28","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":6831,"id":6835,"nodeType":"Return","src":"748:37:28"}]},"documentation":{"id":6819,"nodeType":"StructuredDocumentation","src":"497:137:28","text":" @dev See {IERC721Receiver-onERC721Received}.\n Always returns `IERC721Receiver.onERC721Received.selector`."},"functionSelector":"150b7a02","id":6837,"implemented":true,"kind":"function","modifiers":[],"name":"onERC721Received","nameLocation":"648:16:28","nodeType":"FunctionDefinition","parameters":{"id":6828,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6821,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6837,"src":"665:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6820,"name":"address","nodeType":"ElementaryTypeName","src":"665:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6823,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6837,"src":"674:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6822,"name":"address","nodeType":"ElementaryTypeName","src":"674:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6825,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6837,"src":"683:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6824,"name":"uint256","nodeType":"ElementaryTypeName","src":"683:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6827,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6837,"src":"692:12:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6826,"name":"bytes","nodeType":"ElementaryTypeName","src":"692:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"664:41:28"},"returnParameters":{"id":6831,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6830,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6837,"src":"730:6:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":6829,"name":"bytes4","nodeType":"ElementaryTypeName","src":"730:6:28","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"729:8:28"},"scope":6838,"src":"639:153:28","stateMutability":"nonpayable","virtual":true,"visibility":"public"}],"scope":6839,"src":"441:353:28","usedErrors":[],"usedEvents":[]}],"src":"119:676:28"},"id":28},"@openzeppelin/contracts/utils/Address.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","exportedSymbols":{"Address":[7098],"Errors":[7150]},"id":7099,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6840,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:29"},{"absolutePath":"@openzeppelin/contracts/utils/Errors.sol","file":"./Errors.sol","id":6842,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7099,"sourceUnit":7151,"src":"127:36:29","symbolAliases":[{"foreign":{"id":6841,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7150,"src":"135:6:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Address","contractDependencies":[],"contractKind":"library","documentation":{"id":6843,"nodeType":"StructuredDocumentation","src":"165:67:29","text":" @dev Collection of functions related to the address type"},"fullyImplemented":true,"id":7098,"linearizedBaseContracts":[7098],"name":"Address","nameLocation":"241:7:29","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":6844,"nodeType":"StructuredDocumentation","src":"255:75:29","text":" @dev There's no code at `target` (it is not a contract)."},"errorSelector":"9996b315","id":6848,"name":"AddressEmptyCode","nameLocation":"341:16:29","nodeType":"ErrorDefinition","parameters":{"id":6847,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6846,"mutability":"mutable","name":"target","nameLocation":"366:6:29","nodeType":"VariableDeclaration","scope":6848,"src":"358:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6845,"name":"address","nodeType":"ElementaryTypeName","src":"358:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"357:16:29"},"src":"335:39:29"},{"body":{"id":6895,"nodeType":"Block","src":"1361:294:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":6858,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"1383:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$7098","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$7098","typeString":"library Address"}],"id":6857,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1375:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6856,"name":"address","nodeType":"ElementaryTypeName","src":"1375:7:29","typeDescriptions":{}}},"id":6859,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1375:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1389:7:29","memberName":"balance","nodeType":"MemberAccess","src":"1375:21:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":6861,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6853,"src":"1399:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1375:30:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6875,"nodeType":"IfStatement","src":"1371:125:29","trueBody":{"id":6874,"nodeType":"Block","src":"1407:89:29","statements":[{"errorCall":{"arguments":[{"expression":{"arguments":[{"id":6868,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"1463:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$7098","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$7098","typeString":"library Address"}],"id":6867,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1455:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6866,"name":"address","nodeType":"ElementaryTypeName","src":"1455:7:29","typeDescriptions":{}}},"id":6869,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1455:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1469:7:29","memberName":"balance","nodeType":"MemberAccess","src":"1455:21:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6871,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6853,"src":"1478:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6863,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7150,"src":"1428:6:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$7150_$","typeString":"type(library Errors)"}},"id":6865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1435:19:29","memberName":"InsufficientBalance","nodeType":"MemberAccess","referencedDeclaration":7138,"src":"1428:26:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256) pure"}},"id":6872,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1428:57:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6873,"nodeType":"RevertStatement","src":"1421:64:29"}]}},{"assignments":[6877,6879],"declarations":[{"constant":false,"id":6877,"mutability":"mutable","name":"success","nameLocation":"1512:7:29","nodeType":"VariableDeclaration","scope":6895,"src":"1507:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6876,"name":"bool","nodeType":"ElementaryTypeName","src":"1507:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6879,"mutability":"mutable","name":"returndata","nameLocation":"1534:10:29","nodeType":"VariableDeclaration","scope":6895,"src":"1521:23:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6878,"name":"bytes","nodeType":"ElementaryTypeName","src":"1521:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":6886,"initialValue":{"arguments":[{"hexValue":"","id":6884,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1578:2:29","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"id":6880,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6851,"src":"1548:9:29","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":6881,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1558:4:29","memberName":"call","nodeType":"MemberAccess","src":"1548:14:29","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":6883,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":6882,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6853,"src":"1570:6:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"1548:29:29","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":6885,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1548:33:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"1506:75:29"},{"condition":{"id":6888,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"1595:8:29","subExpression":{"id":6887,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6877,"src":"1596:7:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6894,"nodeType":"IfStatement","src":"1591:58:29","trueBody":{"id":6893,"nodeType":"Block","src":"1605:44:29","statements":[{"expression":{"arguments":[{"id":6890,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6879,"src":"1627:10:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":6889,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7097,"src":"1619:7:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":6891,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1619:19:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6892,"nodeType":"ExpressionStatement","src":"1619:19:29"}]}}]},"documentation":{"id":6849,"nodeType":"StructuredDocumentation","src":"380:905:29","text":" @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n `recipient`, forwarding all available gas and reverting on errors.\n https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n of certain opcodes, possibly making contracts go over the 2300 gas limit\n imposed by `transfer`, making them unable to receive funds via\n `transfer`. {sendValue} removes this limitation.\n https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n IMPORTANT: because control is transferred to `recipient`, care must be\n taken to not create reentrancy vulnerabilities. Consider using\n {ReentrancyGuard} or the\n https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]."},"id":6896,"implemented":true,"kind":"function","modifiers":[],"name":"sendValue","nameLocation":"1299:9:29","nodeType":"FunctionDefinition","parameters":{"id":6854,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6851,"mutability":"mutable","name":"recipient","nameLocation":"1325:9:29","nodeType":"VariableDeclaration","scope":6896,"src":"1309:25:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":6850,"name":"address","nodeType":"ElementaryTypeName","src":"1309:15:29","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":6853,"mutability":"mutable","name":"amount","nameLocation":"1344:6:29","nodeType":"VariableDeclaration","scope":6896,"src":"1336:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6852,"name":"uint256","nodeType":"ElementaryTypeName","src":"1336:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1308:43:29"},"returnParameters":{"id":6855,"nodeType":"ParameterList","parameters":[],"src":"1361:0:29"},"scope":7098,"src":"1290:365:29","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6912,"nodeType":"Block","src":"2589:62:29","statements":[{"expression":{"arguments":[{"id":6907,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6899,"src":"2628:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6908,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6901,"src":"2636:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":6909,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2642:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":6906,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6963,"src":"2606:21:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256) returns (bytes memory)"}},"id":6910,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2606:38:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":6905,"id":6911,"nodeType":"Return","src":"2599:45:29"}]},"documentation":{"id":6897,"nodeType":"StructuredDocumentation","src":"1661:834:29","text":" @dev Performs a Solidity function call using a low level `call`. A\n plain `call` is an unsafe replacement for a function call: use this\n function instead.\n If `target` reverts with a revert reason or custom error, it is bubbled\n up by this function (like regular Solidity function calls). However, if\n the call reverted with no returned reason, this function reverts with a\n {Errors.FailedCall} error.\n Returns the raw returned data. To convert to the expected return value,\n use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n Requirements:\n - `target` must be a contract.\n - calling `target` with `data` must not revert."},"id":6913,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"2509:12:29","nodeType":"FunctionDefinition","parameters":{"id":6902,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6899,"mutability":"mutable","name":"target","nameLocation":"2530:6:29","nodeType":"VariableDeclaration","scope":6913,"src":"2522:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6898,"name":"address","nodeType":"ElementaryTypeName","src":"2522:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6901,"mutability":"mutable","name":"data","nameLocation":"2551:4:29","nodeType":"VariableDeclaration","scope":6913,"src":"2538:17:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6900,"name":"bytes","nodeType":"ElementaryTypeName","src":"2538:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2521:35:29"},"returnParameters":{"id":6905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6904,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6913,"src":"2575:12:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6903,"name":"bytes","nodeType":"ElementaryTypeName","src":"2575:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2574:14:29"},"scope":7098,"src":"2500:151:29","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6962,"nodeType":"Block","src":"3088:294:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6931,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":6927,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"3110:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$7098","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$7098","typeString":"library Address"}],"id":6926,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3102:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6925,"name":"address","nodeType":"ElementaryTypeName","src":"3102:7:29","typeDescriptions":{}}},"id":6928,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3102:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6929,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3116:7:29","memberName":"balance","nodeType":"MemberAccess","src":"3102:21:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":6930,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6920,"src":"3126:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3102:29:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6944,"nodeType":"IfStatement","src":"3098:123:29","trueBody":{"id":6943,"nodeType":"Block","src":"3133:88:29","statements":[{"errorCall":{"arguments":[{"expression":{"arguments":[{"id":6937,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"3189:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$7098","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$7098","typeString":"library Address"}],"id":6936,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3181:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6935,"name":"address","nodeType":"ElementaryTypeName","src":"3181:7:29","typeDescriptions":{}}},"id":6938,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3181:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6939,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3195:7:29","memberName":"balance","nodeType":"MemberAccess","src":"3181:21:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6940,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6920,"src":"3204:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6932,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7150,"src":"3154:6:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$7150_$","typeString":"type(library Errors)"}},"id":6934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3161:19:29","memberName":"InsufficientBalance","nodeType":"MemberAccess","referencedDeclaration":7138,"src":"3154:26:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256) pure"}},"id":6941,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3154:56:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6942,"nodeType":"RevertStatement","src":"3147:63:29"}]}},{"assignments":[6946,6948],"declarations":[{"constant":false,"id":6946,"mutability":"mutable","name":"success","nameLocation":"3236:7:29","nodeType":"VariableDeclaration","scope":6962,"src":"3231:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6945,"name":"bool","nodeType":"ElementaryTypeName","src":"3231:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6948,"mutability":"mutable","name":"returndata","nameLocation":"3258:10:29","nodeType":"VariableDeclaration","scope":6962,"src":"3245:23:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6947,"name":"bytes","nodeType":"ElementaryTypeName","src":"3245:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":6955,"initialValue":{"arguments":[{"id":6953,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6918,"src":"3298:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":6949,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6916,"src":"3272:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3279:4:29","memberName":"call","nodeType":"MemberAccess","src":"3272:11:29","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":6952,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":6951,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6920,"src":"3291:5:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"3272:25:29","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":6954,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3272:31:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"3230:73:29"},{"expression":{"arguments":[{"id":6957,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6916,"src":"3347:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6958,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6946,"src":"3355:7:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":6959,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6948,"src":"3364:10:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":6956,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7055,"src":"3320:26:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory) view returns (bytes memory)"}},"id":6960,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3320:55:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":6924,"id":6961,"nodeType":"Return","src":"3313:62:29"}]},"documentation":{"id":6914,"nodeType":"StructuredDocumentation","src":"2657:313:29","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but also transferring `value` wei to `target`.\n Requirements:\n - the calling contract must have an ETH balance of at least `value`.\n - the called Solidity function must be `payable`."},"id":6963,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"2984:21:29","nodeType":"FunctionDefinition","parameters":{"id":6921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6916,"mutability":"mutable","name":"target","nameLocation":"3014:6:29","nodeType":"VariableDeclaration","scope":6963,"src":"3006:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6915,"name":"address","nodeType":"ElementaryTypeName","src":"3006:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6918,"mutability":"mutable","name":"data","nameLocation":"3035:4:29","nodeType":"VariableDeclaration","scope":6963,"src":"3022:17:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6917,"name":"bytes","nodeType":"ElementaryTypeName","src":"3022:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":6920,"mutability":"mutable","name":"value","nameLocation":"3049:5:29","nodeType":"VariableDeclaration","scope":6963,"src":"3041:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6919,"name":"uint256","nodeType":"ElementaryTypeName","src":"3041:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3005:50:29"},"returnParameters":{"id":6924,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6923,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6963,"src":"3074:12:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6922,"name":"bytes","nodeType":"ElementaryTypeName","src":"3074:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3073:14:29"},"scope":7098,"src":"2975:407:29","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6988,"nodeType":"Block","src":"3621:154:29","statements":[{"assignments":[6974,6976],"declarations":[{"constant":false,"id":6974,"mutability":"mutable","name":"success","nameLocation":"3637:7:29","nodeType":"VariableDeclaration","scope":6988,"src":"3632:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6973,"name":"bool","nodeType":"ElementaryTypeName","src":"3632:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6976,"mutability":"mutable","name":"returndata","nameLocation":"3659:10:29","nodeType":"VariableDeclaration","scope":6988,"src":"3646:23:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6975,"name":"bytes","nodeType":"ElementaryTypeName","src":"3646:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":6981,"initialValue":{"arguments":[{"id":6979,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6968,"src":"3691:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":6977,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6966,"src":"3673:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3680:10:29","memberName":"staticcall","nodeType":"MemberAccess","src":"3673:17:29","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":6980,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3673:23:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"3631:65:29"},{"expression":{"arguments":[{"id":6983,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6966,"src":"3740:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6984,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6974,"src":"3748:7:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":6985,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6976,"src":"3757:10:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":6982,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7055,"src":"3713:26:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory) view returns (bytes memory)"}},"id":6986,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3713:55:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":6972,"id":6987,"nodeType":"Return","src":"3706:62:29"}]},"documentation":{"id":6964,"nodeType":"StructuredDocumentation","src":"3388:128:29","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call."},"id":6989,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"3530:18:29","nodeType":"FunctionDefinition","parameters":{"id":6969,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6966,"mutability":"mutable","name":"target","nameLocation":"3557:6:29","nodeType":"VariableDeclaration","scope":6989,"src":"3549:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6965,"name":"address","nodeType":"ElementaryTypeName","src":"3549:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6968,"mutability":"mutable","name":"data","nameLocation":"3578:4:29","nodeType":"VariableDeclaration","scope":6989,"src":"3565:17:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6967,"name":"bytes","nodeType":"ElementaryTypeName","src":"3565:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3548:35:29"},"returnParameters":{"id":6972,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6971,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6989,"src":"3607:12:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6970,"name":"bytes","nodeType":"ElementaryTypeName","src":"3607:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3606:14:29"},"scope":7098,"src":"3521:254:29","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":7014,"nodeType":"Block","src":"4013:156:29","statements":[{"assignments":[7000,7002],"declarations":[{"constant":false,"id":7000,"mutability":"mutable","name":"success","nameLocation":"4029:7:29","nodeType":"VariableDeclaration","scope":7014,"src":"4024:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6999,"name":"bool","nodeType":"ElementaryTypeName","src":"4024:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7002,"mutability":"mutable","name":"returndata","nameLocation":"4051:10:29","nodeType":"VariableDeclaration","scope":7014,"src":"4038:23:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7001,"name":"bytes","nodeType":"ElementaryTypeName","src":"4038:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":7007,"initialValue":{"arguments":[{"id":7005,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6994,"src":"4085:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":7003,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6992,"src":"4065:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":7004,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4072:12:29","memberName":"delegatecall","nodeType":"MemberAccess","src":"4065:19:29","typeDescriptions":{"typeIdentifier":"t_function_baredelegatecall_nonpayable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) returns (bool,bytes memory)"}},"id":7006,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4065:25:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"4023:67:29"},{"expression":{"arguments":[{"id":7009,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6992,"src":"4134:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7010,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7000,"src":"4142:7:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":7011,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7002,"src":"4151:10:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7008,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7055,"src":"4107:26:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory) view returns (bytes memory)"}},"id":7012,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4107:55:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":6998,"id":7013,"nodeType":"Return","src":"4100:62:29"}]},"documentation":{"id":6990,"nodeType":"StructuredDocumentation","src":"3781:130:29","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call."},"id":7015,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"3925:20:29","nodeType":"FunctionDefinition","parameters":{"id":6995,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6992,"mutability":"mutable","name":"target","nameLocation":"3954:6:29","nodeType":"VariableDeclaration","scope":7015,"src":"3946:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6991,"name":"address","nodeType":"ElementaryTypeName","src":"3946:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6994,"mutability":"mutable","name":"data","nameLocation":"3975:4:29","nodeType":"VariableDeclaration","scope":7015,"src":"3962:17:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6993,"name":"bytes","nodeType":"ElementaryTypeName","src":"3962:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3945:35:29"},"returnParameters":{"id":6998,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6997,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7015,"src":"3999:12:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6996,"name":"bytes","nodeType":"ElementaryTypeName","src":"3999:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3998:14:29"},"scope":7098,"src":"3916:253:29","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":7054,"nodeType":"Block","src":"4595:424:29","statements":[{"condition":{"id":7028,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4609:8:29","subExpression":{"id":7027,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7020,"src":"4610:7:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7052,"nodeType":"Block","src":"4669:344:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7034,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7022,"src":"4857:10:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7035,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4868:6:29","memberName":"length","nodeType":"MemberAccess","src":"4857:17:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":7036,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4878:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4857:22:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7042,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":7038,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7018,"src":"4883:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":7039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4890:4:29","memberName":"code","nodeType":"MemberAccess","src":"4883:11:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7040,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4895:6:29","memberName":"length","nodeType":"MemberAccess","src":"4883:18:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":7041,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4905:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4883:23:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4857:49:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7049,"nodeType":"IfStatement","src":"4853:119:29","trueBody":{"id":7048,"nodeType":"Block","src":"4908:64:29","statements":[{"errorCall":{"arguments":[{"id":7045,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7018,"src":"4950:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7044,"name":"AddressEmptyCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6848,"src":"4933:16:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":7046,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4933:24:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7047,"nodeType":"RevertStatement","src":"4926:31:29"}]}},{"expression":{"id":7050,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7022,"src":"4992:10:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":7026,"id":7051,"nodeType":"Return","src":"4985:17:29"}]},"id":7053,"nodeType":"IfStatement","src":"4605:408:29","trueBody":{"id":7033,"nodeType":"Block","src":"4619:44:29","statements":[{"expression":{"arguments":[{"id":7030,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7022,"src":"4641:10:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7029,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7097,"src":"4633:7:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":7031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4633:19:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7032,"nodeType":"ExpressionStatement","src":"4633:19:29"}]}}]},"documentation":{"id":7016,"nodeType":"StructuredDocumentation","src":"4175:257:29","text":" @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target\n was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case\n of an unsuccessful call."},"id":7055,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResultFromTarget","nameLocation":"4446:26:29","nodeType":"FunctionDefinition","parameters":{"id":7023,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7018,"mutability":"mutable","name":"target","nameLocation":"4490:6:29","nodeType":"VariableDeclaration","scope":7055,"src":"4482:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7017,"name":"address","nodeType":"ElementaryTypeName","src":"4482:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7020,"mutability":"mutable","name":"success","nameLocation":"4511:7:29","nodeType":"VariableDeclaration","scope":7055,"src":"4506:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7019,"name":"bool","nodeType":"ElementaryTypeName","src":"4506:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7022,"mutability":"mutable","name":"returndata","nameLocation":"4541:10:29","nodeType":"VariableDeclaration","scope":7055,"src":"4528:23:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7021,"name":"bytes","nodeType":"ElementaryTypeName","src":"4528:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4472:85:29"},"returnParameters":{"id":7026,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7025,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7055,"src":"4581:12:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7024,"name":"bytes","nodeType":"ElementaryTypeName","src":"4581:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4580:14:29"},"scope":7098,"src":"4437:582:29","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":7076,"nodeType":"Block","src":"5323:122:29","statements":[{"condition":{"id":7066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5337:8:29","subExpression":{"id":7065,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7058,"src":"5338:7:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7074,"nodeType":"Block","src":"5397:42:29","statements":[{"expression":{"id":7072,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7060,"src":"5418:10:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":7064,"id":7073,"nodeType":"Return","src":"5411:17:29"}]},"id":7075,"nodeType":"IfStatement","src":"5333:106:29","trueBody":{"id":7071,"nodeType":"Block","src":"5347:44:29","statements":[{"expression":{"arguments":[{"id":7068,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7060,"src":"5369:10:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7067,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7097,"src":"5361:7:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":7069,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5361:19:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7070,"nodeType":"ExpressionStatement","src":"5361:19:29"}]}}]},"documentation":{"id":7056,"nodeType":"StructuredDocumentation","src":"5025:191:29","text":" @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the\n revert reason or with a default {Errors.FailedCall} error."},"id":7077,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResult","nameLocation":"5230:16:29","nodeType":"FunctionDefinition","parameters":{"id":7061,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7058,"mutability":"mutable","name":"success","nameLocation":"5252:7:29","nodeType":"VariableDeclaration","scope":7077,"src":"5247:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7057,"name":"bool","nodeType":"ElementaryTypeName","src":"5247:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7060,"mutability":"mutable","name":"returndata","nameLocation":"5274:10:29","nodeType":"VariableDeclaration","scope":7077,"src":"5261:23:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7059,"name":"bytes","nodeType":"ElementaryTypeName","src":"5261:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5246:39:29"},"returnParameters":{"id":7064,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7063,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7077,"src":"5309:12:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7062,"name":"bytes","nodeType":"ElementaryTypeName","src":"5309:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5308:14:29"},"scope":7098,"src":"5221:224:29","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7096,"nodeType":"Block","src":"5614:432:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7086,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7083,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7080,"src":"5690:10:29","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5701:6:29","memberName":"length","nodeType":"MemberAccess","src":"5690:17:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":7085,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5710:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5690:21:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7094,"nodeType":"Block","src":"5989:51:29","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":7089,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7150,"src":"6010:6:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$7150_$","typeString":"type(library Errors)"}},"id":7091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6017:10:29","memberName":"FailedCall","nodeType":"MemberAccess","referencedDeclaration":7141,"src":"6010:17:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":7092,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6010:19:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7093,"nodeType":"RevertStatement","src":"6003:26:29"}]},"id":7095,"nodeType":"IfStatement","src":"5686:354:29","trueBody":{"id":7088,"nodeType":"Block","src":"5713:270:29","statements":[{"AST":{"nodeType":"YulBlock","src":"5840:133:29","statements":[{"nodeType":"YulVariableDeclaration","src":"5858:40:29","value":{"arguments":[{"name":"returndata","nodeType":"YulIdentifier","src":"5887:10:29"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5881:5:29"},"nodeType":"YulFunctionCall","src":"5881:17:29"},"variables":[{"name":"returndata_size","nodeType":"YulTypedName","src":"5862:15:29","type":""}]},{"expression":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5926:2:29","type":"","value":"32"},{"name":"returndata","nodeType":"YulIdentifier","src":"5930:10:29"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5922:3:29"},"nodeType":"YulFunctionCall","src":"5922:19:29"},{"name":"returndata_size","nodeType":"YulIdentifier","src":"5943:15:29"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5915:6:29"},"nodeType":"YulFunctionCall","src":"5915:44:29"},"nodeType":"YulExpressionStatement","src":"5915:44:29"}]},"evmVersion":"paris","externalReferences":[{"declaration":7080,"isOffset":false,"isSlot":false,"src":"5887:10:29","valueSize":1},{"declaration":7080,"isOffset":false,"isSlot":false,"src":"5930:10:29","valueSize":1}],"flags":["memory-safe"],"id":7087,"nodeType":"InlineAssembly","src":"5815:158:29"}]}}]},"documentation":{"id":7078,"nodeType":"StructuredDocumentation","src":"5451:103:29","text":" @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}."},"id":7097,"implemented":true,"kind":"function","modifiers":[],"name":"_revert","nameLocation":"5568:7:29","nodeType":"FunctionDefinition","parameters":{"id":7081,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7080,"mutability":"mutable","name":"returndata","nameLocation":"5589:10:29","nodeType":"VariableDeclaration","scope":7097,"src":"5576:23:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7079,"name":"bytes","nodeType":"ElementaryTypeName","src":"5576:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5575:25:29"},"returnParameters":{"id":7082,"nodeType":"ParameterList","parameters":[],"src":"5614:0:29"},"scope":7098,"src":"5559:487:29","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":7099,"src":"233:5815:29","usedErrors":[6848],"usedEvents":[]}],"src":"101:5948:29"},"id":29},"@openzeppelin/contracts/utils/Context.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","exportedSymbols":{"Context":[7128]},"id":7129,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7100,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:30"},{"abstract":true,"baseContracts":[],"canonicalName":"Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":7101,"nodeType":"StructuredDocumentation","src":"127:496:30","text":" @dev Provides information about the current execution context, including the\n sender of the transaction and its data. While these are generally available\n via msg.sender and msg.data, they should not be accessed in such a direct\n manner, since when dealing with meta-transactions the account sending and\n paying for execution may not be the actual sender (as far as an application\n is concerned).\n This contract is only required for intermediate, library-like contracts."},"fullyImplemented":true,"id":7128,"linearizedBaseContracts":[7128],"name":"Context","nameLocation":"642:7:30","nodeType":"ContractDefinition","nodes":[{"body":{"id":7109,"nodeType":"Block","src":"718:34:30","statements":[{"expression":{"expression":{"id":7106,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967281,"src":"735:3:30","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":7107,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"739:6:30","memberName":"sender","nodeType":"MemberAccess","src":"735:10:30","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":7105,"id":7108,"nodeType":"Return","src":"728:17:30"}]},"id":7110,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"665:10:30","nodeType":"FunctionDefinition","parameters":{"id":7102,"nodeType":"ParameterList","parameters":[],"src":"675:2:30"},"returnParameters":{"id":7105,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7104,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7110,"src":"709:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7103,"name":"address","nodeType":"ElementaryTypeName","src":"709:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"708:9:30"},"scope":7128,"src":"656:96:30","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":7118,"nodeType":"Block","src":"825:32:30","statements":[{"expression":{"expression":{"id":7115,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967281,"src":"842:3:30","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":7116,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"846:4:30","memberName":"data","nodeType":"MemberAccess","src":"842:8:30","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":7114,"id":7117,"nodeType":"Return","src":"835:15:30"}]},"id":7119,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"767:8:30","nodeType":"FunctionDefinition","parameters":{"id":7111,"nodeType":"ParameterList","parameters":[],"src":"775:2:30"},"returnParameters":{"id":7114,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7113,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7119,"src":"809:14:30","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":7112,"name":"bytes","nodeType":"ElementaryTypeName","src":"809:5:30","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"808:16:30"},"scope":7128,"src":"758:99:30","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":7126,"nodeType":"Block","src":"935:25:30","statements":[{"expression":{"hexValue":"30","id":7124,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"952:1:30","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":7123,"id":7125,"nodeType":"Return","src":"945:8:30"}]},"id":7127,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"872:20:30","nodeType":"FunctionDefinition","parameters":{"id":7120,"nodeType":"ParameterList","parameters":[],"src":"892:2:30"},"returnParameters":{"id":7123,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7122,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7127,"src":"926:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7121,"name":"uint256","nodeType":"ElementaryTypeName","src":"926:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"925:9:30"},"scope":7128,"src":"863:97:30","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":7129,"src":"624:338:30","usedErrors":[],"usedEvents":[]}],"src":"101:862:30"},"id":30},"@openzeppelin/contracts/utils/Errors.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Errors.sol","exportedSymbols":{"Errors":[7150]},"id":7151,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7130,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"100:24:31"},{"abstract":false,"baseContracts":[],"canonicalName":"Errors","contractDependencies":[],"contractKind":"library","documentation":{"id":7131,"nodeType":"StructuredDocumentation","src":"126:284:31","text":" @dev Collection of common custom errors used in multiple contracts\n IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.\n It is recommended to avoid relying on the error API for critical functionality.\n _Available since v5.1._"},"fullyImplemented":true,"id":7150,"linearizedBaseContracts":[7150],"name":"Errors","nameLocation":"419:6:31","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":7132,"nodeType":"StructuredDocumentation","src":"432:94:31","text":" @dev The ETH balance of the account is not enough to perform the operation."},"errorSelector":"cf479181","id":7138,"name":"InsufficientBalance","nameLocation":"537:19:31","nodeType":"ErrorDefinition","parameters":{"id":7137,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7134,"mutability":"mutable","name":"balance","nameLocation":"565:7:31","nodeType":"VariableDeclaration","scope":7138,"src":"557:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7133,"name":"uint256","nodeType":"ElementaryTypeName","src":"557:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7136,"mutability":"mutable","name":"needed","nameLocation":"582:6:31","nodeType":"VariableDeclaration","scope":7138,"src":"574:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7135,"name":"uint256","nodeType":"ElementaryTypeName","src":"574:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"556:33:31"},"src":"531:59:31"},{"documentation":{"id":7139,"nodeType":"StructuredDocumentation","src":"596:89:31","text":" @dev A call to an address target failed. The target may have reverted."},"errorSelector":"d6bda275","id":7141,"name":"FailedCall","nameLocation":"696:10:31","nodeType":"ErrorDefinition","parameters":{"id":7140,"nodeType":"ParameterList","parameters":[],"src":"706:2:31"},"src":"690:19:31"},{"documentation":{"id":7142,"nodeType":"StructuredDocumentation","src":"715:46:31","text":" @dev The deployment failed."},"errorSelector":"b06ebf3d","id":7144,"name":"FailedDeployment","nameLocation":"772:16:31","nodeType":"ErrorDefinition","parameters":{"id":7143,"nodeType":"ParameterList","parameters":[],"src":"788:2:31"},"src":"766:25:31"},{"documentation":{"id":7145,"nodeType":"StructuredDocumentation","src":"797:58:31","text":" @dev A necessary precompile is missing."},"errorSelector":"42b01bce","id":7149,"name":"MissingPrecompile","nameLocation":"866:17:31","nodeType":"ErrorDefinition","parameters":{"id":7148,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7147,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7149,"src":"884:7:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7146,"name":"address","nodeType":"ElementaryTypeName","src":"884:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"883:9:31"},"src":"860:33:31"}],"scope":7151,"src":"411:484:31","usedErrors":[7138,7141,7144,7149],"usedEvents":[]}],"src":"100:796:31"},"id":31},"@openzeppelin/contracts/utils/Nonces.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Nonces.sol","exportedSymbols":{"Nonces":[7218]},"id":7219,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7152,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"99:24:32"},{"abstract":true,"baseContracts":[],"canonicalName":"Nonces","contractDependencies":[],"contractKind":"contract","documentation":{"id":7153,"nodeType":"StructuredDocumentation","src":"125:83:32","text":" @dev Provides tracking nonces for addresses. Nonces will only increment."},"fullyImplemented":true,"id":7218,"linearizedBaseContracts":[7218],"name":"Nonces","nameLocation":"227:6:32","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":7154,"nodeType":"StructuredDocumentation","src":"240:90:32","text":" @dev The nonce used for an `account` is not the expected current nonce."},"errorSelector":"752d88c0","id":7160,"name":"InvalidAccountNonce","nameLocation":"341:19:32","nodeType":"ErrorDefinition","parameters":{"id":7159,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7156,"mutability":"mutable","name":"account","nameLocation":"369:7:32","nodeType":"VariableDeclaration","scope":7160,"src":"361:15:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7155,"name":"address","nodeType":"ElementaryTypeName","src":"361:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7158,"mutability":"mutable","name":"currentNonce","nameLocation":"386:12:32","nodeType":"VariableDeclaration","scope":7160,"src":"378:20:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7157,"name":"uint256","nodeType":"ElementaryTypeName","src":"378:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"360:39:32"},"src":"335:65:32"},{"constant":false,"id":7164,"mutability":"mutable","name":"_nonces","nameLocation":"450:7:32","nodeType":"VariableDeclaration","scope":7218,"src":"406:51:32","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":7163,"keyName":"account","keyNameLocation":"422:7:32","keyType":{"id":7161,"name":"address","nodeType":"ElementaryTypeName","src":"414:7:32","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"406:35:32","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":7162,"name":"uint256","nodeType":"ElementaryTypeName","src":"433:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"body":{"id":7176,"nodeType":"Block","src":"607:38:32","statements":[{"expression":{"baseExpression":{"id":7172,"name":"_nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7164,"src":"624:7:32","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":7174,"indexExpression":{"id":7173,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7167,"src":"632:5:32","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"624:14:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7171,"id":7175,"nodeType":"Return","src":"617:21:32"}]},"documentation":{"id":7165,"nodeType":"StructuredDocumentation","src":"464:69:32","text":" @dev Returns the next unused nonce for an address."},"functionSelector":"7ecebe00","id":7177,"implemented":true,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"547:6:32","nodeType":"FunctionDefinition","parameters":{"id":7168,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7167,"mutability":"mutable","name":"owner","nameLocation":"562:5:32","nodeType":"VariableDeclaration","scope":7177,"src":"554:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7166,"name":"address","nodeType":"ElementaryTypeName","src":"554:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"553:15:32"},"returnParameters":{"id":7171,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7170,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7177,"src":"598:7:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7169,"name":"uint256","nodeType":"ElementaryTypeName","src":"598:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"597:9:32"},"scope":7218,"src":"538:107:32","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":7191,"nodeType":"Block","src":"828:326:32","statements":[{"id":7190,"nodeType":"UncheckedBlock","src":"1031:117:32","statements":[{"expression":{"id":7188,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1121:16:32","subExpression":{"baseExpression":{"id":7185,"name":"_nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7164,"src":"1121:7:32","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":7187,"indexExpression":{"id":7186,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7180,"src":"1129:5:32","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1121:14:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7184,"id":7189,"nodeType":"Return","src":"1114:23:32"}]}]},"documentation":{"id":7178,"nodeType":"StructuredDocumentation","src":"651:103:32","text":" @dev Consumes a nonce.\n Returns the current value and increments nonce."},"id":7192,"implemented":true,"kind":"function","modifiers":[],"name":"_useNonce","nameLocation":"768:9:32","nodeType":"FunctionDefinition","parameters":{"id":7181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7180,"mutability":"mutable","name":"owner","nameLocation":"786:5:32","nodeType":"VariableDeclaration","scope":7192,"src":"778:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7179,"name":"address","nodeType":"ElementaryTypeName","src":"778:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"777:15:32"},"returnParameters":{"id":7184,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7183,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7192,"src":"819:7:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7182,"name":"uint256","nodeType":"ElementaryTypeName","src":"819:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"818:9:32"},"scope":7218,"src":"759:395:32","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":7216,"nodeType":"Block","src":"1338:149:32","statements":[{"assignments":[7201],"declarations":[{"constant":false,"id":7201,"mutability":"mutable","name":"current","nameLocation":"1356:7:32","nodeType":"VariableDeclaration","scope":7216,"src":"1348:15:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7200,"name":"uint256","nodeType":"ElementaryTypeName","src":"1348:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7205,"initialValue":{"arguments":[{"id":7203,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7195,"src":"1376:5:32","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7202,"name":"_useNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7192,"src":"1366:9:32","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$","typeString":"function (address) returns (uint256)"}},"id":7204,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1366:16:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1348:34:32"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7206,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7197,"src":"1396:5:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7207,"name":"current","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7201,"src":"1405:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1396:16:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7215,"nodeType":"IfStatement","src":"1392:89:32","trueBody":{"id":7214,"nodeType":"Block","src":"1414:67:32","statements":[{"errorCall":{"arguments":[{"id":7210,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7195,"src":"1455:5:32","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7211,"name":"current","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7201,"src":"1462:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7209,"name":"InvalidAccountNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7160,"src":"1435:19:32","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256) pure"}},"id":7212,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1435:35:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7213,"nodeType":"RevertStatement","src":"1428:42:32"}]}}]},"documentation":{"id":7193,"nodeType":"StructuredDocumentation","src":"1160:100:32","text":" @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`."},"id":7217,"implemented":true,"kind":"function","modifiers":[],"name":"_useCheckedNonce","nameLocation":"1274:16:32","nodeType":"FunctionDefinition","parameters":{"id":7198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7195,"mutability":"mutable","name":"owner","nameLocation":"1299:5:32","nodeType":"VariableDeclaration","scope":7217,"src":"1291:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7194,"name":"address","nodeType":"ElementaryTypeName","src":"1291:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7197,"mutability":"mutable","name":"nonce","nameLocation":"1314:5:32","nodeType":"VariableDeclaration","scope":7217,"src":"1306:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7196,"name":"uint256","nodeType":"ElementaryTypeName","src":"1306:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1290:30:32"},"returnParameters":{"id":7199,"nodeType":"ParameterList","parameters":[],"src":"1338:0:32"},"scope":7218,"src":"1265:222:32","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":7219,"src":"209:1280:32","usedErrors":[7160],"usedEvents":[]}],"src":"99:1391:32"},"id":32},"@openzeppelin/contracts/utils/Panic.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","exportedSymbols":{"Panic":[7270]},"id":7271,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7220,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"99:24:33"},{"abstract":false,"baseContracts":[],"canonicalName":"Panic","contractDependencies":[],"contractKind":"library","documentation":{"id":7221,"nodeType":"StructuredDocumentation","src":"125:489:33","text":" @dev Helper library for emitting standardized panic codes.\n ```solidity\n contract Example {\n using Panic for uint256;\n // Use any of the declared internal constants\n function foo() { Panic.GENERIC.panic(); }\n // Alternatively\n function foo() { Panic.panic(Panic.GENERIC); }\n }\n ```\n Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].\n _Available since v5.1._"},"fullyImplemented":true,"id":7270,"linearizedBaseContracts":[7270],"name":"Panic","nameLocation":"665:5:33","nodeType":"ContractDefinition","nodes":[{"constant":true,"documentation":{"id":7222,"nodeType":"StructuredDocumentation","src":"677:36:33","text":"@dev generic / unspecified error"},"id":7225,"mutability":"constant","name":"GENERIC","nameLocation":"744:7:33","nodeType":"VariableDeclaration","scope":7270,"src":"718:40:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7223,"name":"uint256","nodeType":"ElementaryTypeName","src":"718:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783030","id":7224,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"754:4:33","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0x00"},"visibility":"internal"},{"constant":true,"documentation":{"id":7226,"nodeType":"StructuredDocumentation","src":"764:37:33","text":"@dev used by the assert() builtin"},"id":7229,"mutability":"constant","name":"ASSERT","nameLocation":"832:6:33","nodeType":"VariableDeclaration","scope":7270,"src":"806:39:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7227,"name":"uint256","nodeType":"ElementaryTypeName","src":"806:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783031","id":7228,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"841:4:33","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"0x01"},"visibility":"internal"},{"constant":true,"documentation":{"id":7230,"nodeType":"StructuredDocumentation","src":"851:41:33","text":"@dev arithmetic underflow or overflow"},"id":7233,"mutability":"constant","name":"UNDER_OVERFLOW","nameLocation":"923:14:33","nodeType":"VariableDeclaration","scope":7270,"src":"897:47:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7231,"name":"uint256","nodeType":"ElementaryTypeName","src":"897:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783131","id":7232,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"940:4:33","typeDescriptions":{"typeIdentifier":"t_rational_17_by_1","typeString":"int_const 17"},"value":"0x11"},"visibility":"internal"},{"constant":true,"documentation":{"id":7234,"nodeType":"StructuredDocumentation","src":"950:35:33","text":"@dev division or modulo by zero"},"id":7237,"mutability":"constant","name":"DIVISION_BY_ZERO","nameLocation":"1016:16:33","nodeType":"VariableDeclaration","scope":7270,"src":"990:49:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7235,"name":"uint256","nodeType":"ElementaryTypeName","src":"990:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783132","id":7236,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1035:4:33","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"0x12"},"visibility":"internal"},{"constant":true,"documentation":{"id":7238,"nodeType":"StructuredDocumentation","src":"1045:30:33","text":"@dev enum conversion error"},"id":7241,"mutability":"constant","name":"ENUM_CONVERSION_ERROR","nameLocation":"1106:21:33","nodeType":"VariableDeclaration","scope":7270,"src":"1080:54:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7239,"name":"uint256","nodeType":"ElementaryTypeName","src":"1080:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783231","id":7240,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1130:4:33","typeDescriptions":{"typeIdentifier":"t_rational_33_by_1","typeString":"int_const 33"},"value":"0x21"},"visibility":"internal"},{"constant":true,"documentation":{"id":7242,"nodeType":"StructuredDocumentation","src":"1140:36:33","text":"@dev invalid encoding in storage"},"id":7245,"mutability":"constant","name":"STORAGE_ENCODING_ERROR","nameLocation":"1207:22:33","nodeType":"VariableDeclaration","scope":7270,"src":"1181:55:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7243,"name":"uint256","nodeType":"ElementaryTypeName","src":"1181:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783232","id":7244,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1232:4:33","typeDescriptions":{"typeIdentifier":"t_rational_34_by_1","typeString":"int_const 34"},"value":"0x22"},"visibility":"internal"},{"constant":true,"documentation":{"id":7246,"nodeType":"StructuredDocumentation","src":"1242:24:33","text":"@dev empty array pop"},"id":7249,"mutability":"constant","name":"EMPTY_ARRAY_POP","nameLocation":"1297:15:33","nodeType":"VariableDeclaration","scope":7270,"src":"1271:48:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7247,"name":"uint256","nodeType":"ElementaryTypeName","src":"1271:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783331","id":7248,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1315:4:33","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"0x31"},"visibility":"internal"},{"constant":true,"documentation":{"id":7250,"nodeType":"StructuredDocumentation","src":"1325:35:33","text":"@dev array out of bounds access"},"id":7253,"mutability":"constant","name":"ARRAY_OUT_OF_BOUNDS","nameLocation":"1391:19:33","nodeType":"VariableDeclaration","scope":7270,"src":"1365:52:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7251,"name":"uint256","nodeType":"ElementaryTypeName","src":"1365:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783332","id":7252,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1413:4:33","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"0x32"},"visibility":"internal"},{"constant":true,"documentation":{"id":7254,"nodeType":"StructuredDocumentation","src":"1423:65:33","text":"@dev resource error (too large allocation or too large array)"},"id":7257,"mutability":"constant","name":"RESOURCE_ERROR","nameLocation":"1519:14:33","nodeType":"VariableDeclaration","scope":7270,"src":"1493:47:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7255,"name":"uint256","nodeType":"ElementaryTypeName","src":"1493:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783431","id":7256,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1536:4:33","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"0x41"},"visibility":"internal"},{"constant":true,"documentation":{"id":7258,"nodeType":"StructuredDocumentation","src":"1546:42:33","text":"@dev calling invalid internal function"},"id":7261,"mutability":"constant","name":"INVALID_INTERNAL_FUNCTION","nameLocation":"1619:25:33","nodeType":"VariableDeclaration","scope":7270,"src":"1593:58:33","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7259,"name":"uint256","nodeType":"ElementaryTypeName","src":"1593:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783531","id":7260,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1647:4:33","typeDescriptions":{"typeIdentifier":"t_rational_81_by_1","typeString":"int_const 81"},"value":"0x51"},"visibility":"internal"},{"body":{"id":7268,"nodeType":"Block","src":"1819:151:33","statements":[{"AST":{"nodeType":"YulBlock","src":"1854:110:33","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1875:4:33","type":"","value":"0x00"},{"kind":"number","nodeType":"YulLiteral","src":"1881:10:33","type":"","value":"0x4e487b71"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1868:6:33"},"nodeType":"YulFunctionCall","src":"1868:24:33"},"nodeType":"YulExpressionStatement","src":"1868:24:33"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1912:4:33","type":"","value":"0x20"},{"name":"code","nodeType":"YulIdentifier","src":"1918:4:33"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1905:6:33"},"nodeType":"YulFunctionCall","src":"1905:18:33"},"nodeType":"YulExpressionStatement","src":"1905:18:33"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1943:4:33","type":"","value":"0x1c"},{"kind":"number","nodeType":"YulLiteral","src":"1949:4:33","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1936:6:33"},"nodeType":"YulFunctionCall","src":"1936:18:33"},"nodeType":"YulExpressionStatement","src":"1936:18:33"}]},"evmVersion":"paris","externalReferences":[{"declaration":7264,"isOffset":false,"isSlot":false,"src":"1918:4:33","valueSize":1}],"flags":["memory-safe"],"id":7267,"nodeType":"InlineAssembly","src":"1829:135:33"}]},"documentation":{"id":7262,"nodeType":"StructuredDocumentation","src":"1658:113:33","text":"@dev Reverts with a panic code. Recommended to use with\n the internal constants with predefined codes."},"id":7269,"implemented":true,"kind":"function","modifiers":[],"name":"panic","nameLocation":"1785:5:33","nodeType":"FunctionDefinition","parameters":{"id":7265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7264,"mutability":"mutable","name":"code","nameLocation":"1799:4:33","nodeType":"VariableDeclaration","scope":7269,"src":"1791:12:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7263,"name":"uint256","nodeType":"ElementaryTypeName","src":"1791:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1790:14:33"},"returnParameters":{"id":7266,"nodeType":"ParameterList","parameters":[],"src":"1819:0:33"},"scope":7270,"src":"1776:194:33","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":7271,"src":"657:1315:33","usedErrors":[],"usedEvents":[]}],"src":"99:1874:33"},"id":33},"@openzeppelin/contracts/utils/ShortStrings.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/ShortStrings.sol","exportedSymbols":{"ShortString":[7276],"ShortStrings":[7487],"StorageSlot":[7611]},"id":7488,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7272,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:34"},{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","file":"./StorageSlot.sol","id":7274,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7488,"sourceUnit":7612,"src":"132:46:34","symbolAliases":[{"foreign":{"id":7273,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7611,"src":"140:11:34","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"canonicalName":"ShortString","id":7276,"name":"ShortString","nameLocation":"353:11:34","nodeType":"UserDefinedValueTypeDefinition","src":"348:28:34","underlyingType":{"id":7275,"name":"bytes32","nodeType":"ElementaryTypeName","src":"368:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},{"abstract":false,"baseContracts":[],"canonicalName":"ShortStrings","contractDependencies":[],"contractKind":"library","documentation":{"id":7277,"nodeType":"StructuredDocumentation","src":"378:876:34","text":" @dev This library provides functions to convert short memory strings\n into a `ShortString` type that can be used as an immutable variable.\n Strings of arbitrary length can be optimized using this library if\n they are short enough (up to 31 bytes) by packing them with their\n length (1 byte) in a single EVM word (32 bytes). Additionally, a\n fallback mechanism can be used for every other case.\n Usage example:\n ```solidity\n contract Named {\n using ShortStrings for *;\n ShortString private immutable _name;\n string private _nameFallback;\n constructor(string memory contractName) {\n _name = contractName.toShortStringWithFallback(_nameFallback);\n }\n function name() external view returns (string memory) {\n return _name.toStringWithFallback(_nameFallback);\n }\n }\n ```"},"fullyImplemented":true,"id":7487,"linearizedBaseContracts":[7487],"name":"ShortStrings","nameLocation":"1263:12:34","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":7280,"mutability":"constant","name":"FALLBACK_SENTINEL","nameLocation":"1370:17:34","nodeType":"VariableDeclaration","scope":7487,"src":"1345:111:34","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7278,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1345:7:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307830303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030304646","id":7279,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1390:66:34","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0x00000000000000000000000000000000000000000000000000000000000000FF"},"visibility":"private"},{"errorSelector":"305a27a9","id":7284,"name":"StringTooLong","nameLocation":"1469:13:34","nodeType":"ErrorDefinition","parameters":{"id":7283,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7282,"mutability":"mutable","name":"str","nameLocation":"1490:3:34","nodeType":"VariableDeclaration","scope":7284,"src":"1483:10:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7281,"name":"string","nodeType":"ElementaryTypeName","src":"1483:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1482:12:34"},"src":"1463:32:34"},{"errorSelector":"b3512b0c","id":7286,"name":"InvalidShortString","nameLocation":"1506:18:34","nodeType":"ErrorDefinition","parameters":{"id":7285,"nodeType":"ParameterList","parameters":[],"src":"1524:2:34"},"src":"1500:27:34"},{"body":{"id":7329,"nodeType":"Block","src":"1786:208:34","statements":[{"assignments":[7296],"declarations":[{"constant":false,"id":7296,"mutability":"mutable","name":"bstr","nameLocation":"1809:4:34","nodeType":"VariableDeclaration","scope":7329,"src":"1796:17:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7295,"name":"bytes","nodeType":"ElementaryTypeName","src":"1796:5:34","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":7301,"initialValue":{"arguments":[{"id":7299,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7289,"src":"1822:3:34","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7298,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1816:5:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7297,"name":"bytes","nodeType":"ElementaryTypeName","src":"1816:5:34","typeDescriptions":{}}},"id":7300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1816:10:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"1796:30:34"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7302,"name":"bstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7296,"src":"1840:4:34","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1845:6:34","memberName":"length","nodeType":"MemberAccess","src":"1840:11:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3331","id":7304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1854:2:34","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"31"},"src":"1840:16:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7311,"nodeType":"IfStatement","src":"1836:72:34","trueBody":{"id":7310,"nodeType":"Block","src":"1858:50:34","statements":[{"errorCall":{"arguments":[{"id":7307,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7289,"src":"1893:3:34","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7306,"name":"StringTooLong","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7284,"src":"1879:13:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":7308,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1879:18:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7309,"nodeType":"RevertStatement","src":"1872:25:34"}]}},{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":7320,"name":"bstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7296,"src":"1965:4:34","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7319,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1957:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":7318,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1957:7:34","typeDescriptions":{}}},"id":7321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1957:13:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":7317,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1949:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":7316,"name":"uint256","nodeType":"ElementaryTypeName","src":"1949:7:34","typeDescriptions":{}}},"id":7322,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1949:22:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"expression":{"id":7323,"name":"bstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7296,"src":"1974:4:34","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1979:6:34","memberName":"length","nodeType":"MemberAccess","src":"1974:11:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1949:36:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7315,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1941:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":7314,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1941:7:34","typeDescriptions":{}}},"id":7326,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1941:45:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":7312,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7276,"src":"1924:11:34","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$7276_$","typeString":"type(ShortString)"}},"id":7313,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1936:4:34","memberName":"wrap","nodeType":"MemberAccess","src":"1924:16:34","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes32_$returns$_t_userDefinedValueType$_ShortString_$7276_$","typeString":"function (bytes32) pure returns (ShortString)"}},"id":7327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1924:63:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"functionReturnParameters":7294,"id":7328,"nodeType":"Return","src":"1917:70:34"}]},"documentation":{"id":7287,"nodeType":"StructuredDocumentation","src":"1533:170:34","text":" @dev Encode a string of at most 31 chars into a `ShortString`.\n This will trigger a `StringTooLong` error is the input string is too long."},"id":7330,"implemented":true,"kind":"function","modifiers":[],"name":"toShortString","nameLocation":"1717:13:34","nodeType":"FunctionDefinition","parameters":{"id":7290,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7289,"mutability":"mutable","name":"str","nameLocation":"1745:3:34","nodeType":"VariableDeclaration","scope":7330,"src":"1731:17:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7288,"name":"string","nodeType":"ElementaryTypeName","src":"1731:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1730:19:34"},"returnParameters":{"id":7294,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7293,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7330,"src":"1773:11:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"},"typeName":{"id":7292,"nodeType":"UserDefinedTypeName","pathNode":{"id":7291,"name":"ShortString","nameLocations":["1773:11:34"],"nodeType":"IdentifierPath","referencedDeclaration":7276,"src":"1773:11:34"},"referencedDeclaration":7276,"src":"1773:11:34","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"visibility":"internal"}],"src":"1772:13:34"},"scope":7487,"src":"1708:286:34","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7355,"nodeType":"Block","src":"2152:304:34","statements":[{"assignments":[7340],"declarations":[{"constant":false,"id":7340,"mutability":"mutable","name":"len","nameLocation":"2170:3:34","nodeType":"VariableDeclaration","scope":7355,"src":"2162:11:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7339,"name":"uint256","nodeType":"ElementaryTypeName","src":"2162:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7344,"initialValue":{"arguments":[{"id":7342,"name":"sstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7334,"src":"2187:4:34","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}],"id":7341,"name":"byteLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7388,"src":"2176:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$7276_$returns$_t_uint256_$","typeString":"function (ShortString) pure returns (uint256)"}},"id":7343,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2176:16:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2162:30:34"},{"assignments":[7346],"declarations":[{"constant":false,"id":7346,"mutability":"mutable","name":"str","nameLocation":"2294:3:34","nodeType":"VariableDeclaration","scope":7355,"src":"2280:17:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7345,"name":"string","nodeType":"ElementaryTypeName","src":"2280:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":7351,"initialValue":{"arguments":[{"hexValue":"3332","id":7349,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2311:2:34","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"}],"id":7348,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"2300:10:34","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"},"typeName":{"id":7347,"name":"string","nodeType":"ElementaryTypeName","src":"2304:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}}},"id":7350,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2300:14:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"2280:34:34"},{"AST":{"nodeType":"YulBlock","src":"2349:81:34","statements":[{"expression":{"arguments":[{"name":"str","nodeType":"YulIdentifier","src":"2370:3:34"},{"name":"len","nodeType":"YulIdentifier","src":"2375:3:34"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2363:6:34"},"nodeType":"YulFunctionCall","src":"2363:16:34"},"nodeType":"YulExpressionStatement","src":"2363:16:34"},{"expression":{"arguments":[{"arguments":[{"name":"str","nodeType":"YulIdentifier","src":"2403:3:34"},{"kind":"number","nodeType":"YulLiteral","src":"2408:4:34","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2399:3:34"},"nodeType":"YulFunctionCall","src":"2399:14:34"},{"name":"sstr","nodeType":"YulIdentifier","src":"2415:4:34"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2392:6:34"},"nodeType":"YulFunctionCall","src":"2392:28:34"},"nodeType":"YulExpressionStatement","src":"2392:28:34"}]},"evmVersion":"paris","externalReferences":[{"declaration":7340,"isOffset":false,"isSlot":false,"src":"2375:3:34","valueSize":1},{"declaration":7334,"isOffset":false,"isSlot":false,"src":"2415:4:34","valueSize":1},{"declaration":7346,"isOffset":false,"isSlot":false,"src":"2370:3:34","valueSize":1},{"declaration":7346,"isOffset":false,"isSlot":false,"src":"2403:3:34","valueSize":1}],"flags":["memory-safe"],"id":7352,"nodeType":"InlineAssembly","src":"2324:106:34"},{"expression":{"id":7353,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7346,"src":"2446:3:34","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7338,"id":7354,"nodeType":"Return","src":"2439:10:34"}]},"documentation":{"id":7331,"nodeType":"StructuredDocumentation","src":"2000:73:34","text":" @dev Decode a `ShortString` back to a \"normal\" string."},"id":7356,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"2087:8:34","nodeType":"FunctionDefinition","parameters":{"id":7335,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7334,"mutability":"mutable","name":"sstr","nameLocation":"2108:4:34","nodeType":"VariableDeclaration","scope":7356,"src":"2096:16:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"},"typeName":{"id":7333,"nodeType":"UserDefinedTypeName","pathNode":{"id":7332,"name":"ShortString","nameLocations":["2096:11:34"],"nodeType":"IdentifierPath","referencedDeclaration":7276,"src":"2096:11:34"},"referencedDeclaration":7276,"src":"2096:11:34","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"visibility":"internal"}],"src":"2095:18:34"},"returnParameters":{"id":7338,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7337,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7356,"src":"2137:13:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7336,"name":"string","nodeType":"ElementaryTypeName","src":"2137:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2136:15:34"},"scope":7487,"src":"2078:378:34","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7387,"nodeType":"Block","src":"2598:175:34","statements":[{"assignments":[7366],"declarations":[{"constant":false,"id":7366,"mutability":"mutable","name":"result","nameLocation":"2616:6:34","nodeType":"VariableDeclaration","scope":7387,"src":"2608:14:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7365,"name":"uint256","nodeType":"ElementaryTypeName","src":"2608:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7376,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":7371,"name":"sstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7360,"src":"2652:4:34","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}],"expression":{"id":7369,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7276,"src":"2633:11:34","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$7276_$","typeString":"type(ShortString)"}},"id":7370,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2645:6:34","memberName":"unwrap","nodeType":"MemberAccess","src":"2633:18:34","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_ShortString_$7276_$returns$_t_bytes32_$","typeString":"function (ShortString) pure returns (bytes32)"}},"id":7372,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2633:24:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":7368,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2625:7:34","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":7367,"name":"uint256","nodeType":"ElementaryTypeName","src":"2625:7:34","typeDescriptions":{}}},"id":7373,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2625:33:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30784646","id":7374,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2661:4:34","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0xFF"},"src":"2625:40:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2608:57:34"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7377,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7366,"src":"2679:6:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3331","id":7378,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2688:2:34","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"31"},"src":"2679:11:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7384,"nodeType":"IfStatement","src":"2675:69:34","trueBody":{"id":7383,"nodeType":"Block","src":"2692:52:34","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":7380,"name":"InvalidShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7286,"src":"2713:18:34","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":7381,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2713:20:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7382,"nodeType":"RevertStatement","src":"2706:27:34"}]}},{"expression":{"id":7385,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7366,"src":"2760:6:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7364,"id":7386,"nodeType":"Return","src":"2753:13:34"}]},"documentation":{"id":7357,"nodeType":"StructuredDocumentation","src":"2462:61:34","text":" @dev Return the length of a `ShortString`."},"id":7388,"implemented":true,"kind":"function","modifiers":[],"name":"byteLength","nameLocation":"2537:10:34","nodeType":"FunctionDefinition","parameters":{"id":7361,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7360,"mutability":"mutable","name":"sstr","nameLocation":"2560:4:34","nodeType":"VariableDeclaration","scope":7388,"src":"2548:16:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"},"typeName":{"id":7359,"nodeType":"UserDefinedTypeName","pathNode":{"id":7358,"name":"ShortString","nameLocations":["2548:11:34"],"nodeType":"IdentifierPath","referencedDeclaration":7276,"src":"2548:11:34"},"referencedDeclaration":7276,"src":"2548:11:34","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"visibility":"internal"}],"src":"2547:18:34"},"returnParameters":{"id":7364,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7363,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7388,"src":"2589:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7362,"name":"uint256","nodeType":"ElementaryTypeName","src":"2589:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2588:9:34"},"scope":7487,"src":"2528:245:34","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7427,"nodeType":"Block","src":"2996:231:34","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7405,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":7401,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7391,"src":"3016:5:34","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7400,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3010:5:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7399,"name":"bytes","nodeType":"ElementaryTypeName","src":"3010:5:34","typeDescriptions":{}}},"id":7402,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3010:12:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3023:6:34","memberName":"length","nodeType":"MemberAccess","src":"3010:19:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3332","id":7404,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3032:2:34","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"3010:24:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7425,"nodeType":"Block","src":"3094:127:34","statements":[{"expression":{"id":7418,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":7414,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7393,"src":"3134:5:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}],"expression":{"id":7411,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7611,"src":"3108:11:34","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$7611_$","typeString":"type(library StorageSlot)"}},"id":7413,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3120:13:34","memberName":"getStringSlot","nodeType":"MemberAccess","referencedDeclaration":7588,"src":"3108:25:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_storage_ptr_$returns$_t_struct$_StringSlot_$7508_storage_ptr_$","typeString":"function (string storage pointer) pure returns (struct StorageSlot.StringSlot storage pointer)"}},"id":7415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3108:32:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$7508_storage_ptr","typeString":"struct StorageSlot.StringSlot storage pointer"}},"id":7416,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3141:5:34","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":7507,"src":"3108:38:34","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":7417,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7391,"src":"3149:5:34","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"3108:46:34","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":7419,"nodeType":"ExpressionStatement","src":"3108:46:34"},{"expression":{"arguments":[{"id":7422,"name":"FALLBACK_SENTINEL","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7280,"src":"3192:17:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":7420,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7276,"src":"3175:11:34","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$7276_$","typeString":"type(ShortString)"}},"id":7421,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3187:4:34","memberName":"wrap","nodeType":"MemberAccess","src":"3175:16:34","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes32_$returns$_t_userDefinedValueType$_ShortString_$7276_$","typeString":"function (bytes32) pure returns (ShortString)"}},"id":7423,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3175:35:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"functionReturnParameters":7398,"id":7424,"nodeType":"Return","src":"3168:42:34"}]},"id":7426,"nodeType":"IfStatement","src":"3006:215:34","trueBody":{"id":7410,"nodeType":"Block","src":"3036:52:34","statements":[{"expression":{"arguments":[{"id":7407,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7391,"src":"3071:5:34","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7406,"name":"toShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7330,"src":"3057:13:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$returns$_t_userDefinedValueType$_ShortString_$7276_$","typeString":"function (string memory) pure returns (ShortString)"}},"id":7408,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3057:20:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"functionReturnParameters":7398,"id":7409,"nodeType":"Return","src":"3050:27:34"}]}}]},"documentation":{"id":7389,"nodeType":"StructuredDocumentation","src":"2779:103:34","text":" @dev Encode a string into a `ShortString`, or write it to storage if it is too long."},"id":7428,"implemented":true,"kind":"function","modifiers":[],"name":"toShortStringWithFallback","nameLocation":"2896:25:34","nodeType":"FunctionDefinition","parameters":{"id":7394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7391,"mutability":"mutable","name":"value","nameLocation":"2936:5:34","nodeType":"VariableDeclaration","scope":7428,"src":"2922:19:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7390,"name":"string","nodeType":"ElementaryTypeName","src":"2922:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7393,"mutability":"mutable","name":"store","nameLocation":"2958:5:34","nodeType":"VariableDeclaration","scope":7428,"src":"2943:20:34","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":7392,"name":"string","nodeType":"ElementaryTypeName","src":"2943:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2921:43:34"},"returnParameters":{"id":7398,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7397,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7428,"src":"2983:11:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"},"typeName":{"id":7396,"nodeType":"UserDefinedTypeName","pathNode":{"id":7395,"name":"ShortString","nameLocations":["2983:11:34"],"nodeType":"IdentifierPath","referencedDeclaration":7276,"src":"2983:11:34"},"referencedDeclaration":7276,"src":"2983:11:34","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"visibility":"internal"}],"src":"2982:13:34"},"scope":7487,"src":"2887:340:34","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":7454,"nodeType":"Block","src":"3477:158:34","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":7444,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7441,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7432,"src":"3510:5:34","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}],"expression":{"id":7439,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7276,"src":"3491:11:34","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$7276_$","typeString":"type(ShortString)"}},"id":7440,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3503:6:34","memberName":"unwrap","nodeType":"MemberAccess","src":"3491:18:34","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_ShortString_$7276_$returns$_t_bytes32_$","typeString":"function (ShortString) pure returns (bytes32)"}},"id":7442,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3491:25:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7443,"name":"FALLBACK_SENTINEL","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7280,"src":"3520:17:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3491:46:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7452,"nodeType":"Block","src":"3592:37:34","statements":[{"expression":{"id":7450,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7434,"src":"3613:5:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}},"functionReturnParameters":7438,"id":7451,"nodeType":"Return","src":"3606:12:34"}]},"id":7453,"nodeType":"IfStatement","src":"3487:142:34","trueBody":{"id":7449,"nodeType":"Block","src":"3539:47:34","statements":[{"expression":{"arguments":[{"id":7446,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7432,"src":"3569:5:34","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}],"id":7445,"name":"toString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7356,"src":"3560:8:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$7276_$returns$_t_string_memory_ptr_$","typeString":"function (ShortString) pure returns (string memory)"}},"id":7447,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3560:15:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7438,"id":7448,"nodeType":"Return","src":"3553:22:34"}]}}]},"documentation":{"id":7429,"nodeType":"StructuredDocumentation","src":"3233:130:34","text":" @dev Decode a string that was encoded to `ShortString` or written to storage using {toShortStringWithFallback}."},"id":7455,"implemented":true,"kind":"function","modifiers":[],"name":"toStringWithFallback","nameLocation":"3377:20:34","nodeType":"FunctionDefinition","parameters":{"id":7435,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7432,"mutability":"mutable","name":"value","nameLocation":"3410:5:34","nodeType":"VariableDeclaration","scope":7455,"src":"3398:17:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"},"typeName":{"id":7431,"nodeType":"UserDefinedTypeName","pathNode":{"id":7430,"name":"ShortString","nameLocations":["3398:11:34"],"nodeType":"IdentifierPath","referencedDeclaration":7276,"src":"3398:11:34"},"referencedDeclaration":7276,"src":"3398:11:34","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"visibility":"internal"},{"constant":false,"id":7434,"mutability":"mutable","name":"store","nameLocation":"3432:5:34","nodeType":"VariableDeclaration","scope":7455,"src":"3417:20:34","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":7433,"name":"string","nodeType":"ElementaryTypeName","src":"3417:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3397:41:34"},"returnParameters":{"id":7438,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7437,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7455,"src":"3462:13:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7436,"name":"string","nodeType":"ElementaryTypeName","src":"3462:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3461:15:34"},"scope":7487,"src":"3368:267:34","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7485,"nodeType":"Block","src":"4125:174:34","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":7471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7468,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7459,"src":"4158:5:34","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}],"expression":{"id":7466,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7276,"src":"4139:11:34","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$7276_$","typeString":"type(ShortString)"}},"id":7467,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4151:6:34","memberName":"unwrap","nodeType":"MemberAccess","src":"4139:18:34","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_ShortString_$7276_$returns$_t_bytes32_$","typeString":"function (ShortString) pure returns (bytes32)"}},"id":7469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4139:25:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7470,"name":"FALLBACK_SENTINEL","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7280,"src":"4168:17:34","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4139:46:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7483,"nodeType":"Block","src":"4242:51:34","statements":[{"expression":{"expression":{"arguments":[{"id":7479,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7461,"src":"4269:5:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}],"id":7478,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4263:5:34","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7477,"name":"bytes","nodeType":"ElementaryTypeName","src":"4263:5:34","typeDescriptions":{}}},"id":7480,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4263:12:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes storage pointer"}},"id":7481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4276:6:34","memberName":"length","nodeType":"MemberAccess","src":"4263:19:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7465,"id":7482,"nodeType":"Return","src":"4256:26:34"}]},"id":7484,"nodeType":"IfStatement","src":"4135:158:34","trueBody":{"id":7476,"nodeType":"Block","src":"4187:49:34","statements":[{"expression":{"arguments":[{"id":7473,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7459,"src":"4219:5:34","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}],"id":7472,"name":"byteLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7388,"src":"4208:10:34","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$7276_$returns$_t_uint256_$","typeString":"function (ShortString) pure returns (uint256)"}},"id":7474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4208:17:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7465,"id":7475,"nodeType":"Return","src":"4201:24:34"}]}}]},"documentation":{"id":7456,"nodeType":"StructuredDocumentation","src":"3641:374:34","text":" @dev Return the length of a string that was encoded to `ShortString` or written to storage using\n {toShortStringWithFallback}.\n WARNING: This will return the \"byte length\" of the string. This may not reflect the actual length in terms of\n actual characters as the UTF-8 encoding of a single character can span over multiple bytes."},"id":7486,"implemented":true,"kind":"function","modifiers":[],"name":"byteLengthWithFallback","nameLocation":"4029:22:34","nodeType":"FunctionDefinition","parameters":{"id":7462,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7459,"mutability":"mutable","name":"value","nameLocation":"4064:5:34","nodeType":"VariableDeclaration","scope":7486,"src":"4052:17:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"},"typeName":{"id":7458,"nodeType":"UserDefinedTypeName","pathNode":{"id":7457,"name":"ShortString","nameLocations":["4052:11:34"],"nodeType":"IdentifierPath","referencedDeclaration":7276,"src":"4052:11:34"},"referencedDeclaration":7276,"src":"4052:11:34","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"visibility":"internal"},{"constant":false,"id":7461,"mutability":"mutable","name":"store","nameLocation":"4086:5:34","nodeType":"VariableDeclaration","scope":7486,"src":"4071:20:34","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":7460,"name":"string","nodeType":"ElementaryTypeName","src":"4071:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4051:41:34"},"returnParameters":{"id":7465,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7464,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7486,"src":"4116:7:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7463,"name":"uint256","nodeType":"ElementaryTypeName","src":"4116:7:34","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4115:9:34"},"scope":7487,"src":"4020:279:34","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":7488,"src":"1255:3046:34","usedErrors":[7284,7286],"usedEvents":[]}],"src":"106:4196:34"},"id":34},"@openzeppelin/contracts/utils/StorageSlot.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","exportedSymbols":{"StorageSlot":[7611]},"id":7612,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7489,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"193:24:35"},{"abstract":false,"baseContracts":[],"canonicalName":"StorageSlot","contractDependencies":[],"contractKind":"library","documentation":{"id":7490,"nodeType":"StructuredDocumentation","src":"219:1187:35","text":" @dev Library for reading and writing primitive types to specific storage slots.\n Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n This library helps with reading and writing to such slots without the need for inline assembly.\n The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n Example usage to set ERC-1967 implementation slot:\n ```solidity\n contract ERC1967 {\n // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.\n bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n function _getImplementation() internal view returns (address) {\n return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n }\n function _setImplementation(address newImplementation) internal {\n require(newImplementation.code.length > 0);\n StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n }\n }\n ```\n TIP: Consider using this library along with {SlotDerivation}."},"fullyImplemented":true,"id":7611,"linearizedBaseContracts":[7611],"name":"StorageSlot","nameLocation":"1415:11:35","nodeType":"ContractDefinition","nodes":[{"canonicalName":"StorageSlot.AddressSlot","id":7493,"members":[{"constant":false,"id":7492,"mutability":"mutable","name":"value","nameLocation":"1470:5:35","nodeType":"VariableDeclaration","scope":7493,"src":"1462:13:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7491,"name":"address","nodeType":"ElementaryTypeName","src":"1462:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"name":"AddressSlot","nameLocation":"1440:11:35","nodeType":"StructDefinition","scope":7611,"src":"1433:49:35","visibility":"public"},{"canonicalName":"StorageSlot.BooleanSlot","id":7496,"members":[{"constant":false,"id":7495,"mutability":"mutable","name":"value","nameLocation":"1522:5:35","nodeType":"VariableDeclaration","scope":7496,"src":"1517:10:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7494,"name":"bool","nodeType":"ElementaryTypeName","src":"1517:4:35","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"BooleanSlot","nameLocation":"1495:11:35","nodeType":"StructDefinition","scope":7611,"src":"1488:46:35","visibility":"public"},{"canonicalName":"StorageSlot.Bytes32Slot","id":7499,"members":[{"constant":false,"id":7498,"mutability":"mutable","name":"value","nameLocation":"1577:5:35","nodeType":"VariableDeclaration","scope":7499,"src":"1569:13:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7497,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1569:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"name":"Bytes32Slot","nameLocation":"1547:11:35","nodeType":"StructDefinition","scope":7611,"src":"1540:49:35","visibility":"public"},{"canonicalName":"StorageSlot.Uint256Slot","id":7502,"members":[{"constant":false,"id":7501,"mutability":"mutable","name":"value","nameLocation":"1632:5:35","nodeType":"VariableDeclaration","scope":7502,"src":"1624:13:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7500,"name":"uint256","nodeType":"ElementaryTypeName","src":"1624:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Uint256Slot","nameLocation":"1602:11:35","nodeType":"StructDefinition","scope":7611,"src":"1595:49:35","visibility":"public"},{"canonicalName":"StorageSlot.Int256Slot","id":7505,"members":[{"constant":false,"id":7504,"mutability":"mutable","name":"value","nameLocation":"1685:5:35","nodeType":"VariableDeclaration","scope":7505,"src":"1678:12:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7503,"name":"int256","nodeType":"ElementaryTypeName","src":"1678:6:35","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"name":"Int256Slot","nameLocation":"1657:10:35","nodeType":"StructDefinition","scope":7611,"src":"1650:47:35","visibility":"public"},{"canonicalName":"StorageSlot.StringSlot","id":7508,"members":[{"constant":false,"id":7507,"mutability":"mutable","name":"value","nameLocation":"1738:5:35","nodeType":"VariableDeclaration","scope":7508,"src":"1731:12:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":7506,"name":"string","nodeType":"ElementaryTypeName","src":"1731:6:35","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"name":"StringSlot","nameLocation":"1710:10:35","nodeType":"StructDefinition","scope":7611,"src":"1703:47:35","visibility":"public"},{"canonicalName":"StorageSlot.BytesSlot","id":7511,"members":[{"constant":false,"id":7510,"mutability":"mutable","name":"value","nameLocation":"1789:5:35","nodeType":"VariableDeclaration","scope":7511,"src":"1783:11:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":7509,"name":"bytes","nodeType":"ElementaryTypeName","src":"1783:5:35","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"BytesSlot","nameLocation":"1763:9:35","nodeType":"StructDefinition","scope":7611,"src":"1756:45:35","visibility":"public"},{"body":{"id":7521,"nodeType":"Block","src":"1983:79:35","statements":[{"AST":{"nodeType":"YulBlock","src":"2018:38:35","statements":[{"nodeType":"YulAssignment","src":"2032:14:35","value":{"name":"slot","nodeType":"YulIdentifier","src":"2042:4:35"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2032:6:35"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7518,"isOffset":false,"isSlot":true,"src":"2032:6:35","suffix":"slot","valueSize":1},{"declaration":7514,"isOffset":false,"isSlot":false,"src":"2042:4:35","valueSize":1}],"flags":["memory-safe"],"id":7520,"nodeType":"InlineAssembly","src":"1993:63:35"}]},"documentation":{"id":7512,"nodeType":"StructuredDocumentation","src":"1807:87:35","text":" @dev Returns an `AddressSlot` with member `value` located at `slot`."},"id":7522,"implemented":true,"kind":"function","modifiers":[],"name":"getAddressSlot","nameLocation":"1908:14:35","nodeType":"FunctionDefinition","parameters":{"id":7515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7514,"mutability":"mutable","name":"slot","nameLocation":"1931:4:35","nodeType":"VariableDeclaration","scope":7522,"src":"1923:12:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7513,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1923:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1922:14:35"},"returnParameters":{"id":7519,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7518,"mutability":"mutable","name":"r","nameLocation":"1980:1:35","nodeType":"VariableDeclaration","scope":7522,"src":"1960:21:35","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$7493_storage_ptr","typeString":"struct StorageSlot.AddressSlot"},"typeName":{"id":7517,"nodeType":"UserDefinedTypeName","pathNode":{"id":7516,"name":"AddressSlot","nameLocations":["1960:11:35"],"nodeType":"IdentifierPath","referencedDeclaration":7493,"src":"1960:11:35"},"referencedDeclaration":7493,"src":"1960:11:35","typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$7493_storage_ptr","typeString":"struct StorageSlot.AddressSlot"}},"visibility":"internal"}],"src":"1959:23:35"},"scope":7611,"src":"1899:163:35","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7532,"nodeType":"Block","src":"2243:79:35","statements":[{"AST":{"nodeType":"YulBlock","src":"2278:38:35","statements":[{"nodeType":"YulAssignment","src":"2292:14:35","value":{"name":"slot","nodeType":"YulIdentifier","src":"2302:4:35"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2292:6:35"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7529,"isOffset":false,"isSlot":true,"src":"2292:6:35","suffix":"slot","valueSize":1},{"declaration":7525,"isOffset":false,"isSlot":false,"src":"2302:4:35","valueSize":1}],"flags":["memory-safe"],"id":7531,"nodeType":"InlineAssembly","src":"2253:63:35"}]},"documentation":{"id":7523,"nodeType":"StructuredDocumentation","src":"2068:86:35","text":" @dev Returns a `BooleanSlot` with member `value` located at `slot`."},"id":7533,"implemented":true,"kind":"function","modifiers":[],"name":"getBooleanSlot","nameLocation":"2168:14:35","nodeType":"FunctionDefinition","parameters":{"id":7526,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7525,"mutability":"mutable","name":"slot","nameLocation":"2191:4:35","nodeType":"VariableDeclaration","scope":7533,"src":"2183:12:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7524,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2183:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2182:14:35"},"returnParameters":{"id":7530,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7529,"mutability":"mutable","name":"r","nameLocation":"2240:1:35","nodeType":"VariableDeclaration","scope":7533,"src":"2220:21:35","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$7496_storage_ptr","typeString":"struct StorageSlot.BooleanSlot"},"typeName":{"id":7528,"nodeType":"UserDefinedTypeName","pathNode":{"id":7527,"name":"BooleanSlot","nameLocations":["2220:11:35"],"nodeType":"IdentifierPath","referencedDeclaration":7496,"src":"2220:11:35"},"referencedDeclaration":7496,"src":"2220:11:35","typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$7496_storage_ptr","typeString":"struct StorageSlot.BooleanSlot"}},"visibility":"internal"}],"src":"2219:23:35"},"scope":7611,"src":"2159:163:35","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7543,"nodeType":"Block","src":"2503:79:35","statements":[{"AST":{"nodeType":"YulBlock","src":"2538:38:35","statements":[{"nodeType":"YulAssignment","src":"2552:14:35","value":{"name":"slot","nodeType":"YulIdentifier","src":"2562:4:35"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2552:6:35"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7540,"isOffset":false,"isSlot":true,"src":"2552:6:35","suffix":"slot","valueSize":1},{"declaration":7536,"isOffset":false,"isSlot":false,"src":"2562:4:35","valueSize":1}],"flags":["memory-safe"],"id":7542,"nodeType":"InlineAssembly","src":"2513:63:35"}]},"documentation":{"id":7534,"nodeType":"StructuredDocumentation","src":"2328:86:35","text":" @dev Returns a `Bytes32Slot` with member `value` located at `slot`."},"id":7544,"implemented":true,"kind":"function","modifiers":[],"name":"getBytes32Slot","nameLocation":"2428:14:35","nodeType":"FunctionDefinition","parameters":{"id":7537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7536,"mutability":"mutable","name":"slot","nameLocation":"2451:4:35","nodeType":"VariableDeclaration","scope":7544,"src":"2443:12:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7535,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2443:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2442:14:35"},"returnParameters":{"id":7541,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7540,"mutability":"mutable","name":"r","nameLocation":"2500:1:35","nodeType":"VariableDeclaration","scope":7544,"src":"2480:21:35","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Slot_$7499_storage_ptr","typeString":"struct StorageSlot.Bytes32Slot"},"typeName":{"id":7539,"nodeType":"UserDefinedTypeName","pathNode":{"id":7538,"name":"Bytes32Slot","nameLocations":["2480:11:35"],"nodeType":"IdentifierPath","referencedDeclaration":7499,"src":"2480:11:35"},"referencedDeclaration":7499,"src":"2480:11:35","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Slot_$7499_storage_ptr","typeString":"struct StorageSlot.Bytes32Slot"}},"visibility":"internal"}],"src":"2479:23:35"},"scope":7611,"src":"2419:163:35","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7554,"nodeType":"Block","src":"2763:79:35","statements":[{"AST":{"nodeType":"YulBlock","src":"2798:38:35","statements":[{"nodeType":"YulAssignment","src":"2812:14:35","value":{"name":"slot","nodeType":"YulIdentifier","src":"2822:4:35"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"2812:6:35"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7551,"isOffset":false,"isSlot":true,"src":"2812:6:35","suffix":"slot","valueSize":1},{"declaration":7547,"isOffset":false,"isSlot":false,"src":"2822:4:35","valueSize":1}],"flags":["memory-safe"],"id":7553,"nodeType":"InlineAssembly","src":"2773:63:35"}]},"documentation":{"id":7545,"nodeType":"StructuredDocumentation","src":"2588:86:35","text":" @dev Returns a `Uint256Slot` with member `value` located at `slot`."},"id":7555,"implemented":true,"kind":"function","modifiers":[],"name":"getUint256Slot","nameLocation":"2688:14:35","nodeType":"FunctionDefinition","parameters":{"id":7548,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7547,"mutability":"mutable","name":"slot","nameLocation":"2711:4:35","nodeType":"VariableDeclaration","scope":7555,"src":"2703:12:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7546,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2703:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2702:14:35"},"returnParameters":{"id":7552,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7551,"mutability":"mutable","name":"r","nameLocation":"2760:1:35","nodeType":"VariableDeclaration","scope":7555,"src":"2740:21:35","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$7502_storage_ptr","typeString":"struct StorageSlot.Uint256Slot"},"typeName":{"id":7550,"nodeType":"UserDefinedTypeName","pathNode":{"id":7549,"name":"Uint256Slot","nameLocations":["2740:11:35"],"nodeType":"IdentifierPath","referencedDeclaration":7502,"src":"2740:11:35"},"referencedDeclaration":7502,"src":"2740:11:35","typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$7502_storage_ptr","typeString":"struct StorageSlot.Uint256Slot"}},"visibility":"internal"}],"src":"2739:23:35"},"scope":7611,"src":"2679:163:35","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7565,"nodeType":"Block","src":"3020:79:35","statements":[{"AST":{"nodeType":"YulBlock","src":"3055:38:35","statements":[{"nodeType":"YulAssignment","src":"3069:14:35","value":{"name":"slot","nodeType":"YulIdentifier","src":"3079:4:35"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"3069:6:35"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7562,"isOffset":false,"isSlot":true,"src":"3069:6:35","suffix":"slot","valueSize":1},{"declaration":7558,"isOffset":false,"isSlot":false,"src":"3079:4:35","valueSize":1}],"flags":["memory-safe"],"id":7564,"nodeType":"InlineAssembly","src":"3030:63:35"}]},"documentation":{"id":7556,"nodeType":"StructuredDocumentation","src":"2848:85:35","text":" @dev Returns a `Int256Slot` with member `value` located at `slot`."},"id":7566,"implemented":true,"kind":"function","modifiers":[],"name":"getInt256Slot","nameLocation":"2947:13:35","nodeType":"FunctionDefinition","parameters":{"id":7559,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7558,"mutability":"mutable","name":"slot","nameLocation":"2969:4:35","nodeType":"VariableDeclaration","scope":7566,"src":"2961:12:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7557,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2961:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2960:14:35"},"returnParameters":{"id":7563,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7562,"mutability":"mutable","name":"r","nameLocation":"3017:1:35","nodeType":"VariableDeclaration","scope":7566,"src":"2998:20:35","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Int256Slot_$7505_storage_ptr","typeString":"struct StorageSlot.Int256Slot"},"typeName":{"id":7561,"nodeType":"UserDefinedTypeName","pathNode":{"id":7560,"name":"Int256Slot","nameLocations":["2998:10:35"],"nodeType":"IdentifierPath","referencedDeclaration":7505,"src":"2998:10:35"},"referencedDeclaration":7505,"src":"2998:10:35","typeDescriptions":{"typeIdentifier":"t_struct$_Int256Slot_$7505_storage_ptr","typeString":"struct StorageSlot.Int256Slot"}},"visibility":"internal"}],"src":"2997:22:35"},"scope":7611,"src":"2938:161:35","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7576,"nodeType":"Block","src":"3277:79:35","statements":[{"AST":{"nodeType":"YulBlock","src":"3312:38:35","statements":[{"nodeType":"YulAssignment","src":"3326:14:35","value":{"name":"slot","nodeType":"YulIdentifier","src":"3336:4:35"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"3326:6:35"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7573,"isOffset":false,"isSlot":true,"src":"3326:6:35","suffix":"slot","valueSize":1},{"declaration":7569,"isOffset":false,"isSlot":false,"src":"3336:4:35","valueSize":1}],"flags":["memory-safe"],"id":7575,"nodeType":"InlineAssembly","src":"3287:63:35"}]},"documentation":{"id":7567,"nodeType":"StructuredDocumentation","src":"3105:85:35","text":" @dev Returns a `StringSlot` with member `value` located at `slot`."},"id":7577,"implemented":true,"kind":"function","modifiers":[],"name":"getStringSlot","nameLocation":"3204:13:35","nodeType":"FunctionDefinition","parameters":{"id":7570,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7569,"mutability":"mutable","name":"slot","nameLocation":"3226:4:35","nodeType":"VariableDeclaration","scope":7577,"src":"3218:12:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7568,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3218:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3217:14:35"},"returnParameters":{"id":7574,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7573,"mutability":"mutable","name":"r","nameLocation":"3274:1:35","nodeType":"VariableDeclaration","scope":7577,"src":"3255:20:35","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$7508_storage_ptr","typeString":"struct StorageSlot.StringSlot"},"typeName":{"id":7572,"nodeType":"UserDefinedTypeName","pathNode":{"id":7571,"name":"StringSlot","nameLocations":["3255:10:35"],"nodeType":"IdentifierPath","referencedDeclaration":7508,"src":"3255:10:35"},"referencedDeclaration":7508,"src":"3255:10:35","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$7508_storage_ptr","typeString":"struct StorageSlot.StringSlot"}},"visibility":"internal"}],"src":"3254:22:35"},"scope":7611,"src":"3195:161:35","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7587,"nodeType":"Block","src":"3558:85:35","statements":[{"AST":{"nodeType":"YulBlock","src":"3593:44:35","statements":[{"nodeType":"YulAssignment","src":"3607:20:35","value":{"name":"store.slot","nodeType":"YulIdentifier","src":"3617:10:35"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"3607:6:35"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7584,"isOffset":false,"isSlot":true,"src":"3607:6:35","suffix":"slot","valueSize":1},{"declaration":7580,"isOffset":false,"isSlot":true,"src":"3617:10:35","suffix":"slot","valueSize":1}],"flags":["memory-safe"],"id":7586,"nodeType":"InlineAssembly","src":"3568:69:35"}]},"documentation":{"id":7578,"nodeType":"StructuredDocumentation","src":"3362:101:35","text":" @dev Returns an `StringSlot` representation of the string storage pointer `store`."},"id":7588,"implemented":true,"kind":"function","modifiers":[],"name":"getStringSlot","nameLocation":"3477:13:35","nodeType":"FunctionDefinition","parameters":{"id":7581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7580,"mutability":"mutable","name":"store","nameLocation":"3506:5:35","nodeType":"VariableDeclaration","scope":7588,"src":"3491:20:35","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":7579,"name":"string","nodeType":"ElementaryTypeName","src":"3491:6:35","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3490:22:35"},"returnParameters":{"id":7585,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7584,"mutability":"mutable","name":"r","nameLocation":"3555:1:35","nodeType":"VariableDeclaration","scope":7588,"src":"3536:20:35","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$7508_storage_ptr","typeString":"struct StorageSlot.StringSlot"},"typeName":{"id":7583,"nodeType":"UserDefinedTypeName","pathNode":{"id":7582,"name":"StringSlot","nameLocations":["3536:10:35"],"nodeType":"IdentifierPath","referencedDeclaration":7508,"src":"3536:10:35"},"referencedDeclaration":7508,"src":"3536:10:35","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$7508_storage_ptr","typeString":"struct StorageSlot.StringSlot"}},"visibility":"internal"}],"src":"3535:22:35"},"scope":7611,"src":"3468:175:35","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7598,"nodeType":"Block","src":"3818:79:35","statements":[{"AST":{"nodeType":"YulBlock","src":"3853:38:35","statements":[{"nodeType":"YulAssignment","src":"3867:14:35","value":{"name":"slot","nodeType":"YulIdentifier","src":"3877:4:35"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"3867:6:35"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7595,"isOffset":false,"isSlot":true,"src":"3867:6:35","suffix":"slot","valueSize":1},{"declaration":7591,"isOffset":false,"isSlot":false,"src":"3877:4:35","valueSize":1}],"flags":["memory-safe"],"id":7597,"nodeType":"InlineAssembly","src":"3828:63:35"}]},"documentation":{"id":7589,"nodeType":"StructuredDocumentation","src":"3649:84:35","text":" @dev Returns a `BytesSlot` with member `value` located at `slot`."},"id":7599,"implemented":true,"kind":"function","modifiers":[],"name":"getBytesSlot","nameLocation":"3747:12:35","nodeType":"FunctionDefinition","parameters":{"id":7592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7591,"mutability":"mutable","name":"slot","nameLocation":"3768:4:35","nodeType":"VariableDeclaration","scope":7599,"src":"3760:12:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7590,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3760:7:35","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3759:14:35"},"returnParameters":{"id":7596,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7595,"mutability":"mutable","name":"r","nameLocation":"3815:1:35","nodeType":"VariableDeclaration","scope":7599,"src":"3797:19:35","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$7511_storage_ptr","typeString":"struct StorageSlot.BytesSlot"},"typeName":{"id":7594,"nodeType":"UserDefinedTypeName","pathNode":{"id":7593,"name":"BytesSlot","nameLocations":["3797:9:35"],"nodeType":"IdentifierPath","referencedDeclaration":7511,"src":"3797:9:35"},"referencedDeclaration":7511,"src":"3797:9:35","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$7511_storage_ptr","typeString":"struct StorageSlot.BytesSlot"}},"visibility":"internal"}],"src":"3796:21:35"},"scope":7611,"src":"3738:159:35","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7609,"nodeType":"Block","src":"4094:85:35","statements":[{"AST":{"nodeType":"YulBlock","src":"4129:44:35","statements":[{"nodeType":"YulAssignment","src":"4143:20:35","value":{"name":"store.slot","nodeType":"YulIdentifier","src":"4153:10:35"},"variableNames":[{"name":"r.slot","nodeType":"YulIdentifier","src":"4143:6:35"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7606,"isOffset":false,"isSlot":true,"src":"4143:6:35","suffix":"slot","valueSize":1},{"declaration":7602,"isOffset":false,"isSlot":true,"src":"4153:10:35","suffix":"slot","valueSize":1}],"flags":["memory-safe"],"id":7608,"nodeType":"InlineAssembly","src":"4104:69:35"}]},"documentation":{"id":7600,"nodeType":"StructuredDocumentation","src":"3903:99:35","text":" @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`."},"id":7610,"implemented":true,"kind":"function","modifiers":[],"name":"getBytesSlot","nameLocation":"4016:12:35","nodeType":"FunctionDefinition","parameters":{"id":7603,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7602,"mutability":"mutable","name":"store","nameLocation":"4043:5:35","nodeType":"VariableDeclaration","scope":7610,"src":"4029:19:35","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":7601,"name":"bytes","nodeType":"ElementaryTypeName","src":"4029:5:35","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4028:21:35"},"returnParameters":{"id":7607,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7606,"mutability":"mutable","name":"r","nameLocation":"4091:1:35","nodeType":"VariableDeclaration","scope":7610,"src":"4073:19:35","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$7511_storage_ptr","typeString":"struct StorageSlot.BytesSlot"},"typeName":{"id":7605,"nodeType":"UserDefinedTypeName","pathNode":{"id":7604,"name":"BytesSlot","nameLocations":["4073:9:35"],"nodeType":"IdentifierPath","referencedDeclaration":7511,"src":"4073:9:35"},"referencedDeclaration":7511,"src":"4073:9:35","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$7511_storage_ptr","typeString":"struct StorageSlot.BytesSlot"}},"visibility":"internal"}],"src":"4072:21:35"},"scope":7611,"src":"4007:172:35","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":7612,"src":"1407:2774:35","usedErrors":[],"usedEvents":[]}],"src":"193:3989:35"},"id":35},"@openzeppelin/contracts/utils/Strings.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","exportedSymbols":{"Math":[11439],"SafeCast":[13204],"SignedMath":[13348],"Strings":[9013]},"id":9014,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7613,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:36"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"./math/Math.sol","id":7615,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9014,"sourceUnit":11440,"src":"127:37:36","symbolAliases":[{"foreign":{"id":7614,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11439,"src":"135:4:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./math/SafeCast.sol","id":7617,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9014,"sourceUnit":13205,"src":"165:45:36","symbolAliases":[{"foreign":{"id":7616,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"173:8:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SignedMath.sol","file":"./math/SignedMath.sol","id":7619,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9014,"sourceUnit":13349,"src":"211:49:36","symbolAliases":[{"foreign":{"id":7618,"name":"SignedMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13348,"src":"219:10:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Strings","contractDependencies":[],"contractKind":"library","documentation":{"id":7620,"nodeType":"StructuredDocumentation","src":"262:34:36","text":" @dev String operations."},"fullyImplemented":true,"id":9013,"linearizedBaseContracts":[9013],"name":"Strings","nameLocation":"305:7:36","nodeType":"ContractDefinition","nodes":[{"global":false,"id":7622,"libraryName":{"id":7621,"name":"SafeCast","nameLocations":["325:8:36"],"nodeType":"IdentifierPath","referencedDeclaration":13204,"src":"325:8:36"},"nodeType":"UsingForDirective","src":"319:21:36"},{"constant":true,"id":7625,"mutability":"constant","name":"HEX_DIGITS","nameLocation":"371:10:36","nodeType":"VariableDeclaration","scope":9013,"src":"346:56:36","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":7623,"name":"bytes16","nodeType":"ElementaryTypeName","src":"346:7:36","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"value":{"hexValue":"30313233343536373839616263646566","id":7624,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"384:18:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_cb29997ed99ead0db59ce4d12b7d3723198c827273e5796737c926d78019c39f","typeString":"literal_string \"0123456789abcdef\""},"value":"0123456789abcdef"},"visibility":"private"},{"constant":true,"id":7628,"mutability":"constant","name":"ADDRESS_LENGTH","nameLocation":"431:14:36","nodeType":"VariableDeclaration","scope":9013,"src":"408:42:36","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":7626,"name":"uint8","nodeType":"ElementaryTypeName","src":"408:5:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"3230","id":7627,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"448:2:36","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"visibility":"private"},{"constant":true,"id":7664,"mutability":"constant","name":"SPECIAL_CHARS_LOOKUP","nameLocation":"481:20:36","nodeType":"VariableDeclaration","scope":9013,"src":"456:302:36","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7629,"name":"uint256","nodeType":"ElementaryTypeName","src":"456:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_rational_4951760157141521116776380160_by_1","typeString":"int_const 4951760157141521116776380160"},"id":7663,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_17179883264_by_1","typeString":"int_const 17179883264"},"id":7658,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_14080_by_1","typeString":"int_const 14080"},"id":7653,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_5888_by_1","typeString":"int_const 5888"},"id":7648,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_1792_by_1","typeString":"int_const 1792"},"id":7643,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_768_by_1","typeString":"int_const 768"},"id":7638,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":7632,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":7630,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"513:1:36","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783038","id":7631,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"518:4:36","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"0x08"},"src":"513:9:36","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":7633,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"512:11:36","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_512_by_1","typeString":"int_const 512"},"id":7636,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":7634,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"552:1:36","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783039","id":7635,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"557:4:36","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"0x09"},"src":"552:9:36","typeDescriptions":{"typeIdentifier":"t_rational_512_by_1","typeString":"int_const 512"}}],"id":7637,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"551:11:36","typeDescriptions":{"typeIdentifier":"t_rational_512_by_1","typeString":"int_const 512"}},"src":"512:50:36","typeDescriptions":{"typeIdentifier":"t_rational_768_by_1","typeString":"int_const 768"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_1024_by_1","typeString":"int_const 1024"},"id":7641,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":7639,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"585:1:36","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783061","id":7640,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"590:4:36","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"0x0a"},"src":"585:9:36","typeDescriptions":{"typeIdentifier":"t_rational_1024_by_1","typeString":"int_const 1024"}}],"id":7642,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"584:11:36","typeDescriptions":{"typeIdentifier":"t_rational_1024_by_1","typeString":"int_const 1024"}},"src":"512:83:36","typeDescriptions":{"typeIdentifier":"t_rational_1792_by_1","typeString":"int_const 1792"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4096_by_1","typeString":"int_const 4096"},"id":7646,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":7644,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"622:1:36","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783063","id":7645,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"627:4:36","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"0x0c"},"src":"622:9:36","typeDescriptions":{"typeIdentifier":"t_rational_4096_by_1","typeString":"int_const 4096"}}],"id":7647,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"621:11:36","typeDescriptions":{"typeIdentifier":"t_rational_4096_by_1","typeString":"int_const 4096"}},"src":"512:120:36","typeDescriptions":{"typeIdentifier":"t_rational_5888_by_1","typeString":"int_const 5888"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_8192_by_1","typeString":"int_const 8192"},"id":7651,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":7649,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"661:1:36","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783064","id":7650,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"666:4:36","typeDescriptions":{"typeIdentifier":"t_rational_13_by_1","typeString":"int_const 13"},"value":"0x0d"},"src":"661:9:36","typeDescriptions":{"typeIdentifier":"t_rational_8192_by_1","typeString":"int_const 8192"}}],"id":7652,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"660:11:36","typeDescriptions":{"typeIdentifier":"t_rational_8192_by_1","typeString":"int_const 8192"}},"src":"512:159:36","typeDescriptions":{"typeIdentifier":"t_rational_14080_by_1","typeString":"int_const 14080"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_17179869184_by_1","typeString":"int_const 17179869184"},"id":7656,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":7654,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"706:1:36","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783232","id":7655,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"711:4:36","typeDescriptions":{"typeIdentifier":"t_rational_34_by_1","typeString":"int_const 34"},"value":"0x22"},"src":"706:9:36","typeDescriptions":{"typeIdentifier":"t_rational_17179869184_by_1","typeString":"int_const 17179869184"}}],"id":7657,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"705:11:36","typeDescriptions":{"typeIdentifier":"t_rational_17179869184_by_1","typeString":"int_const 17179869184"}},"src":"512:204:36","typeDescriptions":{"typeIdentifier":"t_rational_17179883264_by_1","typeString":"int_const 17179883264"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4951760157141521099596496896_by_1","typeString":"int_const 4951760157141521099596496896"},"id":7661,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":7659,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"748:1:36","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783563","id":7660,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"753:4:36","typeDescriptions":{"typeIdentifier":"t_rational_92_by_1","typeString":"int_const 92"},"value":"0x5c"},"src":"748:9:36","typeDescriptions":{"typeIdentifier":"t_rational_4951760157141521099596496896_by_1","typeString":"int_const 4951760157141521099596496896"}}],"id":7662,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"747:11:36","typeDescriptions":{"typeIdentifier":"t_rational_4951760157141521099596496896_by_1","typeString":"int_const 4951760157141521099596496896"}},"src":"512:246:36","typeDescriptions":{"typeIdentifier":"t_rational_4951760157141521116776380160_by_1","typeString":"int_const 4951760157141521116776380160"}},"visibility":"private"},{"documentation":{"id":7665,"nodeType":"StructuredDocumentation","src":"778:81:36","text":" @dev The `value` string doesn't fit in the specified `length`."},"errorSelector":"e22e27eb","id":7671,"name":"StringsInsufficientHexLength","nameLocation":"870:28:36","nodeType":"ErrorDefinition","parameters":{"id":7670,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7667,"mutability":"mutable","name":"value","nameLocation":"907:5:36","nodeType":"VariableDeclaration","scope":7671,"src":"899:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7666,"name":"uint256","nodeType":"ElementaryTypeName","src":"899:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7669,"mutability":"mutable","name":"length","nameLocation":"922:6:36","nodeType":"VariableDeclaration","scope":7671,"src":"914:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7668,"name":"uint256","nodeType":"ElementaryTypeName","src":"914:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"898:31:36"},"src":"864:66:36"},{"documentation":{"id":7672,"nodeType":"StructuredDocumentation","src":"936:108:36","text":" @dev The string being parsed contains characters that are not in scope of the given base."},"errorSelector":"94e2737e","id":7674,"name":"StringsInvalidChar","nameLocation":"1055:18:36","nodeType":"ErrorDefinition","parameters":{"id":7673,"nodeType":"ParameterList","parameters":[],"src":"1073:2:36"},"src":"1049:27:36"},{"documentation":{"id":7675,"nodeType":"StructuredDocumentation","src":"1082:84:36","text":" @dev The string being parsed is not a properly formatted address."},"errorSelector":"1d15ae44","id":7677,"name":"StringsInvalidAddressFormat","nameLocation":"1177:27:36","nodeType":"ErrorDefinition","parameters":{"id":7676,"nodeType":"ParameterList","parameters":[],"src":"1204:2:36"},"src":"1171:36:36"},{"body":{"id":7724,"nodeType":"Block","src":"1379:561:36","statements":[{"id":7723,"nodeType":"UncheckedBlock","src":"1389:545:36","statements":[{"assignments":[7686],"declarations":[{"constant":false,"id":7686,"mutability":"mutable","name":"length","nameLocation":"1421:6:36","nodeType":"VariableDeclaration","scope":7723,"src":"1413:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7685,"name":"uint256","nodeType":"ElementaryTypeName","src":"1413:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7693,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7692,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7689,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7680,"src":"1441:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":7687,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11439,"src":"1430:4:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$11439_$","typeString":"type(library Math)"}},"id":7688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1435:5:36","memberName":"log10","nodeType":"MemberAccess","referencedDeclaration":11271,"src":"1430:10:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":7690,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1430:17:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":7691,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1450:1:36","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1430:21:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1413:38:36"},{"assignments":[7695],"declarations":[{"constant":false,"id":7695,"mutability":"mutable","name":"buffer","nameLocation":"1479:6:36","nodeType":"VariableDeclaration","scope":7723,"src":"1465:20:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7694,"name":"string","nodeType":"ElementaryTypeName","src":"1465:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":7700,"initialValue":{"arguments":[{"id":7698,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7686,"src":"1499:6:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7697,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1488:10:36","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"},"typeName":{"id":7696,"name":"string","nodeType":"ElementaryTypeName","src":"1492:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}}},"id":7699,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1488:18:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"1465:41:36"},{"assignments":[7702],"declarations":[{"constant":false,"id":7702,"mutability":"mutable","name":"ptr","nameLocation":"1528:3:36","nodeType":"VariableDeclaration","scope":7723,"src":"1520:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7701,"name":"uint256","nodeType":"ElementaryTypeName","src":"1520:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7703,"nodeType":"VariableDeclarationStatement","src":"1520:11:36"},{"AST":{"nodeType":"YulBlock","src":"1570:67:36","statements":[{"nodeType":"YulAssignment","src":"1588:35:36","value":{"arguments":[{"name":"buffer","nodeType":"YulIdentifier","src":"1599:6:36"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1611:2:36","type":"","value":"32"},{"name":"length","nodeType":"YulIdentifier","src":"1615:6:36"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1607:3:36"},"nodeType":"YulFunctionCall","src":"1607:15:36"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1595:3:36"},"nodeType":"YulFunctionCall","src":"1595:28:36"},"variableNames":[{"name":"ptr","nodeType":"YulIdentifier","src":"1588:3:36"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7695,"isOffset":false,"isSlot":false,"src":"1599:6:36","valueSize":1},{"declaration":7686,"isOffset":false,"isSlot":false,"src":"1615:6:36","valueSize":1},{"declaration":7702,"isOffset":false,"isSlot":false,"src":"1588:3:36","valueSize":1}],"flags":["memory-safe"],"id":7704,"nodeType":"InlineAssembly","src":"1545:92:36"},{"body":{"id":7719,"nodeType":"Block","src":"1663:234:36","statements":[{"expression":{"id":7707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":false,"src":"1681:5:36","subExpression":{"id":7706,"name":"ptr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7702,"src":"1681:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7708,"nodeType":"ExpressionStatement","src":"1681:5:36"},{"AST":{"nodeType":"YulBlock","src":"1729:86:36","statements":[{"expression":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"1759:3:36"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"1773:5:36"},{"kind":"number","nodeType":"YulLiteral","src":"1780:2:36","type":"","value":"10"}],"functionName":{"name":"mod","nodeType":"YulIdentifier","src":"1769:3:36"},"nodeType":"YulFunctionCall","src":"1769:14:36"},{"name":"HEX_DIGITS","nodeType":"YulIdentifier","src":"1785:10:36"}],"functionName":{"name":"byte","nodeType":"YulIdentifier","src":"1764:4:36"},"nodeType":"YulFunctionCall","src":"1764:32:36"}],"functionName":{"name":"mstore8","nodeType":"YulIdentifier","src":"1751:7:36"},"nodeType":"YulFunctionCall","src":"1751:46:36"},"nodeType":"YulExpressionStatement","src":"1751:46:36"}]},"evmVersion":"paris","externalReferences":[{"declaration":7625,"isOffset":false,"isSlot":false,"src":"1785:10:36","valueSize":1},{"declaration":7702,"isOffset":false,"isSlot":false,"src":"1759:3:36","valueSize":1},{"declaration":7680,"isOffset":false,"isSlot":false,"src":"1773:5:36","valueSize":1}],"flags":["memory-safe"],"id":7709,"nodeType":"InlineAssembly","src":"1704:111:36"},{"expression":{"id":7712,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7710,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7680,"src":"1832:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"hexValue":"3130","id":7711,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1841:2:36","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"1832:11:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7713,"nodeType":"ExpressionStatement","src":"1832:11:36"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7714,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7680,"src":"1865:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":7715,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1874:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1865:10:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7718,"nodeType":"IfStatement","src":"1861:21:36","trueBody":{"id":7717,"nodeType":"Break","src":"1877:5:36"}}]},"condition":{"hexValue":"74727565","id":7705,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1657:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"id":7720,"nodeType":"WhileStatement","src":"1650:247:36"},{"expression":{"id":7721,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7695,"src":"1917:6:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7684,"id":7722,"nodeType":"Return","src":"1910:13:36"}]}]},"documentation":{"id":7678,"nodeType":"StructuredDocumentation","src":"1213:90:36","text":" @dev Converts a `uint256` to its ASCII `string` decimal representation."},"id":7725,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"1317:8:36","nodeType":"FunctionDefinition","parameters":{"id":7681,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7680,"mutability":"mutable","name":"value","nameLocation":"1334:5:36","nodeType":"VariableDeclaration","scope":7725,"src":"1326:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7679,"name":"uint256","nodeType":"ElementaryTypeName","src":"1326:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1325:15:36"},"returnParameters":{"id":7684,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7683,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7725,"src":"1364:13:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7682,"name":"string","nodeType":"ElementaryTypeName","src":"1364:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1363:15:36"},"scope":9013,"src":"1308:632:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7750,"nodeType":"Block","src":"2116:92:36","statements":[{"expression":{"arguments":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7738,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7736,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7728,"src":"2147:5:36","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":7737,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2155:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2147:9:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"","id":7740,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2165:2:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"id":7741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2147:20:36","trueExpression":{"hexValue":"2d","id":7739,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2159:3:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""},"value":"-"},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[{"arguments":[{"id":7745,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7728,"src":"2193:5:36","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":7743,"name":"SignedMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13348,"src":"2178:10:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SignedMath_$13348_$","typeString":"type(library SignedMath)"}},"id":7744,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2189:3:36","memberName":"abs","nodeType":"MemberAccess","referencedDeclaration":13347,"src":"2178:14:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_int256_$returns$_t_uint256_$","typeString":"function (int256) pure returns (uint256)"}},"id":7746,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2178:21:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7742,"name":"toString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7725,"src":"2169:8:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":7747,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2169:31:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":7734,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2133:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":7733,"name":"string","nodeType":"ElementaryTypeName","src":"2133:6:36","typeDescriptions":{}}},"id":7735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2140:6:36","memberName":"concat","nodeType":"MemberAccess","src":"2133:13:36","typeDescriptions":{"typeIdentifier":"t_function_stringconcat_pure$__$returns$_t_string_memory_ptr_$","typeString":"function () pure returns (string memory)"}},"id":7748,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2133:68:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7732,"id":7749,"nodeType":"Return","src":"2126:75:36"}]},"documentation":{"id":7726,"nodeType":"StructuredDocumentation","src":"1946:89:36","text":" @dev Converts a `int256` to its ASCII `string` decimal representation."},"id":7751,"implemented":true,"kind":"function","modifiers":[],"name":"toStringSigned","nameLocation":"2049:14:36","nodeType":"FunctionDefinition","parameters":{"id":7729,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7728,"mutability":"mutable","name":"value","nameLocation":"2071:5:36","nodeType":"VariableDeclaration","scope":7751,"src":"2064:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7727,"name":"int256","nodeType":"ElementaryTypeName","src":"2064:6:36","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"2063:14:36"},"returnParameters":{"id":7732,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7731,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7751,"src":"2101:13:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7730,"name":"string","nodeType":"ElementaryTypeName","src":"2101:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2100:15:36"},"scope":9013,"src":"2040:168:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7770,"nodeType":"Block","src":"2387:100:36","statements":[{"id":7769,"nodeType":"UncheckedBlock","src":"2397:84:36","statements":[{"expression":{"arguments":[{"id":7760,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7754,"src":"2440:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7766,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7763,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7754,"src":"2459:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":7761,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11439,"src":"2447:4:36","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$11439_$","typeString":"type(library Math)"}},"id":7762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2452:6:36","memberName":"log256","nodeType":"MemberAccess","referencedDeclaration":11382,"src":"2447:11:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":7764,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2447:18:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":7765,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2468:1:36","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2447:22:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7759,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[7771,7854,7874],"referencedDeclaration":7854,"src":"2428:11:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":7767,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2428:42:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7758,"id":7768,"nodeType":"Return","src":"2421:49:36"}]}]},"documentation":{"id":7752,"nodeType":"StructuredDocumentation","src":"2214:94:36","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation."},"id":7771,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2322:11:36","nodeType":"FunctionDefinition","parameters":{"id":7755,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7754,"mutability":"mutable","name":"value","nameLocation":"2342:5:36","nodeType":"VariableDeclaration","scope":7771,"src":"2334:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7753,"name":"uint256","nodeType":"ElementaryTypeName","src":"2334:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2333:15:36"},"returnParameters":{"id":7758,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7757,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7771,"src":"2372:13:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7756,"name":"string","nodeType":"ElementaryTypeName","src":"2372:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2371:15:36"},"scope":9013,"src":"2313:174:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7853,"nodeType":"Block","src":"2700:435:36","statements":[{"assignments":[7782],"declarations":[{"constant":false,"id":7782,"mutability":"mutable","name":"localValue","nameLocation":"2718:10:36","nodeType":"VariableDeclaration","scope":7853,"src":"2710:18:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7781,"name":"uint256","nodeType":"ElementaryTypeName","src":"2710:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7784,"initialValue":{"id":7783,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7774,"src":"2731:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2710:26:36"},{"assignments":[7786],"declarations":[{"constant":false,"id":7786,"mutability":"mutable","name":"buffer","nameLocation":"2759:6:36","nodeType":"VariableDeclaration","scope":7853,"src":"2746:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7785,"name":"bytes","nodeType":"ElementaryTypeName","src":"2746:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":7795,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7791,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":7789,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2778:1:36","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":7790,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7776,"src":"2782:6:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2778:10:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":7792,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2791:1:36","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"2778:14:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7788,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"2768:9:36","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":7787,"name":"bytes","nodeType":"ElementaryTypeName","src":"2772:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":7794,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2768:25:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"2746:47:36"},{"expression":{"id":7800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":7796,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7786,"src":"2803:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7798,"indexExpression":{"hexValue":"30","id":7797,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2810:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2803:9:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":7799,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2815:3:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"},"src":"2803:15:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":7801,"nodeType":"ExpressionStatement","src":"2803:15:36"},{"expression":{"id":7806,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":7802,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7786,"src":"2828:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7804,"indexExpression":{"hexValue":"31","id":7803,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2835:1:36","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2828:9:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"78","id":7805,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2840:3:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_7521d1cadbcfa91eec65aa16715b94ffc1c9654ba57ea2ef1a2127bca1127a83","typeString":"literal_string \"x\""},"value":"x"},"src":"2828:15:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":7807,"nodeType":"ExpressionStatement","src":"2828:15:36"},{"body":{"id":7836,"nodeType":"Block","src":"2898:95:36","statements":[{"expression":{"id":7830,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":7822,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7786,"src":"2912:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7824,"indexExpression":{"id":7823,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7809,"src":"2919:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2912:9:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":7825,"name":"HEX_DIGITS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7625,"src":"2924:10:36","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":7829,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7828,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7826,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7782,"src":"2935:10:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":7827,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2948:3:36","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"2935:16:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2924:28:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"2912:40:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":7831,"nodeType":"ExpressionStatement","src":"2912:40:36"},{"expression":{"id":7834,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7832,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7782,"src":"2966:10:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":7833,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2981:1:36","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"2966:16:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7835,"nodeType":"ExpressionStatement","src":"2966:16:36"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7818,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7816,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7809,"src":"2886:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":7817,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2890:1:36","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2886:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7837,"initializationExpression":{"assignments":[7809],"declarations":[{"constant":false,"id":7809,"mutability":"mutable","name":"i","nameLocation":"2866:1:36","nodeType":"VariableDeclaration","scope":7837,"src":"2858:9:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7808,"name":"uint256","nodeType":"ElementaryTypeName","src":"2858:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7815,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7814,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7812,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":7810,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2870:1:36","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":7811,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7776,"src":"2874:6:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2870:10:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":7813,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2883:1:36","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2870:14:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2858:26:36"},"loopExpression":{"expression":{"id":7820,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"2893:3:36","subExpression":{"id":7819,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7809,"src":"2895:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7821,"nodeType":"ExpressionStatement","src":"2893:3:36"},"nodeType":"ForStatement","src":"2853:140:36"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7840,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7838,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7782,"src":"3006:10:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":7839,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3020:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3006:15:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7847,"nodeType":"IfStatement","src":"3002:96:36","trueBody":{"id":7846,"nodeType":"Block","src":"3023:75:36","statements":[{"errorCall":{"arguments":[{"id":7842,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7774,"src":"3073:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7843,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7776,"src":"3080:6:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7841,"name":"StringsInsufficientHexLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7671,"src":"3044:28:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256) pure"}},"id":7844,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3044:43:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7845,"nodeType":"RevertStatement","src":"3037:50:36"}]}},{"expression":{"arguments":[{"id":7850,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7786,"src":"3121:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7849,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3114:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":7848,"name":"string","nodeType":"ElementaryTypeName","src":"3114:6:36","typeDescriptions":{}}},"id":7851,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3114:14:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7780,"id":7852,"nodeType":"Return","src":"3107:21:36"}]},"documentation":{"id":7772,"nodeType":"StructuredDocumentation","src":"2493:112:36","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length."},"id":7854,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2619:11:36","nodeType":"FunctionDefinition","parameters":{"id":7777,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7774,"mutability":"mutable","name":"value","nameLocation":"2639:5:36","nodeType":"VariableDeclaration","scope":7854,"src":"2631:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7773,"name":"uint256","nodeType":"ElementaryTypeName","src":"2631:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7776,"mutability":"mutable","name":"length","nameLocation":"2654:6:36","nodeType":"VariableDeclaration","scope":7854,"src":"2646:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7775,"name":"uint256","nodeType":"ElementaryTypeName","src":"2646:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2630:31:36"},"returnParameters":{"id":7780,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7779,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7854,"src":"2685:13:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7778,"name":"string","nodeType":"ElementaryTypeName","src":"2685:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2684:15:36"},"scope":9013,"src":"2610:525:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7873,"nodeType":"Block","src":"3367:75:36","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":7867,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7857,"src":"3412:4:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7866,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3404:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":7865,"name":"uint160","nodeType":"ElementaryTypeName","src":"3404:7:36","typeDescriptions":{}}},"id":7868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3404:13:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":7864,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3396:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":7863,"name":"uint256","nodeType":"ElementaryTypeName","src":"3396:7:36","typeDescriptions":{}}},"id":7869,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3396:22:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7870,"name":"ADDRESS_LENGTH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7628,"src":"3420:14:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":7862,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[7771,7854,7874],"referencedDeclaration":7854,"src":"3384:11:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":7871,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3384:51:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7861,"id":7872,"nodeType":"Return","src":"3377:58:36"}]},"documentation":{"id":7855,"nodeType":"StructuredDocumentation","src":"3141:148:36","text":" @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal\n representation."},"id":7874,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"3303:11:36","nodeType":"FunctionDefinition","parameters":{"id":7858,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7857,"mutability":"mutable","name":"addr","nameLocation":"3323:4:36","nodeType":"VariableDeclaration","scope":7874,"src":"3315:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7856,"name":"address","nodeType":"ElementaryTypeName","src":"3315:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3314:14:36"},"returnParameters":{"id":7861,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7860,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7874,"src":"3352:13:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7859,"name":"string","nodeType":"ElementaryTypeName","src":"3352:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3351:15:36"},"scope":9013,"src":"3294:148:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7938,"nodeType":"Block","src":"3699:642:36","statements":[{"assignments":[7883],"declarations":[{"constant":false,"id":7883,"mutability":"mutable","name":"buffer","nameLocation":"3722:6:36","nodeType":"VariableDeclaration","scope":7938,"src":"3709:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7882,"name":"bytes","nodeType":"ElementaryTypeName","src":"3709:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":7890,"initialValue":{"arguments":[{"arguments":[{"id":7887,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7877,"src":"3749:4:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7886,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[7771,7854,7874],"referencedDeclaration":7874,"src":"3737:11:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$returns$_t_string_memory_ptr_$","typeString":"function (address) pure returns (string memory)"}},"id":7888,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3737:17:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7885,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3731:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7884,"name":"bytes","nodeType":"ElementaryTypeName","src":"3731:5:36","typeDescriptions":{}}},"id":7889,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3731:24:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"3709:46:36"},{"assignments":[7892],"declarations":[{"constant":false,"id":7892,"mutability":"mutable","name":"hashValue","nameLocation":"3848:9:36","nodeType":"VariableDeclaration","scope":7938,"src":"3840:17:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7891,"name":"uint256","nodeType":"ElementaryTypeName","src":"3840:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7893,"nodeType":"VariableDeclarationStatement","src":"3840:17:36"},{"AST":{"nodeType":"YulBlock","src":"3892:78:36","statements":[{"nodeType":"YulAssignment","src":"3906:54:36","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3923:2:36","type":"","value":"96"},{"arguments":[{"arguments":[{"name":"buffer","nodeType":"YulIdentifier","src":"3941:6:36"},{"kind":"number","nodeType":"YulLiteral","src":"3949:4:36","type":"","value":"0x22"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3937:3:36"},"nodeType":"YulFunctionCall","src":"3937:17:36"},{"kind":"number","nodeType":"YulLiteral","src":"3956:2:36","type":"","value":"40"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"3927:9:36"},"nodeType":"YulFunctionCall","src":"3927:32:36"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"3919:3:36"},"nodeType":"YulFunctionCall","src":"3919:41:36"},"variableNames":[{"name":"hashValue","nodeType":"YulIdentifier","src":"3906:9:36"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7883,"isOffset":false,"isSlot":false,"src":"3941:6:36","valueSize":1},{"declaration":7892,"isOffset":false,"isSlot":false,"src":"3906:9:36","valueSize":1}],"flags":["memory-safe"],"id":7894,"nodeType":"InlineAssembly","src":"3867:103:36"},{"body":{"id":7931,"nodeType":"Block","src":"4013:291:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7909,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7907,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7905,"name":"hashValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7892,"src":"4119:9:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":7906,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4131:3:36","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"4119:15:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"37","id":7908,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4137:1:36","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"4119:19:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":7917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"id":7912,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7883,"src":"4148:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7914,"indexExpression":{"id":7913,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7896,"src":"4155:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4148:9:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":7911,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4142:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":7910,"name":"uint8","nodeType":"ElementaryTypeName","src":"4142:5:36","typeDescriptions":{}}},"id":7915,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4142:16:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3936","id":7916,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4161:2:36","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"4142:21:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4119:44:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7926,"nodeType":"IfStatement","src":"4115:150:36","trueBody":{"id":7925,"nodeType":"Block","src":"4165:100:36","statements":[{"expression":{"id":7923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":7919,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7883,"src":"4233:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7921,"indexExpression":{"id":7920,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7896,"src":"4240:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4233:9:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"^=","rightHandSide":{"hexValue":"30783230","id":7922,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4246:4:36","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"src":"4233:17:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":7924,"nodeType":"ExpressionStatement","src":"4233:17:36"}]}},{"expression":{"id":7929,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7927,"name":"hashValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7892,"src":"4278:9:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":7928,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4292:1:36","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"4278:15:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7930,"nodeType":"ExpressionStatement","src":"4278:15:36"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7901,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7899,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7896,"src":"4001:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":7900,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4005:1:36","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4001:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7932,"initializationExpression":{"assignments":[7896],"declarations":[{"constant":false,"id":7896,"mutability":"mutable","name":"i","nameLocation":"3993:1:36","nodeType":"VariableDeclaration","scope":7932,"src":"3985:9:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7895,"name":"uint256","nodeType":"ElementaryTypeName","src":"3985:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7898,"initialValue":{"hexValue":"3431","id":7897,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3997:2:36","typeDescriptions":{"typeIdentifier":"t_rational_41_by_1","typeString":"int_const 41"},"value":"41"},"nodeType":"VariableDeclarationStatement","src":"3985:14:36"},"loopExpression":{"expression":{"id":7903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"4008:3:36","subExpression":{"id":7902,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7896,"src":"4010:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7904,"nodeType":"ExpressionStatement","src":"4008:3:36"},"nodeType":"ForStatement","src":"3980:324:36"},{"expression":{"arguments":[{"id":7935,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7883,"src":"4327:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7934,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4320:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":7933,"name":"string","nodeType":"ElementaryTypeName","src":"4320:6:36","typeDescriptions":{}}},"id":7936,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4320:14:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":7881,"id":7937,"nodeType":"Return","src":"4313:21:36"}]},"documentation":{"id":7875,"nodeType":"StructuredDocumentation","src":"3448:165:36","text":" @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal\n representation, according to EIP-55."},"id":7939,"implemented":true,"kind":"function","modifiers":[],"name":"toChecksumHexString","nameLocation":"3627:19:36","nodeType":"FunctionDefinition","parameters":{"id":7878,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7877,"mutability":"mutable","name":"addr","nameLocation":"3655:4:36","nodeType":"VariableDeclaration","scope":7939,"src":"3647:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7876,"name":"address","nodeType":"ElementaryTypeName","src":"3647:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3646:14:36"},"returnParameters":{"id":7881,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7880,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7939,"src":"3684:13:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7879,"name":"string","nodeType":"ElementaryTypeName","src":"3684:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3683:15:36"},"scope":9013,"src":"3618:723:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7975,"nodeType":"Block","src":"4496:104:36","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":7951,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7942,"src":"4519:1:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7950,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4513:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7949,"name":"bytes","nodeType":"ElementaryTypeName","src":"4513:5:36","typeDescriptions":{}}},"id":7952,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4513:8:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4522:6:36","memberName":"length","nodeType":"MemberAccess","src":"4513:15:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":7956,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7944,"src":"4538:1:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7955,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4532:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7954,"name":"bytes","nodeType":"ElementaryTypeName","src":"4532:5:36","typeDescriptions":{}}},"id":7957,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4532:8:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7958,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4541:6:36","memberName":"length","nodeType":"MemberAccess","src":"4532:15:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4513:34:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":7972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":7963,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7942,"src":"4567:1:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7962,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4561:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7961,"name":"bytes","nodeType":"ElementaryTypeName","src":"4561:5:36","typeDescriptions":{}}},"id":7964,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4561:8:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7960,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"4551:9:36","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":7965,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4551:19:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"id":7969,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7944,"src":"4590:1:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7968,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4584:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7967,"name":"bytes","nodeType":"ElementaryTypeName","src":"4584:5:36","typeDescriptions":{}}},"id":7970,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4584:8:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7966,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"4574:9:36","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":7971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4574:19:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4551:42:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4513:80:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":7948,"id":7974,"nodeType":"Return","src":"4506:87:36"}]},"documentation":{"id":7940,"nodeType":"StructuredDocumentation","src":"4347:66:36","text":" @dev Returns true if the two strings are equal."},"id":7976,"implemented":true,"kind":"function","modifiers":[],"name":"equal","nameLocation":"4427:5:36","nodeType":"FunctionDefinition","parameters":{"id":7945,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7942,"mutability":"mutable","name":"a","nameLocation":"4447:1:36","nodeType":"VariableDeclaration","scope":7976,"src":"4433:15:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7941,"name":"string","nodeType":"ElementaryTypeName","src":"4433:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7944,"mutability":"mutable","name":"b","nameLocation":"4464:1:36","nodeType":"VariableDeclaration","scope":7976,"src":"4450:15:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7943,"name":"string","nodeType":"ElementaryTypeName","src":"4450:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4432:34:36"},"returnParameters":{"id":7948,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7947,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7976,"src":"4490:4:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7946,"name":"bool","nodeType":"ElementaryTypeName","src":"4490:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4489:6:36"},"scope":9013,"src":"4418:182:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7994,"nodeType":"Block","src":"4897:64:36","statements":[{"expression":{"arguments":[{"id":7985,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7979,"src":"4924:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":7986,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4931:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":7989,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7979,"src":"4940:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":7988,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4934:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":7987,"name":"bytes","nodeType":"ElementaryTypeName","src":"4934:5:36","typeDescriptions":{}}},"id":7990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4934:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4947:6:36","memberName":"length","nodeType":"MemberAccess","src":"4934:19:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7984,"name":"parseUint","nodeType":"Identifier","overloadedDeclarations":[7995,8026],"referencedDeclaration":8026,"src":"4914:9:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (uint256)"}},"id":7992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4914:40:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7983,"id":7993,"nodeType":"Return","src":"4907:47:36"}]},"documentation":{"id":7977,"nodeType":"StructuredDocumentation","src":"4606:214:36","text":" @dev Parse a decimal string and returns the value as a `uint256`.\n Requirements:\n - The string must be formatted as `[0-9]*`\n - The result must fit into an `uint256` type"},"id":7995,"implemented":true,"kind":"function","modifiers":[],"name":"parseUint","nameLocation":"4834:9:36","nodeType":"FunctionDefinition","parameters":{"id":7980,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7979,"mutability":"mutable","name":"input","nameLocation":"4858:5:36","nodeType":"VariableDeclaration","scope":7995,"src":"4844:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7978,"name":"string","nodeType":"ElementaryTypeName","src":"4844:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4843:21:36"},"returnParameters":{"id":7983,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7982,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7995,"src":"4888:7:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7981,"name":"uint256","nodeType":"ElementaryTypeName","src":"4888:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4887:9:36"},"scope":9013,"src":"4825:136:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8025,"nodeType":"Block","src":"5366:153:36","statements":[{"assignments":[8008,8010],"declarations":[{"constant":false,"id":8008,"mutability":"mutable","name":"success","nameLocation":"5382:7:36","nodeType":"VariableDeclaration","scope":8025,"src":"5377:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8007,"name":"bool","nodeType":"ElementaryTypeName","src":"5377:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8010,"mutability":"mutable","name":"value","nameLocation":"5399:5:36","nodeType":"VariableDeclaration","scope":8025,"src":"5391:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8009,"name":"uint256","nodeType":"ElementaryTypeName","src":"5391:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8016,"initialValue":{"arguments":[{"id":8012,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7998,"src":"5421:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":8013,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8000,"src":"5428:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8014,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8002,"src":"5435:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8011,"name":"tryParseUint","nodeType":"Identifier","overloadedDeclarations":[8047,8084],"referencedDeclaration":8084,"src":"5408:12:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":8015,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5408:31:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"5376:63:36"},{"condition":{"id":8018,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5453:8:36","subExpression":{"id":8017,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8008,"src":"5454:7:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8022,"nodeType":"IfStatement","src":"5449:41:36","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":8019,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7674,"src":"5470:18:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":8020,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5470:20:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8021,"nodeType":"RevertStatement","src":"5463:27:36"}},{"expression":{"id":8023,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8010,"src":"5507:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8006,"id":8024,"nodeType":"Return","src":"5500:12:36"}]},"documentation":{"id":7996,"nodeType":"StructuredDocumentation","src":"4967:294:36","text":" @dev Variant of {parseUint-string} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `[0-9]*`\n - The result must fit into an `uint256` type"},"id":8026,"implemented":true,"kind":"function","modifiers":[],"name":"parseUint","nameLocation":"5275:9:36","nodeType":"FunctionDefinition","parameters":{"id":8003,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7998,"mutability":"mutable","name":"input","nameLocation":"5299:5:36","nodeType":"VariableDeclaration","scope":8026,"src":"5285:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7997,"name":"string","nodeType":"ElementaryTypeName","src":"5285:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8000,"mutability":"mutable","name":"begin","nameLocation":"5314:5:36","nodeType":"VariableDeclaration","scope":8026,"src":"5306:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7999,"name":"uint256","nodeType":"ElementaryTypeName","src":"5306:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8002,"mutability":"mutable","name":"end","nameLocation":"5329:3:36","nodeType":"VariableDeclaration","scope":8026,"src":"5321:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8001,"name":"uint256","nodeType":"ElementaryTypeName","src":"5321:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5284:49:36"},"returnParameters":{"id":8006,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8005,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8026,"src":"5357:7:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8004,"name":"uint256","nodeType":"ElementaryTypeName","src":"5357:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5356:9:36"},"scope":9013,"src":"5266:253:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8046,"nodeType":"Block","src":"5840:83:36","statements":[{"expression":{"arguments":[{"id":8037,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8029,"src":"5886:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":8038,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5893:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":8041,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8029,"src":"5902:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8040,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5896:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8039,"name":"bytes","nodeType":"ElementaryTypeName","src":"5896:5:36","typeDescriptions":{}}},"id":8042,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5896:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5909:6:36","memberName":"length","nodeType":"MemberAccess","src":"5896:19:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8036,"name":"_tryParseUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8154,"src":"5857:28:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":8044,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5857:59:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":8035,"id":8045,"nodeType":"Return","src":"5850:66:36"}]},"documentation":{"id":8027,"nodeType":"StructuredDocumentation","src":"5525:215:36","text":" @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":8047,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseUint","nameLocation":"5754:12:36","nodeType":"FunctionDefinition","parameters":{"id":8030,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8029,"mutability":"mutable","name":"input","nameLocation":"5781:5:36","nodeType":"VariableDeclaration","scope":8047,"src":"5767:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8028,"name":"string","nodeType":"ElementaryTypeName","src":"5767:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5766:21:36"},"returnParameters":{"id":8035,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8032,"mutability":"mutable","name":"success","nameLocation":"5816:7:36","nodeType":"VariableDeclaration","scope":8047,"src":"5811:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8031,"name":"bool","nodeType":"ElementaryTypeName","src":"5811:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8034,"mutability":"mutable","name":"value","nameLocation":"5833:5:36","nodeType":"VariableDeclaration","scope":8047,"src":"5825:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8033,"name":"uint256","nodeType":"ElementaryTypeName","src":"5825:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5810:29:36"},"scope":9013,"src":"5745:178:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8083,"nodeType":"Block","src":"6325:144:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8067,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8061,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8054,"src":"6339:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":8064,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8050,"src":"6351:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8063,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6345:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8062,"name":"bytes","nodeType":"ElementaryTypeName","src":"6345:5:36","typeDescriptions":{}}},"id":8065,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6345:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6358:6:36","memberName":"length","nodeType":"MemberAccess","src":"6345:19:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6339:25:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8070,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8068,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8052,"src":"6368:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":8069,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8054,"src":"6376:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6368:11:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6339:40:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8076,"nodeType":"IfStatement","src":"6335:63:36","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":8072,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6389:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":8073,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6396:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8074,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6388:10:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":8060,"id":8075,"nodeType":"Return","src":"6381:17:36"}},{"expression":{"arguments":[{"id":8078,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8050,"src":"6444:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":8079,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8052,"src":"6451:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8080,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8054,"src":"6458:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8077,"name":"_tryParseUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8154,"src":"6415:28:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":8081,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6415:47:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":8060,"id":8082,"nodeType":"Return","src":"6408:54:36"}]},"documentation":{"id":8048,"nodeType":"StructuredDocumentation","src":"5929:238:36","text":" @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":8084,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseUint","nameLocation":"6181:12:36","nodeType":"FunctionDefinition","parameters":{"id":8055,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8050,"mutability":"mutable","name":"input","nameLocation":"6217:5:36","nodeType":"VariableDeclaration","scope":8084,"src":"6203:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8049,"name":"string","nodeType":"ElementaryTypeName","src":"6203:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8052,"mutability":"mutable","name":"begin","nameLocation":"6240:5:36","nodeType":"VariableDeclaration","scope":8084,"src":"6232:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8051,"name":"uint256","nodeType":"ElementaryTypeName","src":"6232:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8054,"mutability":"mutable","name":"end","nameLocation":"6263:3:36","nodeType":"VariableDeclaration","scope":8084,"src":"6255:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8053,"name":"uint256","nodeType":"ElementaryTypeName","src":"6255:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6193:79:36"},"returnParameters":{"id":8060,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8057,"mutability":"mutable","name":"success","nameLocation":"6301:7:36","nodeType":"VariableDeclaration","scope":8084,"src":"6296:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8056,"name":"bool","nodeType":"ElementaryTypeName","src":"6296:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8059,"mutability":"mutable","name":"value","nameLocation":"6318:5:36","nodeType":"VariableDeclaration","scope":8084,"src":"6310:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8058,"name":"uint256","nodeType":"ElementaryTypeName","src":"6310:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6295:29:36"},"scope":9013,"src":"6172:297:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8153,"nodeType":"Block","src":"6872:347:36","statements":[{"assignments":[8099],"declarations":[{"constant":false,"id":8099,"mutability":"mutable","name":"buffer","nameLocation":"6895:6:36","nodeType":"VariableDeclaration","scope":8153,"src":"6882:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8098,"name":"bytes","nodeType":"ElementaryTypeName","src":"6882:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":8104,"initialValue":{"arguments":[{"id":8102,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8087,"src":"6910:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8101,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6904:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8100,"name":"bytes","nodeType":"ElementaryTypeName","src":"6904:5:36","typeDescriptions":{}}},"id":8103,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6904:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"6882:34:36"},{"assignments":[8106],"declarations":[{"constant":false,"id":8106,"mutability":"mutable","name":"result","nameLocation":"6935:6:36","nodeType":"VariableDeclaration","scope":8153,"src":"6927:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8105,"name":"uint256","nodeType":"ElementaryTypeName","src":"6927:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8108,"initialValue":{"hexValue":"30","id":8107,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6944:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6927:18:36"},{"body":{"id":8147,"nodeType":"Block","src":"6993:189:36","statements":[{"assignments":[8120],"declarations":[{"constant":false,"id":8120,"mutability":"mutable","name":"chr","nameLocation":"7013:3:36","nodeType":"VariableDeclaration","scope":8147,"src":"7007:9:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8119,"name":"uint8","nodeType":"ElementaryTypeName","src":"7007:5:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":8130,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":8125,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8099,"src":"7062:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":8126,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8110,"src":"7070:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8124,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9012,"src":"7039:22:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":8127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7039:33:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8123,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7032:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":8122,"name":"bytes1","nodeType":"ElementaryTypeName","src":"7032:6:36","typeDescriptions":{}}},"id":8128,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7032:41:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":8121,"name":"_tryParseChr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8834,"src":"7019:12:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes1_$returns$_t_uint8_$","typeString":"function (bytes1) pure returns (uint8)"}},"id":8129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7019:55:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"7007:67:36"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8133,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8131,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8120,"src":"7092:3:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"39","id":8132,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7098:1:36","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"src":"7092:7:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8138,"nodeType":"IfStatement","src":"7088:30:36","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":8134,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7109:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":8135,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7116:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8136,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"7108:10:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":8097,"id":8137,"nodeType":"Return","src":"7101:17:36"}},{"expression":{"id":8141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8139,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8106,"src":"7132:6:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"hexValue":"3130","id":8140,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7142:2:36","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"7132:12:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8142,"nodeType":"ExpressionStatement","src":"7132:12:36"},{"expression":{"id":8145,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8143,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8106,"src":"7158:6:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":8144,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8120,"src":"7168:3:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"7158:13:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8146,"nodeType":"ExpressionStatement","src":"7158:13:36"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8113,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8110,"src":"6979:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":8114,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8091,"src":"6983:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6979:7:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8148,"initializationExpression":{"assignments":[8110],"declarations":[{"constant":false,"id":8110,"mutability":"mutable","name":"i","nameLocation":"6968:1:36","nodeType":"VariableDeclaration","scope":8148,"src":"6960:9:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8109,"name":"uint256","nodeType":"ElementaryTypeName","src":"6960:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8112,"initialValue":{"id":8111,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8089,"src":"6972:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6960:17:36"},"loopExpression":{"expression":{"id":8117,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6988:3:36","subExpression":{"id":8116,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8110,"src":"6990:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8118,"nodeType":"ExpressionStatement","src":"6988:3:36"},"nodeType":"ForStatement","src":"6955:227:36"},{"expression":{"components":[{"hexValue":"74727565","id":8149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7199:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":8150,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8106,"src":"7205:6:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":8151,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7198:14:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":8097,"id":8152,"nodeType":"Return","src":"7191:21:36"}]},"documentation":{"id":8085,"nodeType":"StructuredDocumentation","src":"6475:224:36","text":" @dev Implementation of {tryParseUint-string-uint256-uint256} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":8154,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseUintUncheckedBounds","nameLocation":"6713:28:36","nodeType":"FunctionDefinition","parameters":{"id":8092,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8087,"mutability":"mutable","name":"input","nameLocation":"6765:5:36","nodeType":"VariableDeclaration","scope":8154,"src":"6751:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8086,"name":"string","nodeType":"ElementaryTypeName","src":"6751:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8089,"mutability":"mutable","name":"begin","nameLocation":"6788:5:36","nodeType":"VariableDeclaration","scope":8154,"src":"6780:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8088,"name":"uint256","nodeType":"ElementaryTypeName","src":"6780:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8091,"mutability":"mutable","name":"end","nameLocation":"6811:3:36","nodeType":"VariableDeclaration","scope":8154,"src":"6803:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8090,"name":"uint256","nodeType":"ElementaryTypeName","src":"6803:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6741:79:36"},"returnParameters":{"id":8097,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8094,"mutability":"mutable","name":"success","nameLocation":"6848:7:36","nodeType":"VariableDeclaration","scope":8154,"src":"6843:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8093,"name":"bool","nodeType":"ElementaryTypeName","src":"6843:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8096,"mutability":"mutable","name":"value","nameLocation":"6865:5:36","nodeType":"VariableDeclaration","scope":8154,"src":"6857:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8095,"name":"uint256","nodeType":"ElementaryTypeName","src":"6857:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6842:29:36"},"scope":9013,"src":"6704:515:36","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":8172,"nodeType":"Block","src":"7516:63:36","statements":[{"expression":{"arguments":[{"id":8163,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8157,"src":"7542:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":8164,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7549:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":8167,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8157,"src":"7558:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8166,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7552:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8165,"name":"bytes","nodeType":"ElementaryTypeName","src":"7552:5:36","typeDescriptions":{}}},"id":8168,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7552:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8169,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7565:6:36","memberName":"length","nodeType":"MemberAccess","src":"7552:19:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8162,"name":"parseInt","nodeType":"Identifier","overloadedDeclarations":[8173,8204],"referencedDeclaration":8204,"src":"7533:8:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (int256)"}},"id":8170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7533:39:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":8161,"id":8171,"nodeType":"Return","src":"7526:46:36"}]},"documentation":{"id":8155,"nodeType":"StructuredDocumentation","src":"7225:216:36","text":" @dev Parse a decimal string and returns the value as a `int256`.\n Requirements:\n - The string must be formatted as `[-+]?[0-9]*`\n - The result must fit in an `int256` type."},"id":8173,"implemented":true,"kind":"function","modifiers":[],"name":"parseInt","nameLocation":"7455:8:36","nodeType":"FunctionDefinition","parameters":{"id":8158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8157,"mutability":"mutable","name":"input","nameLocation":"7478:5:36","nodeType":"VariableDeclaration","scope":8173,"src":"7464:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8156,"name":"string","nodeType":"ElementaryTypeName","src":"7464:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7463:21:36"},"returnParameters":{"id":8161,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8160,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8173,"src":"7508:6:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8159,"name":"int256","nodeType":"ElementaryTypeName","src":"7508:6:36","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"7507:8:36"},"scope":9013,"src":"7446:133:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8203,"nodeType":"Block","src":"7984:151:36","statements":[{"assignments":[8186,8188],"declarations":[{"constant":false,"id":8186,"mutability":"mutable","name":"success","nameLocation":"8000:7:36","nodeType":"VariableDeclaration","scope":8203,"src":"7995:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8185,"name":"bool","nodeType":"ElementaryTypeName","src":"7995:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8188,"mutability":"mutable","name":"value","nameLocation":"8016:5:36","nodeType":"VariableDeclaration","scope":8203,"src":"8009:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8187,"name":"int256","nodeType":"ElementaryTypeName","src":"8009:6:36","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":8194,"initialValue":{"arguments":[{"id":8190,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8176,"src":"8037:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":8191,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8178,"src":"8044:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8192,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8180,"src":"8051:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8189,"name":"tryParseInt","nodeType":"Identifier","overloadedDeclarations":[8225,8267],"referencedDeclaration":8267,"src":"8025:11:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,int256)"}},"id":8193,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8025:30:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"nodeType":"VariableDeclarationStatement","src":"7994:61:36"},{"condition":{"id":8196,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"8069:8:36","subExpression":{"id":8195,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8186,"src":"8070:7:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8200,"nodeType":"IfStatement","src":"8065:41:36","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":8197,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7674,"src":"8086:18:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":8198,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8086:20:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8199,"nodeType":"RevertStatement","src":"8079:27:36"}},{"expression":{"id":8201,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8188,"src":"8123:5:36","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":8184,"id":8202,"nodeType":"Return","src":"8116:12:36"}]},"documentation":{"id":8174,"nodeType":"StructuredDocumentation","src":"7585:296:36","text":" @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `[-+]?[0-9]*`\n - The result must fit in an `int256` type."},"id":8204,"implemented":true,"kind":"function","modifiers":[],"name":"parseInt","nameLocation":"7895:8:36","nodeType":"FunctionDefinition","parameters":{"id":8181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8176,"mutability":"mutable","name":"input","nameLocation":"7918:5:36","nodeType":"VariableDeclaration","scope":8204,"src":"7904:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8175,"name":"string","nodeType":"ElementaryTypeName","src":"7904:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8178,"mutability":"mutable","name":"begin","nameLocation":"7933:5:36","nodeType":"VariableDeclaration","scope":8204,"src":"7925:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8177,"name":"uint256","nodeType":"ElementaryTypeName","src":"7925:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8180,"mutability":"mutable","name":"end","nameLocation":"7948:3:36","nodeType":"VariableDeclaration","scope":8204,"src":"7940:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8179,"name":"uint256","nodeType":"ElementaryTypeName","src":"7940:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7903:49:36"},"returnParameters":{"id":8184,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8183,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8204,"src":"7976:6:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8182,"name":"int256","nodeType":"ElementaryTypeName","src":"7976:6:36","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"7975:8:36"},"scope":9013,"src":"7886:249:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8224,"nodeType":"Block","src":"8526:82:36","statements":[{"expression":{"arguments":[{"id":8215,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8207,"src":"8571:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":8216,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8578:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":8219,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8207,"src":"8587:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8218,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8581:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8217,"name":"bytes","nodeType":"ElementaryTypeName","src":"8581:5:36","typeDescriptions":{}}},"id":8220,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8581:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8221,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8594:6:36","memberName":"length","nodeType":"MemberAccess","src":"8581:19:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8214,"name":"_tryParseIntUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8388,"src":"8543:27:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,int256)"}},"id":8222,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8543:58:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":8213,"id":8223,"nodeType":"Return","src":"8536:65:36"}]},"documentation":{"id":8205,"nodeType":"StructuredDocumentation","src":"8141:287:36","text":" @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if\n the result does not fit in a `int256`.\n NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`."},"id":8225,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseInt","nameLocation":"8442:11:36","nodeType":"FunctionDefinition","parameters":{"id":8208,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8207,"mutability":"mutable","name":"input","nameLocation":"8468:5:36","nodeType":"VariableDeclaration","scope":8225,"src":"8454:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8206,"name":"string","nodeType":"ElementaryTypeName","src":"8454:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8453:21:36"},"returnParameters":{"id":8213,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8210,"mutability":"mutable","name":"success","nameLocation":"8503:7:36","nodeType":"VariableDeclaration","scope":8225,"src":"8498:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8209,"name":"bool","nodeType":"ElementaryTypeName","src":"8498:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8212,"mutability":"mutable","name":"value","nameLocation":"8519:5:36","nodeType":"VariableDeclaration","scope":8225,"src":"8512:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8211,"name":"int256","nodeType":"ElementaryTypeName","src":"8512:6:36","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"8497:28:36"},"scope":9013,"src":"8433:175:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"constant":true,"id":8230,"mutability":"constant","name":"ABS_MIN_INT256","nameLocation":"8639:14:36","nodeType":"VariableDeclaration","scope":9013,"src":"8614:50:36","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8226,"name":"uint256","nodeType":"ElementaryTypeName","src":"8614:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1","typeString":"int_const 5789...(69 digits omitted)...9968"},"id":8229,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":8227,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8656:1:36","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"323535","id":8228,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8661:3:36","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"8656:8:36","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1","typeString":"int_const 5789...(69 digits omitted)...9968"}},"visibility":"private"},{"body":{"id":8266,"nodeType":"Block","src":"9130:143:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8254,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8244,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8237,"src":"9144:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":8247,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8233,"src":"9156:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8246,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9150:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8245,"name":"bytes","nodeType":"ElementaryTypeName","src":"9150:5:36","typeDescriptions":{}}},"id":8248,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9150:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8249,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9163:6:36","memberName":"length","nodeType":"MemberAccess","src":"9150:19:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9144:25:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8253,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8251,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8235,"src":"9173:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":8252,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8237,"src":"9181:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9173:11:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9144:40:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8259,"nodeType":"IfStatement","src":"9140:63:36","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":8255,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9194:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":8256,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9201:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8257,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"9193:10:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":8243,"id":8258,"nodeType":"Return","src":"9186:17:36"}},{"expression":{"arguments":[{"id":8261,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8233,"src":"9248:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":8262,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8235,"src":"9255:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8263,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8237,"src":"9262:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8260,"name":"_tryParseIntUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8388,"src":"9220:27:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,int256)"}},"id":8264,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9220:46:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":8243,"id":8265,"nodeType":"Return","src":"9213:53:36"}]},"documentation":{"id":8231,"nodeType":"StructuredDocumentation","src":"8671:303:36","text":" @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n character or if the result does not fit in a `int256`.\n NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`."},"id":8267,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseInt","nameLocation":"8988:11:36","nodeType":"FunctionDefinition","parameters":{"id":8238,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8233,"mutability":"mutable","name":"input","nameLocation":"9023:5:36","nodeType":"VariableDeclaration","scope":8267,"src":"9009:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8232,"name":"string","nodeType":"ElementaryTypeName","src":"9009:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8235,"mutability":"mutable","name":"begin","nameLocation":"9046:5:36","nodeType":"VariableDeclaration","scope":8267,"src":"9038:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8234,"name":"uint256","nodeType":"ElementaryTypeName","src":"9038:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8237,"mutability":"mutable","name":"end","nameLocation":"9069:3:36","nodeType":"VariableDeclaration","scope":8267,"src":"9061:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8236,"name":"uint256","nodeType":"ElementaryTypeName","src":"9061:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8999:79:36"},"returnParameters":{"id":8243,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8240,"mutability":"mutable","name":"success","nameLocation":"9107:7:36","nodeType":"VariableDeclaration","scope":8267,"src":"9102:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8239,"name":"bool","nodeType":"ElementaryTypeName","src":"9102:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8242,"mutability":"mutable","name":"value","nameLocation":"9123:5:36","nodeType":"VariableDeclaration","scope":8267,"src":"9116:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8241,"name":"int256","nodeType":"ElementaryTypeName","src":"9116:6:36","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"9101:28:36"},"scope":9013,"src":"8979:294:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8387,"nodeType":"Block","src":"9673:812:36","statements":[{"assignments":[8282],"declarations":[{"constant":false,"id":8282,"mutability":"mutable","name":"buffer","nameLocation":"9696:6:36","nodeType":"VariableDeclaration","scope":8387,"src":"9683:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8281,"name":"bytes","nodeType":"ElementaryTypeName","src":"9683:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":8287,"initialValue":{"arguments":[{"id":8285,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8270,"src":"9711:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8284,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9705:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8283,"name":"bytes","nodeType":"ElementaryTypeName","src":"9705:5:36","typeDescriptions":{}}},"id":8286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9705:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"9683:34:36"},{"assignments":[8289],"declarations":[{"constant":false,"id":8289,"mutability":"mutable","name":"sign","nameLocation":"9781:4:36","nodeType":"VariableDeclaration","scope":8387,"src":"9774:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":8288,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9774:6:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":8305,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8290,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8272,"src":"9788:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8291,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8274,"src":"9797:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9788:12:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"arguments":[{"id":8300,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8282,"src":"9845:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":8301,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8272,"src":"9853:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8299,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9012,"src":"9822:22:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":8302,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9822:37:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8298,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9815:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":8297,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9815:6:36","typeDescriptions":{}}},"id":8303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9815:45:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":8304,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9788:72:36","trueExpression":{"arguments":[{"hexValue":"30","id":8295,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9810:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":8294,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9803:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":8293,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9803:6:36","typeDescriptions":{}}},"id":8296,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9803:9:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"9774:86:36"},{"assignments":[8307],"declarations":[{"constant":false,"id":8307,"mutability":"mutable","name":"positiveSign","nameLocation":"9946:12:36","nodeType":"VariableDeclaration","scope":8387,"src":"9941:17:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8306,"name":"bool","nodeType":"ElementaryTypeName","src":"9941:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":8314,"initialValue":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":8313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8308,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8289,"src":"9961:4:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"2b","id":8311,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9976:3:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_728b8dbbe730d9acd55e30e768e6a28a04bea0c61b88108287c2c87d79c98bb8","typeString":"literal_string \"+\""},"value":"+"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_728b8dbbe730d9acd55e30e768e6a28a04bea0c61b88108287c2c87d79c98bb8","typeString":"literal_string \"+\""}],"id":8310,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9969:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":8309,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9969:6:36","typeDescriptions":{}}},"id":8312,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9969:11:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"9961:19:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"9941:39:36"},{"assignments":[8316],"declarations":[{"constant":false,"id":8316,"mutability":"mutable","name":"negativeSign","nameLocation":"9995:12:36","nodeType":"VariableDeclaration","scope":8387,"src":"9990:17:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8315,"name":"bool","nodeType":"ElementaryTypeName","src":"9990:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":8323,"initialValue":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":8322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8317,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8289,"src":"10010:4:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"2d","id":8320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10025:3:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""},"value":"-"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""}],"id":8319,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10018:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":8318,"name":"bytes1","nodeType":"ElementaryTypeName","src":"10018:6:36","typeDescriptions":{}}},"id":8321,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10018:11:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"10010:19:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"9990:39:36"},{"assignments":[8325],"declarations":[{"constant":false,"id":8325,"mutability":"mutable","name":"offset","nameLocation":"10047:6:36","nodeType":"VariableDeclaration","scope":8387,"src":"10039:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8324,"name":"uint256","nodeType":"ElementaryTypeName","src":"10039:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8332,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8326,"name":"positiveSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8307,"src":"10057:12:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"id":8327,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8316,"src":"10073:12:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10057:28:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":8329,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10056:30:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8330,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10087:6:36","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"10056:37:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":8331,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10056:39:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10039:56:36"},{"assignments":[8334,8336],"declarations":[{"constant":false,"id":8334,"mutability":"mutable","name":"absSuccess","nameLocation":"10112:10:36","nodeType":"VariableDeclaration","scope":8387,"src":"10107:15:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8333,"name":"bool","nodeType":"ElementaryTypeName","src":"10107:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8336,"mutability":"mutable","name":"absValue","nameLocation":"10132:8:36","nodeType":"VariableDeclaration","scope":8387,"src":"10124:16:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8335,"name":"uint256","nodeType":"ElementaryTypeName","src":"10124:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8344,"initialValue":{"arguments":[{"id":8338,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8270,"src":"10157:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8339,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8272,"src":"10164:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":8340,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8325,"src":"10172:6:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10164:14:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8342,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8274,"src":"10180:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8337,"name":"tryParseUint","nodeType":"Identifier","overloadedDeclarations":[8047,8084],"referencedDeclaration":8084,"src":"10144:12:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":8343,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10144:40:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"10106:78:36"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8349,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8345,"name":"absSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8334,"src":"10199:10:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8348,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8346,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"10213:8:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":8347,"name":"ABS_MIN_INT256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8230,"src":"10224:14:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10213:25:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10199:39:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8365,"name":"absSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8334,"src":"10341:10:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":8366,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8316,"src":"10355:12:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10341:26:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8368,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"10371:8:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8369,"name":"ABS_MIN_INT256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8230,"src":"10383:14:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10371:26:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10341:56:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"components":[{"hexValue":"66616c7365","id":8381,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10469:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":8382,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10476:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8383,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"10468:10:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":8280,"id":8384,"nodeType":"Return","src":"10461:17:36"},"id":8385,"nodeType":"IfStatement","src":"10337:141:36","trueBody":{"id":8380,"nodeType":"Block","src":"10399:56:36","statements":[{"expression":{"components":[{"hexValue":"74727565","id":8372,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10421:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"arguments":[{"id":8375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10432:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":8374,"name":"int256","nodeType":"ElementaryTypeName","src":"10432:6:36","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"}],"id":8373,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"10427:4:36","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":8376,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10427:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_int256","typeString":"type(int256)"}},"id":8377,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10440:3:36","memberName":"min","nodeType":"MemberAccess","src":"10427:16:36","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":8378,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"10420:24:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":8280,"id":8379,"nodeType":"Return","src":"10413:31:36"}]}},"id":8386,"nodeType":"IfStatement","src":"10195:283:36","trueBody":{"id":8364,"nodeType":"Block","src":"10240:91:36","statements":[{"expression":{"components":[{"hexValue":"74727565","id":8350,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10262:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"condition":{"id":8351,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8316,"src":"10268:12:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":8359,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"10310:8:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8358,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10303:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":8357,"name":"int256","nodeType":"ElementaryTypeName","src":"10303:6:36","typeDescriptions":{}}},"id":8360,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10303:16:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":8361,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"10268:51:36","trueExpression":{"id":8356,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"10283:17:36","subExpression":{"arguments":[{"id":8354,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8336,"src":"10291:8:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8353,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10284:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":8352,"name":"int256","nodeType":"ElementaryTypeName","src":"10284:6:36","typeDescriptions":{}}},"id":8355,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10284:16:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":8362,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10261:59:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":8280,"id":8363,"nodeType":"Return","src":"10254:66:36"}]}}]},"documentation":{"id":8268,"nodeType":"StructuredDocumentation","src":"9279:223:36","text":" @dev Implementation of {tryParseInt-string-uint256-uint256} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":8388,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseIntUncheckedBounds","nameLocation":"9516:27:36","nodeType":"FunctionDefinition","parameters":{"id":8275,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8270,"mutability":"mutable","name":"input","nameLocation":"9567:5:36","nodeType":"VariableDeclaration","scope":8388,"src":"9553:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8269,"name":"string","nodeType":"ElementaryTypeName","src":"9553:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8272,"mutability":"mutable","name":"begin","nameLocation":"9590:5:36","nodeType":"VariableDeclaration","scope":8388,"src":"9582:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8271,"name":"uint256","nodeType":"ElementaryTypeName","src":"9582:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8274,"mutability":"mutable","name":"end","nameLocation":"9613:3:36","nodeType":"VariableDeclaration","scope":8388,"src":"9605:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8273,"name":"uint256","nodeType":"ElementaryTypeName","src":"9605:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9543:79:36"},"returnParameters":{"id":8280,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8277,"mutability":"mutable","name":"success","nameLocation":"9650:7:36","nodeType":"VariableDeclaration","scope":8388,"src":"9645:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8276,"name":"bool","nodeType":"ElementaryTypeName","src":"9645:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8279,"mutability":"mutable","name":"value","nameLocation":"9666:5:36","nodeType":"VariableDeclaration","scope":8388,"src":"9659:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":8278,"name":"int256","nodeType":"ElementaryTypeName","src":"9659:6:36","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"9644:28:36"},"scope":9013,"src":"9507:978:36","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":8406,"nodeType":"Block","src":"10830:67:36","statements":[{"expression":{"arguments":[{"id":8397,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8391,"src":"10860:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":8398,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10867:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":8401,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8391,"src":"10876:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8400,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10870:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8399,"name":"bytes","nodeType":"ElementaryTypeName","src":"10870:5:36","typeDescriptions":{}}},"id":8402,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10870:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10883:6:36","memberName":"length","nodeType":"MemberAccess","src":"10870:19:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8396,"name":"parseHexUint","nodeType":"Identifier","overloadedDeclarations":[8407,8438],"referencedDeclaration":8438,"src":"10847:12:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (uint256)"}},"id":8404,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10847:43:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8395,"id":8405,"nodeType":"Return","src":"10840:50:36"}]},"documentation":{"id":8389,"nodeType":"StructuredDocumentation","src":"10491:259:36","text":" @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as a `uint256`.\n Requirements:\n - The string must be formatted as `(0x)?[0-9a-fA-F]*`\n - The result must fit in an `uint256` type."},"id":8407,"implemented":true,"kind":"function","modifiers":[],"name":"parseHexUint","nameLocation":"10764:12:36","nodeType":"FunctionDefinition","parameters":{"id":8392,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8391,"mutability":"mutable","name":"input","nameLocation":"10791:5:36","nodeType":"VariableDeclaration","scope":8407,"src":"10777:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8390,"name":"string","nodeType":"ElementaryTypeName","src":"10777:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"10776:21:36"},"returnParameters":{"id":8395,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8394,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8407,"src":"10821:7:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8393,"name":"uint256","nodeType":"ElementaryTypeName","src":"10821:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10820:9:36"},"scope":9013,"src":"10755:142:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8437,"nodeType":"Block","src":"11318:156:36","statements":[{"assignments":[8420,8422],"declarations":[{"constant":false,"id":8420,"mutability":"mutable","name":"success","nameLocation":"11334:7:36","nodeType":"VariableDeclaration","scope":8437,"src":"11329:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8419,"name":"bool","nodeType":"ElementaryTypeName","src":"11329:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8422,"mutability":"mutable","name":"value","nameLocation":"11351:5:36","nodeType":"VariableDeclaration","scope":8437,"src":"11343:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8421,"name":"uint256","nodeType":"ElementaryTypeName","src":"11343:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8428,"initialValue":{"arguments":[{"id":8424,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8410,"src":"11376:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":8425,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8412,"src":"11383:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8426,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8414,"src":"11390:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8423,"name":"tryParseHexUint","nodeType":"Identifier","overloadedDeclarations":[8459,8496],"referencedDeclaration":8496,"src":"11360:15:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":8427,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11360:34:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"11328:66:36"},{"condition":{"id":8430,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"11408:8:36","subExpression":{"id":8429,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8420,"src":"11409:7:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8434,"nodeType":"IfStatement","src":"11404:41:36","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":8431,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7674,"src":"11425:18:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":8432,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11425:20:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8433,"nodeType":"RevertStatement","src":"11418:27:36"}},{"expression":{"id":8435,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8422,"src":"11462:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8418,"id":8436,"nodeType":"Return","src":"11455:12:36"}]},"documentation":{"id":8408,"nodeType":"StructuredDocumentation","src":"10903:307:36","text":" @dev Variant of {parseHexUint-string} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `(0x)?[0-9a-fA-F]*`\n - The result must fit in an `uint256` type."},"id":8438,"implemented":true,"kind":"function","modifiers":[],"name":"parseHexUint","nameLocation":"11224:12:36","nodeType":"FunctionDefinition","parameters":{"id":8415,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8410,"mutability":"mutable","name":"input","nameLocation":"11251:5:36","nodeType":"VariableDeclaration","scope":8438,"src":"11237:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8409,"name":"string","nodeType":"ElementaryTypeName","src":"11237:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8412,"mutability":"mutable","name":"begin","nameLocation":"11266:5:36","nodeType":"VariableDeclaration","scope":8438,"src":"11258:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8411,"name":"uint256","nodeType":"ElementaryTypeName","src":"11258:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8414,"mutability":"mutable","name":"end","nameLocation":"11281:3:36","nodeType":"VariableDeclaration","scope":8438,"src":"11273:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8413,"name":"uint256","nodeType":"ElementaryTypeName","src":"11273:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11236:49:36"},"returnParameters":{"id":8418,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8417,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8438,"src":"11309:7:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8416,"name":"uint256","nodeType":"ElementaryTypeName","src":"11309:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11308:9:36"},"scope":9013,"src":"11215:259:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8458,"nodeType":"Block","src":"11801:86:36","statements":[{"expression":{"arguments":[{"id":8449,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8441,"src":"11850:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":8450,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11857:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":8453,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8441,"src":"11866:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8452,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11860:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8451,"name":"bytes","nodeType":"ElementaryTypeName","src":"11860:5:36","typeDescriptions":{}}},"id":8454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11860:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11873:6:36","memberName":"length","nodeType":"MemberAccess","src":"11860:19:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8448,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8599,"src":"11818:31:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":8456,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11818:62:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":8447,"id":8457,"nodeType":"Return","src":"11811:69:36"}]},"documentation":{"id":8439,"nodeType":"StructuredDocumentation","src":"11480:218:36","text":" @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":8459,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseHexUint","nameLocation":"11712:15:36","nodeType":"FunctionDefinition","parameters":{"id":8442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8441,"mutability":"mutable","name":"input","nameLocation":"11742:5:36","nodeType":"VariableDeclaration","scope":8459,"src":"11728:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8440,"name":"string","nodeType":"ElementaryTypeName","src":"11728:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"11727:21:36"},"returnParameters":{"id":8447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8444,"mutability":"mutable","name":"success","nameLocation":"11777:7:36","nodeType":"VariableDeclaration","scope":8459,"src":"11772:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8443,"name":"bool","nodeType":"ElementaryTypeName","src":"11772:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8446,"mutability":"mutable","name":"value","nameLocation":"11794:5:36","nodeType":"VariableDeclaration","scope":8459,"src":"11786:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8445,"name":"uint256","nodeType":"ElementaryTypeName","src":"11786:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11771:29:36"},"scope":9013,"src":"11703:184:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8495,"nodeType":"Block","src":"12295:147:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8483,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8473,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8466,"src":"12309:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":8476,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8462,"src":"12321:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8475,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12315:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8474,"name":"bytes","nodeType":"ElementaryTypeName","src":"12315:5:36","typeDescriptions":{}}},"id":8477,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12315:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12328:6:36","memberName":"length","nodeType":"MemberAccess","src":"12315:19:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12309:25:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8480,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8464,"src":"12338:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":8481,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8466,"src":"12346:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12338:11:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12309:40:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8488,"nodeType":"IfStatement","src":"12305:63:36","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":8484,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"12359:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":8485,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12366:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8486,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"12358:10:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":8472,"id":8487,"nodeType":"Return","src":"12351:17:36"}},{"expression":{"arguments":[{"id":8490,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8462,"src":"12417:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":8491,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8464,"src":"12424:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8492,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8466,"src":"12431:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8489,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8599,"src":"12385:31:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":8493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12385:50:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":8472,"id":8494,"nodeType":"Return","src":"12378:57:36"}]},"documentation":{"id":8460,"nodeType":"StructuredDocumentation","src":"11893:241:36","text":" @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an\n invalid character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":8496,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseHexUint","nameLocation":"12148:15:36","nodeType":"FunctionDefinition","parameters":{"id":8467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8462,"mutability":"mutable","name":"input","nameLocation":"12187:5:36","nodeType":"VariableDeclaration","scope":8496,"src":"12173:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8461,"name":"string","nodeType":"ElementaryTypeName","src":"12173:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8464,"mutability":"mutable","name":"begin","nameLocation":"12210:5:36","nodeType":"VariableDeclaration","scope":8496,"src":"12202:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8463,"name":"uint256","nodeType":"ElementaryTypeName","src":"12202:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8466,"mutability":"mutable","name":"end","nameLocation":"12233:3:36","nodeType":"VariableDeclaration","scope":8496,"src":"12225:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8465,"name":"uint256","nodeType":"ElementaryTypeName","src":"12225:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12163:79:36"},"returnParameters":{"id":8472,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8469,"mutability":"mutable","name":"success","nameLocation":"12271:7:36","nodeType":"VariableDeclaration","scope":8496,"src":"12266:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8468,"name":"bool","nodeType":"ElementaryTypeName","src":"12266:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8471,"mutability":"mutable","name":"value","nameLocation":"12288:5:36","nodeType":"VariableDeclaration","scope":8496,"src":"12280:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8470,"name":"uint256","nodeType":"ElementaryTypeName","src":"12280:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12265:29:36"},"scope":9013,"src":"12139:303:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8598,"nodeType":"Block","src":"12851:881:36","statements":[{"assignments":[8511],"declarations":[{"constant":false,"id":8511,"mutability":"mutable","name":"buffer","nameLocation":"12874:6:36","nodeType":"VariableDeclaration","scope":8598,"src":"12861:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8510,"name":"bytes","nodeType":"ElementaryTypeName","src":"12861:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":8516,"initialValue":{"arguments":[{"id":8514,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8499,"src":"12889:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8513,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12883:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8512,"name":"bytes","nodeType":"ElementaryTypeName","src":"12883:5:36","typeDescriptions":{}}},"id":8515,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12883:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"12861:34:36"},{"assignments":[8518],"declarations":[{"constant":false,"id":8518,"mutability":"mutable","name":"hasPrefix","nameLocation":"12948:9:36","nodeType":"VariableDeclaration","scope":8598,"src":"12943:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8517,"name":"bool","nodeType":"ElementaryTypeName","src":"12943:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":8538,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8537,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8523,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8519,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8503,"src":"12961:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8520,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8501,"src":"12967:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":8521,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12975:1:36","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"12967:9:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12961:15:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":8524,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12960:17:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":8536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":8528,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8511,"src":"13011:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":8529,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8501,"src":"13019:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8527,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9012,"src":"12988:22:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":8530,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12988:37:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8526,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12981:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":8525,"name":"bytes2","nodeType":"ElementaryTypeName","src":"12981:6:36","typeDescriptions":{}}},"id":8531,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12981:45:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"3078","id":8534,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13037:4:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""},"value":"0x"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""}],"id":8533,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13030:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":8532,"name":"bytes2","nodeType":"ElementaryTypeName","src":"13030:6:36","typeDescriptions":{}}},"id":8535,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13030:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"12981:61:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12960:82:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"12943:99:36"},{"assignments":[8540],"declarations":[{"constant":false,"id":8540,"mutability":"mutable","name":"offset","nameLocation":"13131:6:36","nodeType":"VariableDeclaration","scope":8598,"src":"13123:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8539,"name":"uint256","nodeType":"ElementaryTypeName","src":"13123:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8546,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8545,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8541,"name":"hasPrefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8518,"src":"13140:9:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13150:6:36","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"13140:16:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":8543,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13140:18:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":8544,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13161:1:36","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"13140:22:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13123:39:36"},{"assignments":[8548],"declarations":[{"constant":false,"id":8548,"mutability":"mutable","name":"result","nameLocation":"13181:6:36","nodeType":"VariableDeclaration","scope":8598,"src":"13173:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8547,"name":"uint256","nodeType":"ElementaryTypeName","src":"13173:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8550,"initialValue":{"hexValue":"30","id":8549,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13190:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"13173:18:36"},{"body":{"id":8592,"nodeType":"Block","src":"13248:447:36","statements":[{"assignments":[8564],"declarations":[{"constant":false,"id":8564,"mutability":"mutable","name":"chr","nameLocation":"13268:3:36","nodeType":"VariableDeclaration","scope":8592,"src":"13262:9:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8563,"name":"uint8","nodeType":"ElementaryTypeName","src":"13262:5:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":8574,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":8569,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8511,"src":"13317:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":8570,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8552,"src":"13325:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8568,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9012,"src":"13294:22:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":8571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13294:33:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8567,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13287:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":8566,"name":"bytes1","nodeType":"ElementaryTypeName","src":"13287:6:36","typeDescriptions":{}}},"id":8572,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13287:41:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":8565,"name":"_tryParseChr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8834,"src":"13274:12:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes1_$returns$_t_uint8_$","typeString":"function (bytes1) pure returns (uint8)"}},"id":8573,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13274:55:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"13262:67:36"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8577,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8575,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8564,"src":"13347:3:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3135","id":8576,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13353:2:36","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"15"},"src":"13347:8:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8582,"nodeType":"IfStatement","src":"13343:31:36","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":8578,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13365:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":8579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13372:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8580,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"13364:10:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":8509,"id":8581,"nodeType":"Return","src":"13357:17:36"}},{"expression":{"id":8585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8583,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8548,"src":"13388:6:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"hexValue":"3136","id":8584,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13398:2:36","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"13388:12:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8586,"nodeType":"ExpressionStatement","src":"13388:12:36"},{"id":8591,"nodeType":"UncheckedBlock","src":"13414:271:36","statements":[{"expression":{"id":8589,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8587,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8548,"src":"13657:6:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":8588,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8564,"src":"13667:3:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"13657:13:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8590,"nodeType":"ExpressionStatement","src":"13657:13:36"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8559,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8557,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8552,"src":"13234:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":8558,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8503,"src":"13238:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13234:7:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8593,"initializationExpression":{"assignments":[8552],"declarations":[{"constant":false,"id":8552,"mutability":"mutable","name":"i","nameLocation":"13214:1:36","nodeType":"VariableDeclaration","scope":8593,"src":"13206:9:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8551,"name":"uint256","nodeType":"ElementaryTypeName","src":"13206:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8556,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8555,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8553,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8501,"src":"13218:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":8554,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8540,"src":"13226:6:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13218:14:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13206:26:36"},"loopExpression":{"expression":{"id":8561,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"13243:3:36","subExpression":{"id":8560,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8552,"src":"13245:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8562,"nodeType":"ExpressionStatement","src":"13243:3:36"},"nodeType":"ForStatement","src":"13201:494:36"},{"expression":{"components":[{"hexValue":"74727565","id":8594,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13712:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":8595,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8548,"src":"13718:6:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":8596,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13711:14:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":8509,"id":8597,"nodeType":"Return","src":"13704:21:36"}]},"documentation":{"id":8497,"nodeType":"StructuredDocumentation","src":"12448:227:36","text":" @dev Implementation of {tryParseHexUint-string-uint256-uint256} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":8599,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseHexUintUncheckedBounds","nameLocation":"12689:31:36","nodeType":"FunctionDefinition","parameters":{"id":8504,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8499,"mutability":"mutable","name":"input","nameLocation":"12744:5:36","nodeType":"VariableDeclaration","scope":8599,"src":"12730:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8498,"name":"string","nodeType":"ElementaryTypeName","src":"12730:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8501,"mutability":"mutable","name":"begin","nameLocation":"12767:5:36","nodeType":"VariableDeclaration","scope":8599,"src":"12759:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8500,"name":"uint256","nodeType":"ElementaryTypeName","src":"12759:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8503,"mutability":"mutable","name":"end","nameLocation":"12790:3:36","nodeType":"VariableDeclaration","scope":8599,"src":"12782:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8502,"name":"uint256","nodeType":"ElementaryTypeName","src":"12782:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12720:79:36"},"returnParameters":{"id":8509,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8506,"mutability":"mutable","name":"success","nameLocation":"12827:7:36","nodeType":"VariableDeclaration","scope":8599,"src":"12822:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8505,"name":"bool","nodeType":"ElementaryTypeName","src":"12822:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8508,"mutability":"mutable","name":"value","nameLocation":"12844:5:36","nodeType":"VariableDeclaration","scope":8599,"src":"12836:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8507,"name":"uint256","nodeType":"ElementaryTypeName","src":"12836:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12821:29:36"},"scope":9013,"src":"12680:1052:36","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":8617,"nodeType":"Block","src":"14030:67:36","statements":[{"expression":{"arguments":[{"id":8608,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8602,"src":"14060:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":8609,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14067:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":8612,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8602,"src":"14076:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8611,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14070:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8610,"name":"bytes","nodeType":"ElementaryTypeName","src":"14070:5:36","typeDescriptions":{}}},"id":8613,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14070:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8614,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14083:6:36","memberName":"length","nodeType":"MemberAccess","src":"14070:19:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8607,"name":"parseAddress","nodeType":"Identifier","overloadedDeclarations":[8618,8649],"referencedDeclaration":8649,"src":"14047:12:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_address_$","typeString":"function (string memory,uint256,uint256) pure returns (address)"}},"id":8615,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14047:43:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":8606,"id":8616,"nodeType":"Return","src":"14040:50:36"}]},"documentation":{"id":8600,"nodeType":"StructuredDocumentation","src":"13738:212:36","text":" @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as an `address`.\n Requirements:\n - The string must be formatted as `(0x)?[0-9a-fA-F]{40}`"},"id":8618,"implemented":true,"kind":"function","modifiers":[],"name":"parseAddress","nameLocation":"13964:12:36","nodeType":"FunctionDefinition","parameters":{"id":8603,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8602,"mutability":"mutable","name":"input","nameLocation":"13991:5:36","nodeType":"VariableDeclaration","scope":8618,"src":"13977:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8601,"name":"string","nodeType":"ElementaryTypeName","src":"13977:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"13976:21:36"},"returnParameters":{"id":8606,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8605,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8618,"src":"14021:7:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8604,"name":"address","nodeType":"ElementaryTypeName","src":"14021:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14020:9:36"},"scope":9013,"src":"13955:142:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8648,"nodeType":"Block","src":"14470:165:36","statements":[{"assignments":[8631,8633],"declarations":[{"constant":false,"id":8631,"mutability":"mutable","name":"success","nameLocation":"14486:7:36","nodeType":"VariableDeclaration","scope":8648,"src":"14481:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8630,"name":"bool","nodeType":"ElementaryTypeName","src":"14481:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8633,"mutability":"mutable","name":"value","nameLocation":"14503:5:36","nodeType":"VariableDeclaration","scope":8648,"src":"14495:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8632,"name":"address","nodeType":"ElementaryTypeName","src":"14495:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":8639,"initialValue":{"arguments":[{"id":8635,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8621,"src":"14528:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":8636,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8623,"src":"14535:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8637,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8625,"src":"14542:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8634,"name":"tryParseAddress","nodeType":"Identifier","overloadedDeclarations":[8670,8774],"referencedDeclaration":8774,"src":"14512:15:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_address_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,address)"}},"id":8638,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14512:34:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"nodeType":"VariableDeclarationStatement","src":"14480:66:36"},{"condition":{"id":8641,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14560:8:36","subExpression":{"id":8640,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8631,"src":"14561:7:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8645,"nodeType":"IfStatement","src":"14556:50:36","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":8642,"name":"StringsInvalidAddressFormat","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7677,"src":"14577:27:36","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":8643,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14577:29:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8644,"nodeType":"RevertStatement","src":"14570:36:36"}},{"expression":{"id":8646,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8633,"src":"14623:5:36","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":8629,"id":8647,"nodeType":"Return","src":"14616:12:36"}]},"documentation":{"id":8619,"nodeType":"StructuredDocumentation","src":"14103:259:36","text":" @dev Variant of {parseAddress-string} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}`"},"id":8649,"implemented":true,"kind":"function","modifiers":[],"name":"parseAddress","nameLocation":"14376:12:36","nodeType":"FunctionDefinition","parameters":{"id":8626,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8621,"mutability":"mutable","name":"input","nameLocation":"14403:5:36","nodeType":"VariableDeclaration","scope":8649,"src":"14389:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8620,"name":"string","nodeType":"ElementaryTypeName","src":"14389:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8623,"mutability":"mutable","name":"begin","nameLocation":"14418:5:36","nodeType":"VariableDeclaration","scope":8649,"src":"14410:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8622,"name":"uint256","nodeType":"ElementaryTypeName","src":"14410:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8625,"mutability":"mutable","name":"end","nameLocation":"14433:3:36","nodeType":"VariableDeclaration","scope":8649,"src":"14425:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8624,"name":"uint256","nodeType":"ElementaryTypeName","src":"14425:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14388:49:36"},"returnParameters":{"id":8629,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8628,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8649,"src":"14461:7:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8627,"name":"address","nodeType":"ElementaryTypeName","src":"14461:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14460:9:36"},"scope":9013,"src":"14367:268:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8669,"nodeType":"Block","src":"14942:70:36","statements":[{"expression":{"arguments":[{"id":8660,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8652,"src":"14975:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":8661,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14982:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":8664,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8652,"src":"14991:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8663,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14985:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8662,"name":"bytes","nodeType":"ElementaryTypeName","src":"14985:5:36","typeDescriptions":{}}},"id":8665,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14985:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14998:6:36","memberName":"length","nodeType":"MemberAccess","src":"14985:19:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8659,"name":"tryParseAddress","nodeType":"Identifier","overloadedDeclarations":[8670,8774],"referencedDeclaration":8774,"src":"14959:15:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_address_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,address)"}},"id":8667,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14959:46:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":8658,"id":8668,"nodeType":"Return","src":"14952:53:36"}]},"documentation":{"id":8650,"nodeType":"StructuredDocumentation","src":"14641:198:36","text":" @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly\n formatted address. See {parseAddress-string} requirements."},"id":8670,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseAddress","nameLocation":"14853:15:36","nodeType":"FunctionDefinition","parameters":{"id":8653,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8652,"mutability":"mutable","name":"input","nameLocation":"14883:5:36","nodeType":"VariableDeclaration","scope":8670,"src":"14869:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8651,"name":"string","nodeType":"ElementaryTypeName","src":"14869:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"14868:21:36"},"returnParameters":{"id":8658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8655,"mutability":"mutable","name":"success","nameLocation":"14918:7:36","nodeType":"VariableDeclaration","scope":8670,"src":"14913:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8654,"name":"bool","nodeType":"ElementaryTypeName","src":"14913:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8657,"mutability":"mutable","name":"value","nameLocation":"14935:5:36","nodeType":"VariableDeclaration","scope":8670,"src":"14927:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8656,"name":"address","nodeType":"ElementaryTypeName","src":"14927:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14912:29:36"},"scope":9013,"src":"14844:168:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8773,"nodeType":"Block","src":"15405:733:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8690,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8684,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8677,"src":"15419:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":8687,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8673,"src":"15431:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8686,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15425:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8685,"name":"bytes","nodeType":"ElementaryTypeName","src":"15425:5:36","typeDescriptions":{}}},"id":8688,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15425:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15438:6:36","memberName":"length","nodeType":"MemberAccess","src":"15425:19:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15419:25:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8693,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8691,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8675,"src":"15448:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":8692,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8677,"src":"15456:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15448:11:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15419:40:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8702,"nodeType":"IfStatement","src":"15415:72:36","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":8695,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"15469:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":8698,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15484:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":8697,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15476:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8696,"name":"address","nodeType":"ElementaryTypeName","src":"15476:7:36","typeDescriptions":{}}},"id":8699,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15476:10:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":8700,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"15468:19:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":8683,"id":8701,"nodeType":"Return","src":"15461:26:36"}},{"assignments":[8704],"declarations":[{"constant":false,"id":8704,"mutability":"mutable","name":"hasPrefix","nameLocation":"15503:9:36","nodeType":"VariableDeclaration","scope":8773,"src":"15498:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8703,"name":"bool","nodeType":"ElementaryTypeName","src":"15498:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":8727,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8726,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8705,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8677,"src":"15516:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8708,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8706,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8675,"src":"15522:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":8707,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15530:1:36","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"15522:9:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15516:15:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":8710,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15515:17:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":8725,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"arguments":[{"id":8716,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8673,"src":"15572:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8715,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15566:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8714,"name":"bytes","nodeType":"ElementaryTypeName","src":"15566:5:36","typeDescriptions":{}}},"id":8717,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15566:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":8718,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8675,"src":"15580:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8713,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9012,"src":"15543:22:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":8719,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15543:43:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8712,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15536:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":8711,"name":"bytes2","nodeType":"ElementaryTypeName","src":"15536:6:36","typeDescriptions":{}}},"id":8720,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15536:51:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"3078","id":8723,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15598:4:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""},"value":"0x"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""}],"id":8722,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15591:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":8721,"name":"bytes2","nodeType":"ElementaryTypeName","src":"15591:6:36","typeDescriptions":{}}},"id":8724,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15591:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"15536:67:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15515:88:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"15498:105:36"},{"assignments":[8729],"declarations":[{"constant":false,"id":8729,"mutability":"mutable","name":"expectedLength","nameLocation":"15692:14:36","nodeType":"VariableDeclaration","scope":8773,"src":"15684:22:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8728,"name":"uint256","nodeType":"ElementaryTypeName","src":"15684:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8737,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8736,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3430","id":8730,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15709:2:36","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8731,"name":"hasPrefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8704,"src":"15714:9:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15724:6:36","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"15714:16:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":8733,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15714:18:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":8734,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15735:1:36","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"15714:22:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15709:27:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15684:52:36"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8742,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8740,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8738,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8677,"src":"15801:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":8739,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8675,"src":"15807:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15801:11:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8741,"name":"expectedLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8729,"src":"15816:14:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15801:29:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":8771,"nodeType":"Block","src":"16081:51:36","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":8764,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"16103:5:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":8767,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16118:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":8766,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16110:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8765,"name":"address","nodeType":"ElementaryTypeName","src":"16110:7:36","typeDescriptions":{}}},"id":8768,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16110:10:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":8769,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"16102:19:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":8683,"id":8770,"nodeType":"Return","src":"16095:26:36"}]},"id":8772,"nodeType":"IfStatement","src":"15797:335:36","trueBody":{"id":8763,"nodeType":"Block","src":"15832:243:36","statements":[{"assignments":[8744,8746],"declarations":[{"constant":false,"id":8744,"mutability":"mutable","name":"s","nameLocation":"15953:1:36","nodeType":"VariableDeclaration","scope":8763,"src":"15948:6:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8743,"name":"bool","nodeType":"ElementaryTypeName","src":"15948:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8746,"mutability":"mutable","name":"v","nameLocation":"15964:1:36","nodeType":"VariableDeclaration","scope":8763,"src":"15956:9:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8745,"name":"uint256","nodeType":"ElementaryTypeName","src":"15956:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8752,"initialValue":{"arguments":[{"id":8748,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8673,"src":"16001:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":8749,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8675,"src":"16008:5:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8750,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8677,"src":"16015:3:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8747,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8599,"src":"15969:31:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":8751,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15969:50:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"15947:72:36"},{"expression":{"components":[{"id":8753,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8744,"src":"16041:1:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"arguments":[{"id":8758,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8746,"src":"16060:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8757,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16052:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":8756,"name":"uint160","nodeType":"ElementaryTypeName","src":"16052:7:36","typeDescriptions":{}}},"id":8759,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16052:10:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":8755,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16044:7:36","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8754,"name":"address","nodeType":"ElementaryTypeName","src":"16044:7:36","typeDescriptions":{}}},"id":8760,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16044:19:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":8761,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"16040:24:36","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":8683,"id":8762,"nodeType":"Return","src":"16033:31:36"}]}}]},"documentation":{"id":8671,"nodeType":"StructuredDocumentation","src":"15018:226:36","text":" @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly\n formatted address. See {parseAddress-string-uint256-uint256} requirements."},"id":8774,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseAddress","nameLocation":"15258:15:36","nodeType":"FunctionDefinition","parameters":{"id":8678,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8673,"mutability":"mutable","name":"input","nameLocation":"15297:5:36","nodeType":"VariableDeclaration","scope":8774,"src":"15283:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8672,"name":"string","nodeType":"ElementaryTypeName","src":"15283:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8675,"mutability":"mutable","name":"begin","nameLocation":"15320:5:36","nodeType":"VariableDeclaration","scope":8774,"src":"15312:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8674,"name":"uint256","nodeType":"ElementaryTypeName","src":"15312:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8677,"mutability":"mutable","name":"end","nameLocation":"15343:3:36","nodeType":"VariableDeclaration","scope":8774,"src":"15335:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8676,"name":"uint256","nodeType":"ElementaryTypeName","src":"15335:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15273:79:36"},"returnParameters":{"id":8683,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8680,"mutability":"mutable","name":"success","nameLocation":"15381:7:36","nodeType":"VariableDeclaration","scope":8774,"src":"15376:12:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8679,"name":"bool","nodeType":"ElementaryTypeName","src":"15376:4:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8682,"mutability":"mutable","name":"value","nameLocation":"15398:5:36","nodeType":"VariableDeclaration","scope":8774,"src":"15390:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8681,"name":"address","nodeType":"ElementaryTypeName","src":"15390:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15375:29:36"},"scope":9013,"src":"15249:889:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8833,"nodeType":"Block","src":"16207:461:36","statements":[{"assignments":[8782],"declarations":[{"constant":false,"id":8782,"mutability":"mutable","name":"value","nameLocation":"16223:5:36","nodeType":"VariableDeclaration","scope":8833,"src":"16217:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8781,"name":"uint8","nodeType":"ElementaryTypeName","src":"16217:5:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":8787,"initialValue":{"arguments":[{"id":8785,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8776,"src":"16237:3:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":8784,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16231:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":8783,"name":"uint8","nodeType":"ElementaryTypeName","src":"16231:5:36","typeDescriptions":{}}},"id":8786,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16231:10:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"16217:24:36"},{"id":8830,"nodeType":"UncheckedBlock","src":"16401:238:36","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8790,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8788,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8782,"src":"16429:5:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3437","id":8789,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16437:2:36","typeDescriptions":{"typeIdentifier":"t_rational_47_by_1","typeString":"int_const 47"},"value":"47"},"src":"16429:10:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8791,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8782,"src":"16443:5:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3538","id":8792,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16451:2:36","typeDescriptions":{"typeIdentifier":"t_rational_58_by_1","typeString":"int_const 58"},"value":"58"},"src":"16443:10:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16429:24:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8805,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8799,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8782,"src":"16489:5:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3936","id":8800,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16497:2:36","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"16489:10:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8802,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8782,"src":"16503:5:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"313033","id":8803,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16511:3:36","typeDescriptions":{"typeIdentifier":"t_rational_103_by_1","typeString":"int_const 103"},"value":"103"},"src":"16503:11:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16489:25:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8816,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8812,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8810,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8782,"src":"16550:5:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3634","id":8811,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16558:2:36","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"16550:10:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":8815,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8813,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8782,"src":"16564:5:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3731","id":8814,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16572:2:36","typeDescriptions":{"typeIdentifier":"t_rational_71_by_1","typeString":"int_const 71"},"value":"71"},"src":"16564:10:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16550:24:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"expression":{"arguments":[{"id":8823,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16618:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":8822,"name":"uint8","nodeType":"ElementaryTypeName","src":"16618:5:36","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":8821,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"16613:4:36","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":8824,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16613:11:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":8825,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16625:3:36","memberName":"max","nodeType":"MemberAccess","src":"16613:15:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":8780,"id":8826,"nodeType":"Return","src":"16606:22:36"},"id":8827,"nodeType":"IfStatement","src":"16546:82:36","trueBody":{"expression":{"id":8819,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8817,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8782,"src":"16576:5:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3535","id":8818,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16585:2:36","typeDescriptions":{"typeIdentifier":"t_rational_55_by_1","typeString":"int_const 55"},"value":"55"},"src":"16576:11:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":8820,"nodeType":"ExpressionStatement","src":"16576:11:36"}},"id":8828,"nodeType":"IfStatement","src":"16485:143:36","trueBody":{"expression":{"id":8808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8806,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8782,"src":"16516:5:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3837","id":8807,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16525:2:36","typeDescriptions":{"typeIdentifier":"t_rational_87_by_1","typeString":"int_const 87"},"value":"87"},"src":"16516:11:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":8809,"nodeType":"ExpressionStatement","src":"16516:11:36"}},"id":8829,"nodeType":"IfStatement","src":"16425:203:36","trueBody":{"expression":{"id":8797,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8795,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8782,"src":"16455:5:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3438","id":8796,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16464:2:36","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"16455:11:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":8798,"nodeType":"ExpressionStatement","src":"16455:11:36"}}]},{"expression":{"id":8831,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8782,"src":"16656:5:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":8780,"id":8832,"nodeType":"Return","src":"16649:12:36"}]},"id":8834,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseChr","nameLocation":"16153:12:36","nodeType":"FunctionDefinition","parameters":{"id":8777,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8776,"mutability":"mutable","name":"chr","nameLocation":"16173:3:36","nodeType":"VariableDeclaration","scope":8834,"src":"16166:10:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":8775,"name":"bytes1","nodeType":"ElementaryTypeName","src":"16166:6:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"16165:12:36"},"returnParameters":{"id":8780,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8779,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8834,"src":"16200:5:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8778,"name":"uint8","nodeType":"ElementaryTypeName","src":"16200:5:36","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"16199:7:36"},"scope":9013,"src":"16144:524:36","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":8999,"nodeType":"Block","src":"17334:1331:36","statements":[{"assignments":[8843],"declarations":[{"constant":false,"id":8843,"mutability":"mutable","name":"buffer","nameLocation":"17357:6:36","nodeType":"VariableDeclaration","scope":8999,"src":"17344:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8842,"name":"bytes","nodeType":"ElementaryTypeName","src":"17344:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":8848,"initialValue":{"arguments":[{"id":8846,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8837,"src":"17372:5:36","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8845,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17366:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8844,"name":"bytes","nodeType":"ElementaryTypeName","src":"17366:5:36","typeDescriptions":{}}},"id":8847,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17366:12:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"17344:34:36"},{"assignments":[8850],"declarations":[{"constant":false,"id":8850,"mutability":"mutable","name":"output","nameLocation":"17401:6:36","nodeType":"VariableDeclaration","scope":8999,"src":"17388:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8849,"name":"bytes","nodeType":"ElementaryTypeName","src":"17388:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":8858,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":8853,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17420:1:36","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":8854,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8843,"src":"17424:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8855,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17431:6:36","memberName":"length","nodeType":"MemberAccess","src":"17424:13:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17420:17:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8852,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"17410:9:36","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":8851,"name":"bytes","nodeType":"ElementaryTypeName","src":"17414:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":8857,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17410:28:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"17388:50:36"},{"assignments":[8860],"declarations":[{"constant":false,"id":8860,"mutability":"mutable","name":"outputLength","nameLocation":"17479:12:36","nodeType":"VariableDeclaration","scope":8999,"src":"17471:20:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8859,"name":"uint256","nodeType":"ElementaryTypeName","src":"17471:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8862,"initialValue":{"hexValue":"30","id":8861,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17494:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"17471:24:36"},{"body":{"id":8991,"nodeType":"Block","src":"17546:854:36","statements":[{"assignments":[8874],"declarations":[{"constant":false,"id":8874,"mutability":"mutable","name":"char","nameLocation":"17567:4:36","nodeType":"VariableDeclaration","scope":8991,"src":"17560:11:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":8873,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17560:6:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":8882,"initialValue":{"arguments":[{"arguments":[{"id":8878,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8843,"src":"17604:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":8879,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8864,"src":"17612:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8877,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9012,"src":"17581:22:36","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":8880,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17581:33:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8876,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17574:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":8875,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17574:6:36","typeDescriptions":{}}},"id":8881,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17574:41:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"17560:55:36"},{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8883,"name":"SPECIAL_CHARS_LOOKUP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7664,"src":"17635:20:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8889,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":8884,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17659:1:36","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"arguments":[{"id":8887,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8874,"src":"17670:4:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":8886,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17664:5:36","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":8885,"name":"uint8","nodeType":"ElementaryTypeName","src":"17664:5:36","typeDescriptions":{}}},"id":8888,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17664:11:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"17659:16:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":8890,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17658:18:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17635:41:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":8892,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17634:43:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":8893,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17681:1:36","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17634:48:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":8895,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17633:50:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":8989,"nodeType":"Block","src":"18328:62:36","statements":[{"expression":{"id":8987,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":8982,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8850,"src":"18346:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8985,"indexExpression":{"id":8984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18353:14:36","subExpression":{"id":8983,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8860,"src":"18353:12:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18346:22:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8986,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8874,"src":"18371:4:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"18346:29:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":8988,"nodeType":"ExpressionStatement","src":"18346:29:36"}]},"id":8990,"nodeType":"IfStatement","src":"17629:761:36","trueBody":{"id":8981,"nodeType":"Block","src":"17685:637:36","statements":[{"expression":{"id":8901,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":8896,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8850,"src":"17703:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8899,"indexExpression":{"id":8898,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"17710:14:36","subExpression":{"id":8897,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8860,"src":"17710:12:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"17703:22:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"5c","id":8900,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17728:4:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""},"value":"\\"},"src":"17703:29:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":8902,"nodeType":"ExpressionStatement","src":"17703:29:36"},{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":8905,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8903,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8874,"src":"17754:4:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783038","id":8904,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17762:4:36","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"0x08"},"src":"17754:12:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":8915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8913,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8874,"src":"17823:4:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783039","id":8914,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17831:4:36","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"0x09"},"src":"17823:12:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":8925,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8923,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8874,"src":"17892:4:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783061","id":8924,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17900:4:36","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"0x0a"},"src":"17892:12:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":8935,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8933,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8874,"src":"17961:4:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783063","id":8934,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17969:4:36","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"0x0c"},"src":"17961:12:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":8945,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8943,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8874,"src":"18030:4:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783064","id":8944,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18038:4:36","typeDescriptions":{"typeIdentifier":"t_rational_13_by_1","typeString":"int_const 13"},"value":"0x0d"},"src":"18030:12:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":8955,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8953,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8874,"src":"18099:4:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783563","id":8954,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18107:4:36","typeDescriptions":{"typeIdentifier":"t_rational_92_by_1","typeString":"int_const 92"},"value":"0x5c"},"src":"18099:12:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":8965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8963,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8874,"src":"18169:4:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783232","id":8964,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18177:4:36","typeDescriptions":{"typeIdentifier":"t_rational_34_by_1","typeString":"int_const 34"},"value":"0x22"},"src":"18169:12:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8974,"nodeType":"IfStatement","src":"18165:143:36","trueBody":{"id":8973,"nodeType":"Block","src":"18183:125:36","statements":[{"expression":{"id":8971,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":8966,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8850,"src":"18261:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8969,"indexExpression":{"id":8968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18268:14:36","subExpression":{"id":8967,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8860,"src":"18268:12:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18261:22:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"22","id":8970,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18286:3:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_6e9f33448a4153023cdaf3eb759f1afdc24aba433a3e18b683f8c04a6eaa69f0","typeString":"literal_string \"\"\""},"value":"\""},"src":"18261:28:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":8972,"nodeType":"ExpressionStatement","src":"18261:28:36"}]}},"id":8975,"nodeType":"IfStatement","src":"18095:213:36","trueBody":{"expression":{"id":8961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":8956,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8850,"src":"18113:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8959,"indexExpression":{"id":8958,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18120:14:36","subExpression":{"id":8957,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8860,"src":"18120:12:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18113:22:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"5c","id":8960,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18138:4:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""},"value":"\\"},"src":"18113:29:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":8962,"nodeType":"ExpressionStatement","src":"18113:29:36"}},"id":8976,"nodeType":"IfStatement","src":"18026:282:36","trueBody":{"expression":{"id":8951,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":8946,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8850,"src":"18044:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8949,"indexExpression":{"id":8948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18051:14:36","subExpression":{"id":8947,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8860,"src":"18051:12:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18044:22:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"72","id":8950,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18069:3:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_414f72a4d550cad29f17d9d99a4af64b3776ec5538cd440cef0f03fef2e9e010","typeString":"literal_string \"r\""},"value":"r"},"src":"18044:28:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":8952,"nodeType":"ExpressionStatement","src":"18044:28:36"}},"id":8977,"nodeType":"IfStatement","src":"17957:351:36","trueBody":{"expression":{"id":8941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":8936,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8850,"src":"17975:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8939,"indexExpression":{"id":8938,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"17982:14:36","subExpression":{"id":8937,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8860,"src":"17982:12:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"17975:22:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66","id":8940,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18000:3:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_d1e8aeb79500496ef3dc2e57ba746a8315d048b7a664a2bf948db4fa91960483","typeString":"literal_string \"f\""},"value":"f"},"src":"17975:28:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":8942,"nodeType":"ExpressionStatement","src":"17975:28:36"}},"id":8978,"nodeType":"IfStatement","src":"17888:420:36","trueBody":{"expression":{"id":8931,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":8926,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8850,"src":"17906:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8929,"indexExpression":{"id":8928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"17913:14:36","subExpression":{"id":8927,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8860,"src":"17913:12:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"17906:22:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"6e","id":8930,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17931:3:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_4b4ecedb4964a40fe416b16c7bd8b46092040ec42ef0aa69e59f09872f105cf3","typeString":"literal_string \"n\""},"value":"n"},"src":"17906:28:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":8932,"nodeType":"ExpressionStatement","src":"17906:28:36"}},"id":8979,"nodeType":"IfStatement","src":"17819:489:36","trueBody":{"expression":{"id":8921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":8916,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8850,"src":"17837:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8919,"indexExpression":{"id":8918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"17844:14:36","subExpression":{"id":8917,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8860,"src":"17844:12:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"17837:22:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74","id":8920,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17862:3:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_cac1bb71f0a97c8ac94ca9546b43178a9ad254c7b757ac07433aa6df35cd8089","typeString":"literal_string \"t\""},"value":"t"},"src":"17837:28:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":8922,"nodeType":"ExpressionStatement","src":"17837:28:36"}},"id":8980,"nodeType":"IfStatement","src":"17750:558:36","trueBody":{"expression":{"id":8911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":8906,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8850,"src":"17768:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8909,"indexExpression":{"id":8908,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"17775:14:36","subExpression":{"id":8907,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8860,"src":"17775:12:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"17768:22:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"62","id":8910,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17793:3:36","typeDescriptions":{"typeIdentifier":"t_stringliteral_b5553de315e0edf504d9150af82dafa5c4667fa618ed0a6f19c69b41166c5510","typeString":"literal_string \"b\""},"value":"b"},"src":"17768:28:36","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":8912,"nodeType":"ExpressionStatement","src":"17768:28:36"}}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8866,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8864,"src":"17522:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":8867,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8843,"src":"17526:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8868,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17533:6:36","memberName":"length","nodeType":"MemberAccess","src":"17526:13:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17522:17:36","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8992,"initializationExpression":{"assignments":[8864],"declarations":[{"constant":false,"id":8864,"mutability":"mutable","name":"i","nameLocation":"17519:1:36","nodeType":"VariableDeclaration","scope":8992,"src":"17511:9:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8863,"name":"uint256","nodeType":"ElementaryTypeName","src":"17511:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8865,"nodeType":"VariableDeclarationStatement","src":"17511:9:36"},"loopExpression":{"expression":{"id":8871,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"17541:3:36","subExpression":{"id":8870,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8864,"src":"17543:1:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8872,"nodeType":"ExpressionStatement","src":"17541:3:36"},"nodeType":"ForStatement","src":"17506:894:36"},{"AST":{"nodeType":"YulBlock","src":"18498:129:36","statements":[{"expression":{"arguments":[{"name":"output","nodeType":"YulIdentifier","src":"18519:6:36"},{"name":"outputLength","nodeType":"YulIdentifier","src":"18527:12:36"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18512:6:36"},"nodeType":"YulFunctionCall","src":"18512:28:36"},"nodeType":"YulExpressionStatement","src":"18512:28:36"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18560:4:36","type":"","value":"0x40"},{"arguments":[{"name":"output","nodeType":"YulIdentifier","src":"18570:6:36"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18582:1:36","type":"","value":"5"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18589:1:36","type":"","value":"5"},{"arguments":[{"name":"outputLength","nodeType":"YulIdentifier","src":"18596:12:36"},{"kind":"number","nodeType":"YulLiteral","src":"18610:2:36","type":"","value":"63"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18592:3:36"},"nodeType":"YulFunctionCall","src":"18592:21:36"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"18585:3:36"},"nodeType":"YulFunctionCall","src":"18585:29:36"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"18578:3:36"},"nodeType":"YulFunctionCall","src":"18578:37:36"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18566:3:36"},"nodeType":"YulFunctionCall","src":"18566:50:36"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18553:6:36"},"nodeType":"YulFunctionCall","src":"18553:64:36"},"nodeType":"YulExpressionStatement","src":"18553:64:36"}]},"evmVersion":"paris","externalReferences":[{"declaration":8850,"isOffset":false,"isSlot":false,"src":"18519:6:36","valueSize":1},{"declaration":8850,"isOffset":false,"isSlot":false,"src":"18570:6:36","valueSize":1},{"declaration":8860,"isOffset":false,"isSlot":false,"src":"18527:12:36","valueSize":1},{"declaration":8860,"isOffset":false,"isSlot":false,"src":"18596:12:36","valueSize":1}],"flags":["memory-safe"],"id":8993,"nodeType":"InlineAssembly","src":"18473:154:36"},{"expression":{"arguments":[{"id":8996,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8850,"src":"18651:6:36","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":8995,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18644:6:36","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":8994,"name":"string","nodeType":"ElementaryTypeName","src":"18644:6:36","typeDescriptions":{}}},"id":8997,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18644:14:36","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":8841,"id":8998,"nodeType":"Return","src":"18637:21:36"}]},"documentation":{"id":8835,"nodeType":"StructuredDocumentation","src":"16674:576:36","text":" @dev Escape special characters in JSON strings. This can be useful to prevent JSON injection in NFT metadata.\n WARNING: This function should only be used in double quoted JSON strings. Single quotes are not escaped.\n NOTE: This function escapes all unicode characters, and not just the ones in ranges defined in section 2.5 of\n RFC-4627 (U+0000 to U+001F, U+0022 and U+005C). ECMAScript's `JSON.parse` does recover escaped unicode\n characters that are not in this range, but other tooling may provide different results."},"id":9000,"implemented":true,"kind":"function","modifiers":[],"name":"escapeJSON","nameLocation":"17264:10:36","nodeType":"FunctionDefinition","parameters":{"id":8838,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8837,"mutability":"mutable","name":"input","nameLocation":"17289:5:36","nodeType":"VariableDeclaration","scope":9000,"src":"17275:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8836,"name":"string","nodeType":"ElementaryTypeName","src":"17275:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"17274:21:36"},"returnParameters":{"id":8841,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8840,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9000,"src":"17319:13:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8839,"name":"string","nodeType":"ElementaryTypeName","src":"17319:6:36","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"17318:15:36"},"scope":9013,"src":"17255:1410:36","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9011,"nodeType":"Block","src":"19050:225:36","statements":[{"AST":{"nodeType":"YulBlock","src":"19199:70:36","statements":[{"nodeType":"YulAssignment","src":"19213:46:36","value":{"arguments":[{"arguments":[{"name":"buffer","nodeType":"YulIdentifier","src":"19232:6:36"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19244:4:36","type":"","value":"0x20"},{"name":"offset","nodeType":"YulIdentifier","src":"19250:6:36"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19240:3:36"},"nodeType":"YulFunctionCall","src":"19240:17:36"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19228:3:36"},"nodeType":"YulFunctionCall","src":"19228:30:36"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"19222:5:36"},"nodeType":"YulFunctionCall","src":"19222:37:36"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"19213:5:36"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9003,"isOffset":false,"isSlot":false,"src":"19232:6:36","valueSize":1},{"declaration":9005,"isOffset":false,"isSlot":false,"src":"19250:6:36","valueSize":1},{"declaration":9008,"isOffset":false,"isSlot":false,"src":"19213:5:36","valueSize":1}],"flags":["memory-safe"],"id":9010,"nodeType":"InlineAssembly","src":"19174:95:36"}]},"documentation":{"id":9001,"nodeType":"StructuredDocumentation","src":"18671:268:36","text":" @dev Reads a bytes32 from a bytes array without bounds checking.\n NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the\n assembly block as such would prevent some optimizations."},"id":9012,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeReadBytesOffset","nameLocation":"18953:22:36","nodeType":"FunctionDefinition","parameters":{"id":9006,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9003,"mutability":"mutable","name":"buffer","nameLocation":"18989:6:36","nodeType":"VariableDeclaration","scope":9012,"src":"18976:19:36","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9002,"name":"bytes","nodeType":"ElementaryTypeName","src":"18976:5:36","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":9005,"mutability":"mutable","name":"offset","nameLocation":"19005:6:36","nodeType":"VariableDeclaration","scope":9012,"src":"18997:14:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9004,"name":"uint256","nodeType":"ElementaryTypeName","src":"18997:7:36","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18975:37:36"},"returnParameters":{"id":9009,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9008,"mutability":"mutable","name":"value","nameLocation":"19043:5:36","nodeType":"VariableDeclaration","scope":9012,"src":"19035:13:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9007,"name":"bytes32","nodeType":"ElementaryTypeName","src":"19035:7:36","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"19034:15:36"},"scope":9013,"src":"18944:331:36","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":9014,"src":"297:18980:36","usedErrors":[7671,7674,7677],"usedEvents":[]}],"src":"101:19177:36"},"id":36},"@openzeppelin/contracts/utils/cryptography/ECDSA.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","exportedSymbols":{"ECDSA":[9361]},"id":9362,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9015,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"112:24:37"},{"abstract":false,"baseContracts":[],"canonicalName":"ECDSA","contractDependencies":[],"contractKind":"library","documentation":{"id":9016,"nodeType":"StructuredDocumentation","src":"138:205:37","text":" @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\n These functions can be used to verify that a message was signed by the holder\n of the private keys of a given address."},"fullyImplemented":true,"id":9361,"linearizedBaseContracts":[9361],"name":"ECDSA","nameLocation":"352:5:37","nodeType":"ContractDefinition","nodes":[{"canonicalName":"ECDSA.RecoverError","id":9021,"members":[{"id":9017,"name":"NoError","nameLocation":"392:7:37","nodeType":"EnumValue","src":"392:7:37"},{"id":9018,"name":"InvalidSignature","nameLocation":"409:16:37","nodeType":"EnumValue","src":"409:16:37"},{"id":9019,"name":"InvalidSignatureLength","nameLocation":"435:22:37","nodeType":"EnumValue","src":"435:22:37"},{"id":9020,"name":"InvalidSignatureS","nameLocation":"467:17:37","nodeType":"EnumValue","src":"467:17:37"}],"name":"RecoverError","nameLocation":"369:12:37","nodeType":"EnumDefinition","src":"364:126:37"},{"documentation":{"id":9022,"nodeType":"StructuredDocumentation","src":"496:63:37","text":" @dev The signature derives the `address(0)`."},"errorSelector":"f645eedf","id":9024,"name":"ECDSAInvalidSignature","nameLocation":"570:21:37","nodeType":"ErrorDefinition","parameters":{"id":9023,"nodeType":"ParameterList","parameters":[],"src":"591:2:37"},"src":"564:30:37"},{"documentation":{"id":9025,"nodeType":"StructuredDocumentation","src":"600:60:37","text":" @dev The signature has an invalid length."},"errorSelector":"fce698f7","id":9029,"name":"ECDSAInvalidSignatureLength","nameLocation":"671:27:37","nodeType":"ErrorDefinition","parameters":{"id":9028,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9027,"mutability":"mutable","name":"length","nameLocation":"707:6:37","nodeType":"VariableDeclaration","scope":9029,"src":"699:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9026,"name":"uint256","nodeType":"ElementaryTypeName","src":"699:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"698:16:37"},"src":"665:50:37"},{"documentation":{"id":9030,"nodeType":"StructuredDocumentation","src":"721:85:37","text":" @dev The signature has an S value that is in the upper half order."},"errorSelector":"d78bce0c","id":9034,"name":"ECDSAInvalidSignatureS","nameLocation":"817:22:37","nodeType":"ErrorDefinition","parameters":{"id":9033,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9032,"mutability":"mutable","name":"s","nameLocation":"848:1:37","nodeType":"VariableDeclaration","scope":9034,"src":"840:9:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9031,"name":"bytes32","nodeType":"ElementaryTypeName","src":"840:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"839:11:37"},"src":"811:40:37"},{"body":{"id":9086,"nodeType":"Block","src":"2285:622:37","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9052,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9049,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9039,"src":"2299:9:37","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9050,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2309:6:37","memberName":"length","nodeType":"MemberAccess","src":"2299:16:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3635","id":9051,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2319:2:37","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"65"},"src":"2299:22:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":9084,"nodeType":"Block","src":"2793:108:37","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":9073,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2823:1:37","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":9072,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2815:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9071,"name":"address","nodeType":"ElementaryTypeName","src":"2815:7:37","typeDescriptions":{}}},"id":9074,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2815:10:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9075,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9021,"src":"2827:12:37","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$9021_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":9076,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2840:22:37","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":9019,"src":"2827:35:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"expression":{"id":9079,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9039,"src":"2872:9:37","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2882:6:37","memberName":"length","nodeType":"MemberAccess","src":"2872:16:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9078,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2864:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9077,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2864:7:37","typeDescriptions":{}}},"id":9081,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2864:25:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":9082,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2814:76:37","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$9021_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":9048,"id":9083,"nodeType":"Return","src":"2807:83:37"}]},"id":9085,"nodeType":"IfStatement","src":"2295:606:37","trueBody":{"id":9070,"nodeType":"Block","src":"2323:464:37","statements":[{"assignments":[9054],"declarations":[{"constant":false,"id":9054,"mutability":"mutable","name":"r","nameLocation":"2345:1:37","nodeType":"VariableDeclaration","scope":9070,"src":"2337:9:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9053,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2337:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":9055,"nodeType":"VariableDeclarationStatement","src":"2337:9:37"},{"assignments":[9057],"declarations":[{"constant":false,"id":9057,"mutability":"mutable","name":"s","nameLocation":"2368:1:37","nodeType":"VariableDeclaration","scope":9070,"src":"2360:9:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9056,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2360:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":9058,"nodeType":"VariableDeclarationStatement","src":"2360:9:37"},{"assignments":[9060],"declarations":[{"constant":false,"id":9060,"mutability":"mutable","name":"v","nameLocation":"2389:1:37","nodeType":"VariableDeclaration","scope":9070,"src":"2383:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":9059,"name":"uint8","nodeType":"ElementaryTypeName","src":"2383:5:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":9061,"nodeType":"VariableDeclarationStatement","src":"2383:7:37"},{"AST":{"nodeType":"YulBlock","src":"2560:171:37","statements":[{"nodeType":"YulAssignment","src":"2578:32:37","value":{"arguments":[{"arguments":[{"name":"signature","nodeType":"YulIdentifier","src":"2593:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"2604:4:37","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2589:3:37"},"nodeType":"YulFunctionCall","src":"2589:20:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2583:5:37"},"nodeType":"YulFunctionCall","src":"2583:27:37"},"variableNames":[{"name":"r","nodeType":"YulIdentifier","src":"2578:1:37"}]},{"nodeType":"YulAssignment","src":"2627:32:37","value":{"arguments":[{"arguments":[{"name":"signature","nodeType":"YulIdentifier","src":"2642:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"2653:4:37","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2638:3:37"},"nodeType":"YulFunctionCall","src":"2638:20:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2632:5:37"},"nodeType":"YulFunctionCall","src":"2632:27:37"},"variableNames":[{"name":"s","nodeType":"YulIdentifier","src":"2627:1:37"}]},{"nodeType":"YulAssignment","src":"2676:41:37","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2686:1:37","type":"","value":"0"},{"arguments":[{"arguments":[{"name":"signature","nodeType":"YulIdentifier","src":"2699:9:37"},{"kind":"number","nodeType":"YulLiteral","src":"2710:4:37","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2695:3:37"},"nodeType":"YulFunctionCall","src":"2695:20:37"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2689:5:37"},"nodeType":"YulFunctionCall","src":"2689:27:37"}],"functionName":{"name":"byte","nodeType":"YulIdentifier","src":"2681:4:37"},"nodeType":"YulFunctionCall","src":"2681:36:37"},"variableNames":[{"name":"v","nodeType":"YulIdentifier","src":"2676:1:37"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9054,"isOffset":false,"isSlot":false,"src":"2578:1:37","valueSize":1},{"declaration":9057,"isOffset":false,"isSlot":false,"src":"2627:1:37","valueSize":1},{"declaration":9039,"isOffset":false,"isSlot":false,"src":"2593:9:37","valueSize":1},{"declaration":9039,"isOffset":false,"isSlot":false,"src":"2642:9:37","valueSize":1},{"declaration":9039,"isOffset":false,"isSlot":false,"src":"2699:9:37","valueSize":1},{"declaration":9060,"isOffset":false,"isSlot":false,"src":"2676:1:37","valueSize":1}],"flags":["memory-safe"],"id":9062,"nodeType":"InlineAssembly","src":"2535:196:37"},{"expression":{"arguments":[{"id":9064,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9037,"src":"2762:4:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9065,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9060,"src":"2768:1:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":9066,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9054,"src":"2771:1:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9067,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9057,"src":"2774:1:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":9063,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[9087,9167,9275],"referencedDeclaration":9275,"src":"2751:10:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$9021_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":9068,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2751:25:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$9021_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":9048,"id":9069,"nodeType":"Return","src":"2744:32:37"}]}}]},"documentation":{"id":9035,"nodeType":"StructuredDocumentation","src":"857:1267:37","text":" @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not\n return address(0) without also returning an error description. Errors are documented using an enum (error type)\n and a bytes32 providing additional information about the error.\n If no error is returned, then the address can be used for verification purposes.\n The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n this function rejects them by requiring the `s` value to be in the lower\n half order, and the `v` value to be either 27 or 28.\n IMPORTANT: `hash` _must_ be the result of a hash operation for the\n verification to be secure: it is possible to craft signatures that\n recover to arbitrary addresses for non-hashed data. A safe way to ensure\n this is by receiving a hash of the original message (which may otherwise\n be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.\n Documentation for signature generation:\n - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]"},"id":9087,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"2138:10:37","nodeType":"FunctionDefinition","parameters":{"id":9040,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9037,"mutability":"mutable","name":"hash","nameLocation":"2166:4:37","nodeType":"VariableDeclaration","scope":9087,"src":"2158:12:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9036,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2158:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9039,"mutability":"mutable","name":"signature","nameLocation":"2193:9:37","nodeType":"VariableDeclaration","scope":9087,"src":"2180:22:37","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9038,"name":"bytes","nodeType":"ElementaryTypeName","src":"2180:5:37","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2148:60:37"},"returnParameters":{"id":9048,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9042,"mutability":"mutable","name":"recovered","nameLocation":"2240:9:37","nodeType":"VariableDeclaration","scope":9087,"src":"2232:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9041,"name":"address","nodeType":"ElementaryTypeName","src":"2232:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9045,"mutability":"mutable","name":"err","nameLocation":"2264:3:37","nodeType":"VariableDeclaration","scope":9087,"src":"2251:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":9044,"nodeType":"UserDefinedTypeName","pathNode":{"id":9043,"name":"RecoverError","nameLocations":["2251:12:37"],"nodeType":"IdentifierPath","referencedDeclaration":9021,"src":"2251:12:37"},"referencedDeclaration":9021,"src":"2251:12:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":9047,"mutability":"mutable","name":"errArg","nameLocation":"2277:6:37","nodeType":"VariableDeclaration","scope":9087,"src":"2269:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9046,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2269:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2231:53:37"},"scope":9361,"src":"2129:778:37","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9116,"nodeType":"Block","src":"3801:168:37","statements":[{"assignments":[9098,9101,9103],"declarations":[{"constant":false,"id":9098,"mutability":"mutable","name":"recovered","nameLocation":"3820:9:37","nodeType":"VariableDeclaration","scope":9116,"src":"3812:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9097,"name":"address","nodeType":"ElementaryTypeName","src":"3812:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9101,"mutability":"mutable","name":"error","nameLocation":"3844:5:37","nodeType":"VariableDeclaration","scope":9116,"src":"3831:18:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":9100,"nodeType":"UserDefinedTypeName","pathNode":{"id":9099,"name":"RecoverError","nameLocations":["3831:12:37"],"nodeType":"IdentifierPath","referencedDeclaration":9021,"src":"3831:12:37"},"referencedDeclaration":9021,"src":"3831:12:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":9103,"mutability":"mutable","name":"errorArg","nameLocation":"3859:8:37","nodeType":"VariableDeclaration","scope":9116,"src":"3851:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9102,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3851:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":9108,"initialValue":{"arguments":[{"id":9105,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9090,"src":"3882:4:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9106,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9092,"src":"3888:9:37","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9104,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[9087,9167,9275],"referencedDeclaration":9087,"src":"3871:10:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$_t_enum$_RecoverError_$9021_$_t_bytes32_$","typeString":"function (bytes32,bytes memory) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":9107,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3871:27:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$9021_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"3811:87:37"},{"expression":{"arguments":[{"id":9110,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9101,"src":"3920:5:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},{"id":9111,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9103,"src":"3927:8:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":9109,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9360,"src":"3908:11:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$9021_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":9112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3908:28:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9113,"nodeType":"ExpressionStatement","src":"3908:28:37"},{"expression":{"id":9114,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9098,"src":"3953:9:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":9096,"id":9115,"nodeType":"Return","src":"3946:16:37"}]},"documentation":{"id":9088,"nodeType":"StructuredDocumentation","src":"2913:796:37","text":" @dev Returns the address that signed a hashed message (`hash`) with\n `signature`. This address can then be used for verification purposes.\n The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n this function rejects them by requiring the `s` value to be in the lower\n half order, and the `v` value to be either 27 or 28.\n IMPORTANT: `hash` _must_ be the result of a hash operation for the\n verification to be secure: it is possible to craft signatures that\n recover to arbitrary addresses for non-hashed data. A safe way to ensure\n this is by receiving a hash of the original message (which may otherwise\n be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it."},"id":9117,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"3723:7:37","nodeType":"FunctionDefinition","parameters":{"id":9093,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9090,"mutability":"mutable","name":"hash","nameLocation":"3739:4:37","nodeType":"VariableDeclaration","scope":9117,"src":"3731:12:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9089,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3731:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9092,"mutability":"mutable","name":"signature","nameLocation":"3758:9:37","nodeType":"VariableDeclaration","scope":9117,"src":"3745:22:37","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9091,"name":"bytes","nodeType":"ElementaryTypeName","src":"3745:5:37","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3730:38:37"},"returnParameters":{"id":9096,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9095,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9117,"src":"3792:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9094,"name":"address","nodeType":"ElementaryTypeName","src":"3792:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3791:9:37"},"scope":9361,"src":"3714:255:37","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9166,"nodeType":"Block","src":"4348:342:37","statements":[{"id":9165,"nodeType":"UncheckedBlock","src":"4358:326:37","statements":[{"assignments":[9135],"declarations":[{"constant":false,"id":9135,"mutability":"mutable","name":"s","nameLocation":"4390:1:37","nodeType":"VariableDeclaration","scope":9165,"src":"4382:9:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9134,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4382:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":9142,"initialValue":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":9141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9136,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9124,"src":"4394:2:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"arguments":[{"hexValue":"307837666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666","id":9139,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4407:66:37","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819967_by_1","typeString":"int_const 5789...(69 digits omitted)...9967"},"value":"0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819967_by_1","typeString":"int_const 5789...(69 digits omitted)...9967"}],"id":9138,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4399:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9137,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4399:7:37","typeDescriptions":{}}},"id":9140,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4399:75:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4394:80:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"4382:92:37"},{"assignments":[9144],"declarations":[{"constant":false,"id":9144,"mutability":"mutable","name":"v","nameLocation":"4591:1:37","nodeType":"VariableDeclaration","scope":9165,"src":"4585:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":9143,"name":"uint8","nodeType":"ElementaryTypeName","src":"4585:5:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":9157,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":9149,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9124,"src":"4610:2:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":9148,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4602:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":9147,"name":"uint256","nodeType":"ElementaryTypeName","src":"4602:7:37","typeDescriptions":{}}},"id":9150,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4602:11:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":9151,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4617:3:37","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"4602:18:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9153,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4601:20:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3237","id":9154,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4624:2:37","typeDescriptions":{"typeIdentifier":"t_rational_27_by_1","typeString":"int_const 27"},"value":"27"},"src":"4601:25:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9146,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4595:5:37","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":9145,"name":"uint8","nodeType":"ElementaryTypeName","src":"4595:5:37","typeDescriptions":{}}},"id":9156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4595:32:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"4585:42:37"},{"expression":{"arguments":[{"id":9159,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9120,"src":"4659:4:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9160,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9144,"src":"4665:1:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":9161,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9122,"src":"4668:1:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9162,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9135,"src":"4671:1:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":9158,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[9087,9167,9275],"referencedDeclaration":9275,"src":"4648:10:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$9021_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":9163,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4648:25:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$9021_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":9133,"id":9164,"nodeType":"Return","src":"4641:32:37"}]}]},"documentation":{"id":9118,"nodeType":"StructuredDocumentation","src":"3975:205:37","text":" @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n See https://eips.ethereum.org/EIPS/eip-2098[ERC-2098 short signatures]"},"id":9167,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"4194:10:37","nodeType":"FunctionDefinition","parameters":{"id":9125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9120,"mutability":"mutable","name":"hash","nameLocation":"4222:4:37","nodeType":"VariableDeclaration","scope":9167,"src":"4214:12:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9119,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4214:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9122,"mutability":"mutable","name":"r","nameLocation":"4244:1:37","nodeType":"VariableDeclaration","scope":9167,"src":"4236:9:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9121,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4236:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9124,"mutability":"mutable","name":"vs","nameLocation":"4263:2:37","nodeType":"VariableDeclaration","scope":9167,"src":"4255:10:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9123,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4255:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4204:67:37"},"returnParameters":{"id":9133,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9127,"mutability":"mutable","name":"recovered","nameLocation":"4303:9:37","nodeType":"VariableDeclaration","scope":9167,"src":"4295:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9126,"name":"address","nodeType":"ElementaryTypeName","src":"4295:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9130,"mutability":"mutable","name":"err","nameLocation":"4327:3:37","nodeType":"VariableDeclaration","scope":9167,"src":"4314:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":9129,"nodeType":"UserDefinedTypeName","pathNode":{"id":9128,"name":"RecoverError","nameLocations":["4314:12:37"],"nodeType":"IdentifierPath","referencedDeclaration":9021,"src":"4314:12:37"},"referencedDeclaration":9021,"src":"4314:12:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":9132,"mutability":"mutable","name":"errArg","nameLocation":"4340:6:37","nodeType":"VariableDeclaration","scope":9167,"src":"4332:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9131,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4332:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4294:53:37"},"scope":9361,"src":"4185:505:37","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9199,"nodeType":"Block","src":"4903:164:37","statements":[{"assignments":[9180,9183,9185],"declarations":[{"constant":false,"id":9180,"mutability":"mutable","name":"recovered","nameLocation":"4922:9:37","nodeType":"VariableDeclaration","scope":9199,"src":"4914:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9179,"name":"address","nodeType":"ElementaryTypeName","src":"4914:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9183,"mutability":"mutable","name":"error","nameLocation":"4946:5:37","nodeType":"VariableDeclaration","scope":9199,"src":"4933:18:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":9182,"nodeType":"UserDefinedTypeName","pathNode":{"id":9181,"name":"RecoverError","nameLocations":["4933:12:37"],"nodeType":"IdentifierPath","referencedDeclaration":9021,"src":"4933:12:37"},"referencedDeclaration":9021,"src":"4933:12:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":9185,"mutability":"mutable","name":"errorArg","nameLocation":"4961:8:37","nodeType":"VariableDeclaration","scope":9199,"src":"4953:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9184,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4953:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":9191,"initialValue":{"arguments":[{"id":9187,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9170,"src":"4984:4:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9188,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9172,"src":"4990:1:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9189,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9174,"src":"4993:2:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":9186,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[9087,9167,9275],"referencedDeclaration":9167,"src":"4973:10:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$9021_$_t_bytes32_$","typeString":"function (bytes32,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":9190,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4973:23:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$9021_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"4913:83:37"},{"expression":{"arguments":[{"id":9193,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9183,"src":"5018:5:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},{"id":9194,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9185,"src":"5025:8:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":9192,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9360,"src":"5006:11:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$9021_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":9195,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5006:28:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9196,"nodeType":"ExpressionStatement","src":"5006:28:37"},{"expression":{"id":9197,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9180,"src":"5051:9:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":9178,"id":9198,"nodeType":"Return","src":"5044:16:37"}]},"documentation":{"id":9168,"nodeType":"StructuredDocumentation","src":"4696:116:37","text":" @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately."},"id":9200,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"4826:7:37","nodeType":"FunctionDefinition","parameters":{"id":9175,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9170,"mutability":"mutable","name":"hash","nameLocation":"4842:4:37","nodeType":"VariableDeclaration","scope":9200,"src":"4834:12:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9169,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4834:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9172,"mutability":"mutable","name":"r","nameLocation":"4856:1:37","nodeType":"VariableDeclaration","scope":9200,"src":"4848:9:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9171,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4848:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9174,"mutability":"mutable","name":"vs","nameLocation":"4867:2:37","nodeType":"VariableDeclaration","scope":9200,"src":"4859:10:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9173,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4859:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4833:37:37"},"returnParameters":{"id":9178,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9177,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9200,"src":"4894:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9176,"name":"address","nodeType":"ElementaryTypeName","src":"4894:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4893:9:37"},"scope":9361,"src":"4817:250:37","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9274,"nodeType":"Block","src":"5382:1372:37","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9224,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":9221,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9209,"src":"6278:1:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":9220,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6270:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":9219,"name":"uint256","nodeType":"ElementaryTypeName","src":"6270:7:37","typeDescriptions":{}}},"id":9222,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6270:10:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307837464646464646464646464646464646464646464646464646464646464646463544353736453733353741343530314444464539324634363638314232304130","id":9223,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6283:66:37","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926418782139537452191302581570759080747168_by_1","typeString":"int_const 5789...(69 digits omitted)...7168"},"value":"0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0"},"src":"6270:79:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9235,"nodeType":"IfStatement","src":"6266:164:37","trueBody":{"id":9234,"nodeType":"Block","src":"6351:79:37","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":9227,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6381:1:37","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":9226,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6373:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9225,"name":"address","nodeType":"ElementaryTypeName","src":"6373:7:37","typeDescriptions":{}}},"id":9228,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6373:10:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9229,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9021,"src":"6385:12:37","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$9021_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":9230,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6398:17:37","memberName":"InvalidSignatureS","nodeType":"MemberAccess","referencedDeclaration":9020,"src":"6385:30:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},{"id":9231,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9209,"src":"6417:1:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":9232,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6372:47:37","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$9021_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":9218,"id":9233,"nodeType":"Return","src":"6365:54:37"}]}},{"assignments":[9237],"declarations":[{"constant":false,"id":9237,"mutability":"mutable","name":"signer","nameLocation":"6532:6:37","nodeType":"VariableDeclaration","scope":9274,"src":"6524:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9236,"name":"address","nodeType":"ElementaryTypeName","src":"6524:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":9244,"initialValue":{"arguments":[{"id":9239,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9203,"src":"6551:4:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9240,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9205,"src":"6557:1:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":9241,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9207,"src":"6560:1:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9242,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9209,"src":"6563:1:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":9238,"name":"ecrecover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967290,"src":"6541:9:37","typeDescriptions":{"typeIdentifier":"t_function_ecrecover_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address)"}},"id":9243,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6541:24:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6524:41:37"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":9250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9245,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9237,"src":"6579:6:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":9248,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6597:1:37","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":9247,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6589:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9246,"name":"address","nodeType":"ElementaryTypeName","src":"6589:7:37","typeDescriptions":{}}},"id":9249,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6589:10:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6579:20:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9264,"nodeType":"IfStatement","src":"6575:113:37","trueBody":{"id":9263,"nodeType":"Block","src":"6601:87:37","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":9253,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6631:1:37","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":9252,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6623:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9251,"name":"address","nodeType":"ElementaryTypeName","src":"6623:7:37","typeDescriptions":{}}},"id":9254,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6623:10:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9255,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9021,"src":"6635:12:37","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$9021_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":9256,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6648:16:37","memberName":"InvalidSignature","nodeType":"MemberAccess","referencedDeclaration":9018,"src":"6635:29:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"hexValue":"30","id":9259,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6674:1:37","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":9258,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6666:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9257,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6666:7:37","typeDescriptions":{}}},"id":9260,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6666:10:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":9261,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6622:55:37","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$9021_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":9218,"id":9262,"nodeType":"Return","src":"6615:62:37"}]}},{"expression":{"components":[{"id":9265,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9237,"src":"6706:6:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9266,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9021,"src":"6714:12:37","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$9021_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":9267,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6727:7:37","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":9017,"src":"6714:20:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"hexValue":"30","id":9270,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6744:1:37","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":9269,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6736:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9268,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6736:7:37","typeDescriptions":{}}},"id":9271,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6736:10:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":9272,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6705:42:37","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$9021_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":9218,"id":9273,"nodeType":"Return","src":"6698:49:37"}]},"documentation":{"id":9201,"nodeType":"StructuredDocumentation","src":"5073:125:37","text":" @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n `r` and `s` signature fields separately."},"id":9275,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"5212:10:37","nodeType":"FunctionDefinition","parameters":{"id":9210,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9203,"mutability":"mutable","name":"hash","nameLocation":"5240:4:37","nodeType":"VariableDeclaration","scope":9275,"src":"5232:12:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9202,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5232:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9205,"mutability":"mutable","name":"v","nameLocation":"5260:1:37","nodeType":"VariableDeclaration","scope":9275,"src":"5254:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":9204,"name":"uint8","nodeType":"ElementaryTypeName","src":"5254:5:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":9207,"mutability":"mutable","name":"r","nameLocation":"5279:1:37","nodeType":"VariableDeclaration","scope":9275,"src":"5271:9:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9206,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5271:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9209,"mutability":"mutable","name":"s","nameLocation":"5298:1:37","nodeType":"VariableDeclaration","scope":9275,"src":"5290:9:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9208,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5290:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5222:83:37"},"returnParameters":{"id":9218,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9212,"mutability":"mutable","name":"recovered","nameLocation":"5337:9:37","nodeType":"VariableDeclaration","scope":9275,"src":"5329:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9211,"name":"address","nodeType":"ElementaryTypeName","src":"5329:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9215,"mutability":"mutable","name":"err","nameLocation":"5361:3:37","nodeType":"VariableDeclaration","scope":9275,"src":"5348:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":9214,"nodeType":"UserDefinedTypeName","pathNode":{"id":9213,"name":"RecoverError","nameLocations":["5348:12:37"],"nodeType":"IdentifierPath","referencedDeclaration":9021,"src":"5348:12:37"},"referencedDeclaration":9021,"src":"5348:12:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":9217,"mutability":"mutable","name":"errArg","nameLocation":"5374:6:37","nodeType":"VariableDeclaration","scope":9275,"src":"5366:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9216,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5366:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5328:53:37"},"scope":9361,"src":"5203:1551:37","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9310,"nodeType":"Block","src":"6981:166:37","statements":[{"assignments":[9290,9293,9295],"declarations":[{"constant":false,"id":9290,"mutability":"mutable","name":"recovered","nameLocation":"7000:9:37","nodeType":"VariableDeclaration","scope":9310,"src":"6992:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9289,"name":"address","nodeType":"ElementaryTypeName","src":"6992:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9293,"mutability":"mutable","name":"error","nameLocation":"7024:5:37","nodeType":"VariableDeclaration","scope":9310,"src":"7011:18:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":9292,"nodeType":"UserDefinedTypeName","pathNode":{"id":9291,"name":"RecoverError","nameLocations":["7011:12:37"],"nodeType":"IdentifierPath","referencedDeclaration":9021,"src":"7011:12:37"},"referencedDeclaration":9021,"src":"7011:12:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":9295,"mutability":"mutable","name":"errorArg","nameLocation":"7039:8:37","nodeType":"VariableDeclaration","scope":9310,"src":"7031:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9294,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7031:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":9302,"initialValue":{"arguments":[{"id":9297,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9278,"src":"7062:4:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9298,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9280,"src":"7068:1:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":9299,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9282,"src":"7071:1:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9300,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9284,"src":"7074:1:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":9296,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[9087,9167,9275],"referencedDeclaration":9275,"src":"7051:10:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$9021_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":9301,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7051:25:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$9021_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"6991:85:37"},{"expression":{"arguments":[{"id":9304,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9293,"src":"7098:5:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},{"id":9305,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9295,"src":"7105:8:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":9303,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9360,"src":"7086:11:37","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$9021_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":9306,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7086:28:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9307,"nodeType":"ExpressionStatement","src":"7086:28:37"},{"expression":{"id":9308,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9290,"src":"7131:9:37","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":9288,"id":9309,"nodeType":"Return","src":"7124:16:37"}]},"documentation":{"id":9276,"nodeType":"StructuredDocumentation","src":"6760:122:37","text":" @dev Overload of {ECDSA-recover} that receives the `v`,\n `r` and `s` signature fields separately."},"id":9311,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"6896:7:37","nodeType":"FunctionDefinition","parameters":{"id":9285,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9278,"mutability":"mutable","name":"hash","nameLocation":"6912:4:37","nodeType":"VariableDeclaration","scope":9311,"src":"6904:12:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9277,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6904:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9280,"mutability":"mutable","name":"v","nameLocation":"6924:1:37","nodeType":"VariableDeclaration","scope":9311,"src":"6918:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":9279,"name":"uint8","nodeType":"ElementaryTypeName","src":"6918:5:37","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":9282,"mutability":"mutable","name":"r","nameLocation":"6935:1:37","nodeType":"VariableDeclaration","scope":9311,"src":"6927:9:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9281,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6927:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9284,"mutability":"mutable","name":"s","nameLocation":"6946:1:37","nodeType":"VariableDeclaration","scope":9311,"src":"6938:9:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9283,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6938:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6903:45:37"},"returnParameters":{"id":9288,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9287,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9311,"src":"6972:7:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9286,"name":"address","nodeType":"ElementaryTypeName","src":"6972:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6971:9:37"},"scope":9361,"src":"6887:260:37","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9359,"nodeType":"Block","src":"7352:460:37","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"},"id":9323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9320,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9315,"src":"7366:5:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":9321,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9021,"src":"7375:12:37","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$9021_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":9322,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7388:7:37","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":9017,"src":"7375:20:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},"src":"7366:29:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"},"id":9329,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9326,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9315,"src":"7462:5:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":9327,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9021,"src":"7471:12:37","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$9021_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":9328,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7484:16:37","memberName":"InvalidSignature","nodeType":"MemberAccess","referencedDeclaration":9018,"src":"7471:29:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},"src":"7462:38:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"},"id":9337,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9334,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9315,"src":"7567:5:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":9335,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9021,"src":"7576:12:37","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$9021_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":9336,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7589:22:37","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":9019,"src":"7576:35:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},"src":"7567:44:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"},"id":9349,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9346,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9315,"src":"7701:5:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":9347,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9021,"src":"7710:12:37","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$9021_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":9348,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7723:17:37","memberName":"InvalidSignatureS","nodeType":"MemberAccess","referencedDeclaration":9020,"src":"7710:30:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},"src":"7701:39:37","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9355,"nodeType":"IfStatement","src":"7697:109:37","trueBody":{"id":9354,"nodeType":"Block","src":"7742:64:37","statements":[{"errorCall":{"arguments":[{"id":9351,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9317,"src":"7786:8:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":9350,"name":"ECDSAInvalidSignatureS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9034,"src":"7763:22:37","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$__$","typeString":"function (bytes32) pure"}},"id":9352,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7763:32:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9353,"nodeType":"RevertStatement","src":"7756:39:37"}]}},"id":9356,"nodeType":"IfStatement","src":"7563:243:37","trueBody":{"id":9345,"nodeType":"Block","src":"7613:78:37","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":9341,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9317,"src":"7670:8:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":9340,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7662:7:37","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":9339,"name":"uint256","nodeType":"ElementaryTypeName","src":"7662:7:37","typeDescriptions":{}}},"id":9342,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7662:17:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9338,"name":"ECDSAInvalidSignatureLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9029,"src":"7634:27:37","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":9343,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7634:46:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9344,"nodeType":"RevertStatement","src":"7627:53:37"}]}},"id":9357,"nodeType":"IfStatement","src":"7458:348:37","trueBody":{"id":9333,"nodeType":"Block","src":"7502:55:37","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":9330,"name":"ECDSAInvalidSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9024,"src":"7523:21:37","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":9331,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7523:23:37","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9332,"nodeType":"RevertStatement","src":"7516:30:37"}]}},"id":9358,"nodeType":"IfStatement","src":"7362:444:37","trueBody":{"id":9325,"nodeType":"Block","src":"7397:55:37","statements":[{"functionReturnParameters":9319,"id":9324,"nodeType":"Return","src":"7411:7:37"}]}}]},"documentation":{"id":9312,"nodeType":"StructuredDocumentation","src":"7153:122:37","text":" @dev Optionally reverts with the corresponding custom error according to the `error` argument provided."},"id":9360,"implemented":true,"kind":"function","modifiers":[],"name":"_throwError","nameLocation":"7289:11:37","nodeType":"FunctionDefinition","parameters":{"id":9318,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9315,"mutability":"mutable","name":"error","nameLocation":"7314:5:37","nodeType":"VariableDeclaration","scope":9360,"src":"7301:18:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":9314,"nodeType":"UserDefinedTypeName","pathNode":{"id":9313,"name":"RecoverError","nameLocations":["7301:12:37"],"nodeType":"IdentifierPath","referencedDeclaration":9021,"src":"7301:12:37"},"referencedDeclaration":9021,"src":"7301:12:37","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":9317,"mutability":"mutable","name":"errorArg","nameLocation":"7329:8:37","nodeType":"VariableDeclaration","scope":9360,"src":"7321:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9316,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7321:7:37","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7300:38:37"},"returnParameters":{"id":9319,"nodeType":"ParameterList","parameters":[],"src":"7352:0:37"},"scope":9361,"src":"7280:532:37","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":9362,"src":"344:7470:37","usedErrors":[9024,9029,9034],"usedEvents":[]}],"src":"112:7703:37"},"id":37},"@openzeppelin/contracts/utils/cryptography/EIP712.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/EIP712.sol","exportedSymbols":{"EIP712":[9588],"IERC5267":[5566],"MessageHashUtils":[9674],"ShortString":[7276],"ShortStrings":[7487]},"id":9589,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9363,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"113:24:38"},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","file":"./MessageHashUtils.sol","id":9365,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9589,"sourceUnit":9675,"src":"139:56:38","symbolAliases":[{"foreign":{"id":9364,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9674,"src":"147:16:38","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/ShortStrings.sol","file":"../ShortStrings.sol","id":9368,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9589,"sourceUnit":7488,"src":"196:62:38","symbolAliases":[{"foreign":{"id":9366,"name":"ShortStrings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7487,"src":"204:12:38","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":9367,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7276,"src":"218:11:38","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5267.sol","file":"../../interfaces/IERC5267.sol","id":9370,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9589,"sourceUnit":5567,"src":"259:55:38","symbolAliases":[{"foreign":{"id":9369,"name":"IERC5267","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5566,"src":"267:8:38","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":9372,"name":"IERC5267","nameLocations":["1988:8:38"],"nodeType":"IdentifierPath","referencedDeclaration":5566,"src":"1988:8:38"},"id":9373,"nodeType":"InheritanceSpecifier","src":"1988:8:38"}],"canonicalName":"EIP712","contractDependencies":[],"contractKind":"contract","documentation":{"id":9371,"nodeType":"StructuredDocumentation","src":"316:1643:38","text":" @dev https://eips.ethereum.org/EIPS/eip-712[EIP-712] is a standard for hashing and signing of typed structured data.\n The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose\n encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract\n does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to\n produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.\n This contract implements the EIP-712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\n scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\n ({_hashTypedDataV4}).\n The implementation of the domain separator was designed to be as efficient as possible while still properly updating\n the chain id to protect against replay attacks on an eventual fork of the chain.\n NOTE: This contract implements the version of the encoding known as \"v4\", as implemented by the JSON RPC method\n https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\n NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain\n separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the\n separator from the immutable values, which is cheaper than accessing a cached version in cold storage.\n @custom:oz-upgrades-unsafe-allow state-variable-immutable"},"fullyImplemented":true,"id":9588,"linearizedBaseContracts":[9588,5566],"name":"EIP712","nameLocation":"1978:6:38","nodeType":"ContractDefinition","nodes":[{"global":false,"id":9375,"libraryName":{"id":9374,"name":"ShortStrings","nameLocations":["2009:12:38"],"nodeType":"IdentifierPath","referencedDeclaration":7487,"src":"2009:12:38"},"nodeType":"UsingForDirective","src":"2003:25:38"},{"constant":true,"id":9380,"mutability":"constant","name":"TYPE_HASH","nameLocation":"2059:9:38","nodeType":"VariableDeclaration","scope":9588,"src":"2034:140:38","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9376,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2034:7:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429","id":9378,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2089:84:38","typeDescriptions":{"typeIdentifier":"t_stringliteral_8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f","typeString":"literal_string \"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\""},"value":"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f","typeString":"literal_string \"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\""}],"id":9377,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"2079:9:38","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":9379,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2079:95:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":9382,"mutability":"immutable","name":"_cachedDomainSeparator","nameLocation":"2399:22:38","nodeType":"VariableDeclaration","scope":9588,"src":"2373:48:38","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9381,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2373:7:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":9384,"mutability":"immutable","name":"_cachedChainId","nameLocation":"2453:14:38","nodeType":"VariableDeclaration","scope":9588,"src":"2427:40:38","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9383,"name":"uint256","nodeType":"ElementaryTypeName","src":"2427:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":9386,"mutability":"immutable","name":"_cachedThis","nameLocation":"2499:11:38","nodeType":"VariableDeclaration","scope":9588,"src":"2473:37:38","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9385,"name":"address","nodeType":"ElementaryTypeName","src":"2473:7:38","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"constant":false,"id":9388,"mutability":"immutable","name":"_hashedName","nameLocation":"2543:11:38","nodeType":"VariableDeclaration","scope":9588,"src":"2517:37:38","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9387,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2517:7:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":9390,"mutability":"immutable","name":"_hashedVersion","nameLocation":"2586:14:38","nodeType":"VariableDeclaration","scope":9588,"src":"2560:40:38","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9389,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2560:7:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":9393,"mutability":"immutable","name":"_name","nameLocation":"2637:5:38","nodeType":"VariableDeclaration","scope":9588,"src":"2607:35:38","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"},"typeName":{"id":9392,"nodeType":"UserDefinedTypeName","pathNode":{"id":9391,"name":"ShortString","nameLocations":["2607:11:38"],"nodeType":"IdentifierPath","referencedDeclaration":7276,"src":"2607:11:38"},"referencedDeclaration":7276,"src":"2607:11:38","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"visibility":"private"},{"constant":false,"id":9396,"mutability":"immutable","name":"_version","nameLocation":"2678:8:38","nodeType":"VariableDeclaration","scope":9588,"src":"2648:38:38","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"},"typeName":{"id":9395,"nodeType":"UserDefinedTypeName","pathNode":{"id":9394,"name":"ShortString","nameLocations":["2648:11:38"],"nodeType":"IdentifierPath","referencedDeclaration":7276,"src":"2648:11:38"},"referencedDeclaration":7276,"src":"2648:11:38","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"visibility":"private"},{"constant":false,"id":9398,"mutability":"mutable","name":"_nameFallback","nameLocation":"2757:13:38","nodeType":"VariableDeclaration","scope":9588,"src":"2742:28:38","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":9397,"name":"string","nodeType":"ElementaryTypeName","src":"2742:6:38","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":9400,"mutability":"mutable","name":"_versionFallback","nameLocation":"2841:16:38","nodeType":"VariableDeclaration","scope":9588,"src":"2826:31:38","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":9399,"name":"string","nodeType":"ElementaryTypeName","src":"2826:6:38","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":9457,"nodeType":"Block","src":"3483:376:38","statements":[{"expression":{"id":9413,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9408,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9393,"src":"3493:5:38","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":9411,"name":"_nameFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9398,"src":"3532:13:38","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":9409,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9403,"src":"3501:4:38","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":9410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3506:25:38","memberName":"toShortStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":7428,"src":"3501:30:38","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_storage_ptr_$returns$_t_userDefinedValueType$_ShortString_$7276_$attached_to$_t_string_memory_ptr_$","typeString":"function (string memory,string storage pointer) returns (ShortString)"}},"id":9412,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3501:45:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"src":"3493:53:38","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"id":9414,"nodeType":"ExpressionStatement","src":"3493:53:38"},{"expression":{"id":9420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9415,"name":"_version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9396,"src":"3556:8:38","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":9418,"name":"_versionFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9400,"src":"3601:16:38","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":9416,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9405,"src":"3567:7:38","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":9417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3575:25:38","memberName":"toShortStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":7428,"src":"3567:33:38","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_storage_ptr_$returns$_t_userDefinedValueType$_ShortString_$7276_$attached_to$_t_string_memory_ptr_$","typeString":"function (string memory,string storage pointer) returns (ShortString)"}},"id":9419,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3567:51:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"src":"3556:62:38","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"id":9421,"nodeType":"ExpressionStatement","src":"3556:62:38"},{"expression":{"id":9429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9422,"name":"_hashedName","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9388,"src":"3628:11:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":9426,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9403,"src":"3658:4:38","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":9425,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3652:5:38","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":9424,"name":"bytes","nodeType":"ElementaryTypeName","src":"3652:5:38","typeDescriptions":{}}},"id":9427,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3652:11:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9423,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"3642:9:38","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":9428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3642:22:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3628:36:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":9430,"nodeType":"ExpressionStatement","src":"3628:36:38"},{"expression":{"id":9438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9431,"name":"_hashedVersion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9390,"src":"3674:14:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":9435,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9405,"src":"3707:7:38","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":9434,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3701:5:38","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":9433,"name":"bytes","nodeType":"ElementaryTypeName","src":"3701:5:38","typeDescriptions":{}}},"id":9436,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3701:14:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9432,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"3691:9:38","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":9437,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3691:25:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3674:42:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":9439,"nodeType":"ExpressionStatement","src":"3674:42:38"},{"expression":{"id":9443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9440,"name":"_cachedChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9384,"src":"3727:14:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":9441,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967292,"src":"3744:5:38","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":9442,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3750:7:38","memberName":"chainid","nodeType":"MemberAccess","src":"3744:13:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3727:30:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9444,"nodeType":"ExpressionStatement","src":"3727:30:38"},{"expression":{"id":9448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9445,"name":"_cachedDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9382,"src":"3767:22:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":9446,"name":"_buildDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9505,"src":"3792:21:38","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":9447,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3792:23:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3767:48:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":9449,"nodeType":"ExpressionStatement","src":"3767:48:38"},{"expression":{"id":9455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9450,"name":"_cachedThis","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9386,"src":"3825:11:38","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":9453,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"3847:4:38","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$9588","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$9588","typeString":"contract EIP712"}],"id":9452,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3839:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9451,"name":"address","nodeType":"ElementaryTypeName","src":"3839:7:38","typeDescriptions":{}}},"id":9454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3839:13:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3825:27:38","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9456,"nodeType":"ExpressionStatement","src":"3825:27:38"}]},"documentation":{"id":9401,"nodeType":"StructuredDocumentation","src":"2864:559:38","text":" @dev Initializes the domain separator and parameter caches.\n The meaning of `name` and `version` is specified in\n https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP-712]:\n - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\n - `version`: the current major version of the signing domain.\n NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\n contract upgrade]."},"id":9458,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":9406,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9403,"mutability":"mutable","name":"name","nameLocation":"3454:4:38","nodeType":"VariableDeclaration","scope":9458,"src":"3440:18:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9402,"name":"string","nodeType":"ElementaryTypeName","src":"3440:6:38","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":9405,"mutability":"mutable","name":"version","nameLocation":"3474:7:38","nodeType":"VariableDeclaration","scope":9458,"src":"3460:21:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9404,"name":"string","nodeType":"ElementaryTypeName","src":"3460:6:38","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3439:43:38"},"returnParameters":{"id":9407,"nodeType":"ParameterList","parameters":[],"src":"3483:0:38"},"scope":9588,"src":"3428:431:38","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9483,"nodeType":"Block","src":"4007:200:38","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":9469,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":9466,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"4029:4:38","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$9588","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$9588","typeString":"contract EIP712"}],"id":9465,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4021:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9464,"name":"address","nodeType":"ElementaryTypeName","src":"4021:7:38","typeDescriptions":{}}},"id":9467,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4021:13:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":9468,"name":"_cachedThis","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9386,"src":"4038:11:38","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4021:28:38","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9470,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967292,"src":"4053:5:38","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":9471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4059:7:38","memberName":"chainid","nodeType":"MemberAccess","src":"4053:13:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":9472,"name":"_cachedChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9384,"src":"4070:14:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4053:31:38","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4021:63:38","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":9481,"nodeType":"Block","src":"4146:55:38","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9478,"name":"_buildDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9505,"src":"4167:21:38","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":9479,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4167:23:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":9463,"id":9480,"nodeType":"Return","src":"4160:30:38"}]},"id":9482,"nodeType":"IfStatement","src":"4017:184:38","trueBody":{"id":9477,"nodeType":"Block","src":"4086:54:38","statements":[{"expression":{"id":9475,"name":"_cachedDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9382,"src":"4107:22:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":9463,"id":9476,"nodeType":"Return","src":"4100:29:38"}]}}]},"documentation":{"id":9459,"nodeType":"StructuredDocumentation","src":"3865:75:38","text":" @dev Returns the domain separator for the current chain."},"id":9484,"implemented":true,"kind":"function","modifiers":[],"name":"_domainSeparatorV4","nameLocation":"3954:18:38","nodeType":"FunctionDefinition","parameters":{"id":9460,"nodeType":"ParameterList","parameters":[],"src":"3972:2:38"},"returnParameters":{"id":9463,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9462,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9484,"src":"3998:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9461,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3998:7:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3997:9:38"},"scope":9588,"src":"3945:262:38","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9504,"nodeType":"Block","src":"4277:115:38","statements":[{"expression":{"arguments":[{"arguments":[{"id":9492,"name":"TYPE_HASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9380,"src":"4315:9:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9493,"name":"_hashedName","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9388,"src":"4326:11:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9494,"name":"_hashedVersion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9390,"src":"4339:14:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":9495,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967292,"src":"4355:5:38","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":9496,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4361:7:38","memberName":"chainid","nodeType":"MemberAccess","src":"4355:13:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":9499,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"4378:4:38","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$9588","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$9588","typeString":"contract EIP712"}],"id":9498,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4370:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9497,"name":"address","nodeType":"ElementaryTypeName","src":"4370:7:38","typeDescriptions":{}}},"id":9500,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4370:13:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":9490,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967295,"src":"4304:3:38","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9491,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4308:6:38","memberName":"encode","nodeType":"MemberAccess","src":"4304:10:38","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9501,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4304:80:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9489,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"4294:9:38","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":9502,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4294:91:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":9488,"id":9503,"nodeType":"Return","src":"4287:98:38"}]},"id":9505,"implemented":true,"kind":"function","modifiers":[],"name":"_buildDomainSeparator","nameLocation":"4222:21:38","nodeType":"FunctionDefinition","parameters":{"id":9485,"nodeType":"ParameterList","parameters":[],"src":"4243:2:38"},"returnParameters":{"id":9488,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9487,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9505,"src":"4268:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9486,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4268:7:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4267:9:38"},"scope":9588,"src":"4213:179:38","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":9520,"nodeType":"Block","src":"5103:90:38","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":9515,"name":"_domainSeparatorV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9484,"src":"5153:18:38","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":9516,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5153:20:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9517,"name":"structHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9508,"src":"5175:10:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":9513,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9674,"src":"5120:16:38","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_MessageHashUtils_$9674_$","typeString":"type(library MessageHashUtils)"}},"id":9514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5137:15:38","memberName":"toTypedDataHash","nodeType":"MemberAccess","referencedDeclaration":9673,"src":"5120:32:38","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32,bytes32) pure returns (bytes32)"}},"id":9518,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5120:66:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":9512,"id":9519,"nodeType":"Return","src":"5113:73:38"}]},"documentation":{"id":9506,"nodeType":"StructuredDocumentation","src":"4398:614:38","text":" @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\n function returns the hash of the fully encoded EIP712 message for this domain.\n This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\n ```solidity\n bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\n keccak256(\"Mail(address to,string contents)\"),\n mailTo,\n keccak256(bytes(mailContents))\n )));\n address signer = ECDSA.recover(digest, signature);\n ```"},"id":9521,"implemented":true,"kind":"function","modifiers":[],"name":"_hashTypedDataV4","nameLocation":"5026:16:38","nodeType":"FunctionDefinition","parameters":{"id":9509,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9508,"mutability":"mutable","name":"structHash","nameLocation":"5051:10:38","nodeType":"VariableDeclaration","scope":9521,"src":"5043:18:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9507,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5043:7:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5042:20:38"},"returnParameters":{"id":9512,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9511,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9521,"src":"5094:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9510,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5094:7:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5093:9:38"},"scope":9588,"src":"5017:176:38","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[5565],"body":{"id":9562,"nodeType":"Block","src":"5571:229:38","statements":[{"expression":{"components":[{"hexValue":"0f","id":9540,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"5602:7:38","typeDescriptions":{"typeIdentifier":"t_stringliteral_3d725c5ee53025f027da36bea8d3af3b6a3e9d2d1542d47c162631de48e66c1c","typeString":"literal_string hex\"0f\""},"value":"\u000f"},{"arguments":[],"expression":{"argumentTypes":[],"id":9541,"name":"_EIP712Name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9575,"src":"5632:11:38","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":9542,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5632:13:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[],"expression":{"argumentTypes":[],"id":9543,"name":"_EIP712Version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9587,"src":"5659:14:38","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":9544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5659:16:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":9545,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967292,"src":"5689:5:38","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":9546,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5695:7:38","memberName":"chainid","nodeType":"MemberAccess","src":"5689:13:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":9549,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967268,"src":"5724:4:38","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$9588","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$9588","typeString":"contract EIP712"}],"id":9548,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5716:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9547,"name":"address","nodeType":"ElementaryTypeName","src":"5716:7:38","typeDescriptions":{}}},"id":9550,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5716:13:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":9553,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5751:1:38","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":9552,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5743:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9551,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5743:7:38","typeDescriptions":{}}},"id":9554,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5743:10:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"hexValue":"30","id":9558,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5781:1:38","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":9557,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"5767:13:38","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"},"typeName":{"baseType":{"id":9555,"name":"uint256","nodeType":"ElementaryTypeName","src":"5771:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9556,"nodeType":"ArrayTypeName","src":"5771:9:38","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":9559,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5767:16:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}}],"id":9560,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5588:205:38","typeDescriptions":{"typeIdentifier":"t_tuple$_t_stringliteral_3d725c5ee53025f027da36bea8d3af3b6a3e9d2d1542d47c162631de48e66c1c_$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_uint256_$_t_address_$_t_bytes32_$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"tuple(literal_string hex\"0f\",string memory,string memory,uint256,address,bytes32,uint256[] memory)"}},"functionReturnParameters":9539,"id":9561,"nodeType":"Return","src":"5581:212:38"}]},"documentation":{"id":9522,"nodeType":"StructuredDocumentation","src":"5199:39:38","text":" @inheritdoc IERC5267"},"functionSelector":"84b0196e","id":9563,"implemented":true,"kind":"function","modifiers":[],"name":"eip712Domain","nameLocation":"5252:12:38","nodeType":"FunctionDefinition","parameters":{"id":9523,"nodeType":"ParameterList","parameters":[],"src":"5264:2:38"},"returnParameters":{"id":9539,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9525,"mutability":"mutable","name":"fields","nameLocation":"5348:6:38","nodeType":"VariableDeclaration","scope":9563,"src":"5341:13:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":9524,"name":"bytes1","nodeType":"ElementaryTypeName","src":"5341:6:38","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":9527,"mutability":"mutable","name":"name","nameLocation":"5382:4:38","nodeType":"VariableDeclaration","scope":9563,"src":"5368:18:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9526,"name":"string","nodeType":"ElementaryTypeName","src":"5368:6:38","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":9529,"mutability":"mutable","name":"version","nameLocation":"5414:7:38","nodeType":"VariableDeclaration","scope":9563,"src":"5400:21:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9528,"name":"string","nodeType":"ElementaryTypeName","src":"5400:6:38","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":9531,"mutability":"mutable","name":"chainId","nameLocation":"5443:7:38","nodeType":"VariableDeclaration","scope":9563,"src":"5435:15:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9530,"name":"uint256","nodeType":"ElementaryTypeName","src":"5435:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9533,"mutability":"mutable","name":"verifyingContract","nameLocation":"5472:17:38","nodeType":"VariableDeclaration","scope":9563,"src":"5464:25:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9532,"name":"address","nodeType":"ElementaryTypeName","src":"5464:7:38","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9535,"mutability":"mutable","name":"salt","nameLocation":"5511:4:38","nodeType":"VariableDeclaration","scope":9563,"src":"5503:12:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9534,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5503:7:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9538,"mutability":"mutable","name":"extensions","nameLocation":"5546:10:38","nodeType":"VariableDeclaration","scope":9563,"src":"5529:27:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":9536,"name":"uint256","nodeType":"ElementaryTypeName","src":"5529:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9537,"nodeType":"ArrayTypeName","src":"5529:9:38","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"5327:239:38"},"scope":9588,"src":"5243:557:38","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":9574,"nodeType":"Block","src":"6181:65:38","statements":[{"expression":{"arguments":[{"id":9571,"name":"_nameFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9398,"src":"6225:13:38","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":9569,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9393,"src":"6198:5:38","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"id":9570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6204:20:38","memberName":"toStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":7455,"src":"6198:26:38","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$7276_$_t_string_storage_ptr_$returns$_t_string_memory_ptr_$attached_to$_t_userDefinedValueType$_ShortString_$7276_$","typeString":"function (ShortString,string storage pointer) pure returns (string memory)"}},"id":9572,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6198:41:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":9568,"id":9573,"nodeType":"Return","src":"6191:48:38"}]},"documentation":{"id":9564,"nodeType":"StructuredDocumentation","src":"5806:256:38","text":" @dev The name parameter for the EIP712 domain.\n NOTE: By default this function reads _name which is an immutable value.\n It only reads from storage if necessary (in case the value is too large to fit in a ShortString)."},"id":9575,"implemented":true,"kind":"function","modifiers":[],"name":"_EIP712Name","nameLocation":"6129:11:38","nodeType":"FunctionDefinition","parameters":{"id":9565,"nodeType":"ParameterList","parameters":[],"src":"6140:2:38"},"returnParameters":{"id":9568,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9567,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9575,"src":"6166:13:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9566,"name":"string","nodeType":"ElementaryTypeName","src":"6166:6:38","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6165:15:38"},"scope":9588,"src":"6120:126:38","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9586,"nodeType":"Block","src":"6636:71:38","statements":[{"expression":{"arguments":[{"id":9583,"name":"_versionFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9400,"src":"6683:16:38","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":9581,"name":"_version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9396,"src":"6653:8:38","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$7276","typeString":"ShortString"}},"id":9582,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6662:20:38","memberName":"toStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":7455,"src":"6653:29:38","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$7276_$_t_string_storage_ptr_$returns$_t_string_memory_ptr_$attached_to$_t_userDefinedValueType$_ShortString_$7276_$","typeString":"function (ShortString,string storage pointer) pure returns (string memory)"}},"id":9584,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6653:47:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":9580,"id":9585,"nodeType":"Return","src":"6646:54:38"}]},"documentation":{"id":9576,"nodeType":"StructuredDocumentation","src":"6252:262:38","text":" @dev The version parameter for the EIP712 domain.\n NOTE: By default this function reads _version which is an immutable value.\n It only reads from storage if necessary (in case the value is too large to fit in a ShortString)."},"id":9587,"implemented":true,"kind":"function","modifiers":[],"name":"_EIP712Version","nameLocation":"6581:14:38","nodeType":"FunctionDefinition","parameters":{"id":9577,"nodeType":"ParameterList","parameters":[],"src":"6595:2:38"},"returnParameters":{"id":9580,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9579,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9587,"src":"6621:13:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9578,"name":"string","nodeType":"ElementaryTypeName","src":"6621:6:38","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6620:15:38"},"scope":9588,"src":"6572:135:38","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":9589,"src":"1960:4749:38","usedErrors":[7284,7286],"usedEvents":[5546]}],"src":"113:6597:38"},"id":38},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","exportedSymbols":{"MessageHashUtils":[9674],"Strings":[9013]},"id":9675,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9590,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"123:24:39"},{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","file":"../Strings.sol","id":9592,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9675,"sourceUnit":9014,"src":"149:39:39","symbolAliases":[{"foreign":{"id":9591,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9013,"src":"157:7:39","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"MessageHashUtils","contractDependencies":[],"contractKind":"library","documentation":{"id":9593,"nodeType":"StructuredDocumentation","src":"190:330:39","text":" @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.\n The library provides methods for generating a hash of a message that conforms to the\n https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]\n specifications."},"fullyImplemented":true,"id":9674,"linearizedBaseContracts":[9674],"name":"MessageHashUtils","nameLocation":"529:16:39","nodeType":"ContractDefinition","nodes":[{"body":{"id":9602,"nodeType":"Block","src":"1339:341:39","statements":[{"AST":{"nodeType":"YulBlock","src":"1374:300:39","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1395:4:39","type":"","value":"0x00"},{"hexValue":"19457468657265756d205369676e6564204d6573736167653a0a3332","kind":"string","nodeType":"YulLiteral","src":"1401:34:39","type":"","value":"\u0019Ethereum Signed Message:\n32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1388:6:39"},"nodeType":"YulFunctionCall","src":"1388:48:39"},"nodeType":"YulExpressionStatement","src":"1388:48:39"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1497:4:39","type":"","value":"0x1c"},{"name":"messageHash","nodeType":"YulIdentifier","src":"1503:11:39"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1490:6:39"},"nodeType":"YulFunctionCall","src":"1490:25:39"},"nodeType":"YulExpressionStatement","src":"1490:25:39"},{"nodeType":"YulAssignment","src":"1569:31:39","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1589:4:39","type":"","value":"0x00"},{"kind":"number","nodeType":"YulLiteral","src":"1595:4:39","type":"","value":"0x3c"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"1579:9:39"},"nodeType":"YulFunctionCall","src":"1579:21:39"},"variableNames":[{"name":"digest","nodeType":"YulIdentifier","src":"1569:6:39"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9599,"isOffset":false,"isSlot":false,"src":"1569:6:39","valueSize":1},{"declaration":9596,"isOffset":false,"isSlot":false,"src":"1503:11:39","valueSize":1}],"flags":["memory-safe"],"id":9601,"nodeType":"InlineAssembly","src":"1349:325:39"}]},"documentation":{"id":9594,"nodeType":"StructuredDocumentation","src":"552:690:39","text":" @dev Returns the keccak256 digest of an ERC-191 signed data with version\n `0x45` (`personal_sign` messages).\n The digest is calculated by prefixing a bytes32 `messageHash` with\n `\"\\x19Ethereum Signed Message:\\n32\"` and hashing the result. It corresponds with the\n hash signed when using the https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_sign[`eth_sign`] JSON-RPC method.\n NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with\n keccak256, although any bytes32 value can be safely used because the final digest will\n be re-hashed.\n See {ECDSA-recover}."},"id":9603,"implemented":true,"kind":"function","modifiers":[],"name":"toEthSignedMessageHash","nameLocation":"1256:22:39","nodeType":"FunctionDefinition","parameters":{"id":9597,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9596,"mutability":"mutable","name":"messageHash","nameLocation":"1287:11:39","nodeType":"VariableDeclaration","scope":9603,"src":"1279:19:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9595,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1279:7:39","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1278:21:39"},"returnParameters":{"id":9600,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9599,"mutability":"mutable","name":"digest","nameLocation":"1331:6:39","nodeType":"VariableDeclaration","scope":9603,"src":"1323:14:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9598,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1323:7:39","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1322:16:39"},"scope":9674,"src":"1247:433:39","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9628,"nodeType":"Block","src":"2257:143:39","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"19457468657265756d205369676e6564204d6573736167653a0a","id":9615,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2309:32:39","typeDescriptions":{"typeIdentifier":"t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4","typeString":"literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a\""},"value":"\u0019Ethereum Signed Message:\n"},{"arguments":[{"arguments":[{"expression":{"id":9620,"name":"message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9606,"src":"2366:7:39","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9621,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2374:6:39","memberName":"length","nodeType":"MemberAccess","src":"2366:14:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9618,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9013,"src":"2349:7:39","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Strings_$9013_$","typeString":"type(library Strings)"}},"id":9619,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2357:8:39","memberName":"toString","nodeType":"MemberAccess","referencedDeclaration":7725,"src":"2349:16:39","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":9622,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2349:32:39","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":9617,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2343:5:39","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":9616,"name":"bytes","nodeType":"ElementaryTypeName","src":"2343:5:39","typeDescriptions":{}}},"id":9623,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2343:39:39","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":9624,"name":"message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9606,"src":"2384:7:39","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4","typeString":"literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a\""},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9613,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2296:5:39","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":9612,"name":"bytes","nodeType":"ElementaryTypeName","src":"2296:5:39","typeDescriptions":{}}},"id":9614,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2302:6:39","memberName":"concat","nodeType":"MemberAccess","src":"2296:12:39","typeDescriptions":{"typeIdentifier":"t_function_bytesconcat_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9625,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2296:96:39","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9611,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"2286:9:39","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":9626,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2286:107:39","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":9610,"id":9627,"nodeType":"Return","src":"2267:126:39"}]},"documentation":{"id":9604,"nodeType":"StructuredDocumentation","src":"1686:480:39","text":" @dev Returns the keccak256 digest of an ERC-191 signed data with version\n `0x45` (`personal_sign` messages).\n The digest is calculated by prefixing an arbitrary `message` with\n `\"\\x19Ethereum Signed Message:\\n\" + len(message)` and hashing the result. It corresponds with the\n hash signed when using the https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_sign[`eth_sign`] JSON-RPC method.\n See {ECDSA-recover}."},"id":9629,"implemented":true,"kind":"function","modifiers":[],"name":"toEthSignedMessageHash","nameLocation":"2180:22:39","nodeType":"FunctionDefinition","parameters":{"id":9607,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9606,"mutability":"mutable","name":"message","nameLocation":"2216:7:39","nodeType":"VariableDeclaration","scope":9629,"src":"2203:20:39","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9605,"name":"bytes","nodeType":"ElementaryTypeName","src":"2203:5:39","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2202:22:39"},"returnParameters":{"id":9610,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9609,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9629,"src":"2248:7:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9608,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2248:7:39","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2247:9:39"},"scope":9674,"src":"2171:229:39","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9648,"nodeType":"Block","src":"2854:80:39","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"1900","id":9642,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"2898:10:39","typeDescriptions":{"typeIdentifier":"t_stringliteral_73fd5d154550a4a103564cb191928cd38898034de1b952dc21b290898b4b697a","typeString":"literal_string hex\"1900\""},"value":"\u0019\u0000"},{"id":9643,"name":"validator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9632,"src":"2910:9:39","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9644,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9634,"src":"2921:4:39","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_73fd5d154550a4a103564cb191928cd38898034de1b952dc21b290898b4b697a","typeString":"literal_string hex\"1900\""},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9640,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967295,"src":"2881:3:39","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9641,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2885:12:39","memberName":"encodePacked","nodeType":"MemberAccess","src":"2881:16:39","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9645,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2881:45:39","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9639,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967288,"src":"2871:9:39","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":9646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2871:56:39","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":9638,"id":9647,"nodeType":"Return","src":"2864:63:39"}]},"documentation":{"id":9630,"nodeType":"StructuredDocumentation","src":"2406:332:39","text":" @dev Returns the keccak256 digest of an ERC-191 signed data with version\n `0x00` (data with intended validator).\n The digest is calculated by prefixing an arbitrary `data` with `\"\\x19\\x00\"` and the intended\n `validator` address. Then hashing the result.\n See {ECDSA-recover}."},"id":9649,"implemented":true,"kind":"function","modifiers":[],"name":"toDataWithIntendedValidatorHash","nameLocation":"2752:31:39","nodeType":"FunctionDefinition","parameters":{"id":9635,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9632,"mutability":"mutable","name":"validator","nameLocation":"2792:9:39","nodeType":"VariableDeclaration","scope":9649,"src":"2784:17:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9631,"name":"address","nodeType":"ElementaryTypeName","src":"2784:7:39","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9634,"mutability":"mutable","name":"data","nameLocation":"2816:4:39","nodeType":"VariableDeclaration","scope":9649,"src":"2803:17:39","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9633,"name":"bytes","nodeType":"ElementaryTypeName","src":"2803:5:39","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2783:38:39"},"returnParameters":{"id":9638,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9637,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9649,"src":"2845:7:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9636,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2845:7:39","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2844:9:39"},"scope":9674,"src":"2743:191:39","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9660,"nodeType":"Block","src":"3216:216:39","statements":[{"AST":{"nodeType":"YulBlock","src":"3251:175:39","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3272:4:39","type":"","value":"0x00"},{"hexValue":"1900","kind":"string","nodeType":"YulLiteral","src":"3278:10:39","type":"","value":"\u0019\u0000"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3265:6:39"},"nodeType":"YulFunctionCall","src":"3265:24:39"},"nodeType":"YulExpressionStatement","src":"3265:24:39"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3309:4:39","type":"","value":"0x02"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3319:2:39","type":"","value":"96"},{"name":"validator","nodeType":"YulIdentifier","src":"3323:9:39"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3315:3:39"},"nodeType":"YulFunctionCall","src":"3315:18:39"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3302:6:39"},"nodeType":"YulFunctionCall","src":"3302:32:39"},"nodeType":"YulExpressionStatement","src":"3302:32:39"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3354:4:39","type":"","value":"0x16"},{"name":"messageHash","nodeType":"YulIdentifier","src":"3360:11:39"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3347:6:39"},"nodeType":"YulFunctionCall","src":"3347:25:39"},"nodeType":"YulExpressionStatement","src":"3347:25:39"},{"nodeType":"YulAssignment","src":"3385:31:39","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3405:4:39","type":"","value":"0x00"},{"kind":"number","nodeType":"YulLiteral","src":"3411:4:39","type":"","value":"0x36"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"3395:9:39"},"nodeType":"YulFunctionCall","src":"3395:21:39"},"variableNames":[{"name":"digest","nodeType":"YulIdentifier","src":"3385:6:39"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9657,"isOffset":false,"isSlot":false,"src":"3385:6:39","valueSize":1},{"declaration":9654,"isOffset":false,"isSlot":false,"src":"3360:11:39","valueSize":1},{"declaration":9652,"isOffset":false,"isSlot":false,"src":"3323:9:39","valueSize":1}],"flags":["memory-safe"],"id":9659,"nodeType":"InlineAssembly","src":"3226:200:39"}]},"documentation":{"id":9650,"nodeType":"StructuredDocumentation","src":"2940:129:39","text":" @dev Variant of {toDataWithIntendedValidatorHash-address-bytes} optimized for cases where `data` is a bytes32."},"id":9661,"implemented":true,"kind":"function","modifiers":[],"name":"toDataWithIntendedValidatorHash","nameLocation":"3083:31:39","nodeType":"FunctionDefinition","parameters":{"id":9655,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9652,"mutability":"mutable","name":"validator","nameLocation":"3132:9:39","nodeType":"VariableDeclaration","scope":9661,"src":"3124:17:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9651,"name":"address","nodeType":"ElementaryTypeName","src":"3124:7:39","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9654,"mutability":"mutable","name":"messageHash","nameLocation":"3159:11:39","nodeType":"VariableDeclaration","scope":9661,"src":"3151:19:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9653,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3151:7:39","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3114:62:39"},"returnParameters":{"id":9658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9657,"mutability":"mutable","name":"digest","nameLocation":"3208:6:39","nodeType":"VariableDeclaration","scope":9661,"src":"3200:14:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9656,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3200:7:39","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3199:16:39"},"scope":9674,"src":"3074:358:39","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9672,"nodeType":"Block","src":"3983:265:39","statements":[{"AST":{"nodeType":"YulBlock","src":"4018:224:39","statements":[{"nodeType":"YulVariableDeclaration","src":"4032:22:39","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4049:4:39","type":"","value":"0x40"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4043:5:39"},"nodeType":"YulFunctionCall","src":"4043:11:39"},"variables":[{"name":"ptr","nodeType":"YulTypedName","src":"4036:3:39","type":""}]},{"expression":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"4074:3:39"},{"hexValue":"1901","kind":"string","nodeType":"YulLiteral","src":"4079:10:39","type":"","value":"\u0019\u0001"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4067:6:39"},"nodeType":"YulFunctionCall","src":"4067:23:39"},"nodeType":"YulExpressionStatement","src":"4067:23:39"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"4114:3:39"},{"kind":"number","nodeType":"YulLiteral","src":"4119:4:39","type":"","value":"0x02"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4110:3:39"},"nodeType":"YulFunctionCall","src":"4110:14:39"},{"name":"domainSeparator","nodeType":"YulIdentifier","src":"4126:15:39"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4103:6:39"},"nodeType":"YulFunctionCall","src":"4103:39:39"},"nodeType":"YulExpressionStatement","src":"4103:39:39"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"4166:3:39"},{"kind":"number","nodeType":"YulLiteral","src":"4171:4:39","type":"","value":"0x22"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4162:3:39"},"nodeType":"YulFunctionCall","src":"4162:14:39"},{"name":"structHash","nodeType":"YulIdentifier","src":"4178:10:39"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4155:6:39"},"nodeType":"YulFunctionCall","src":"4155:34:39"},"nodeType":"YulExpressionStatement","src":"4155:34:39"},{"nodeType":"YulAssignment","src":"4202:30:39","value":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"4222:3:39"},{"kind":"number","nodeType":"YulLiteral","src":"4227:4:39","type":"","value":"0x42"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"4212:9:39"},"nodeType":"YulFunctionCall","src":"4212:20:39"},"variableNames":[{"name":"digest","nodeType":"YulIdentifier","src":"4202:6:39"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9669,"isOffset":false,"isSlot":false,"src":"4202:6:39","valueSize":1},{"declaration":9664,"isOffset":false,"isSlot":false,"src":"4126:15:39","valueSize":1},{"declaration":9666,"isOffset":false,"isSlot":false,"src":"4178:10:39","valueSize":1}],"flags":["memory-safe"],"id":9671,"nodeType":"InlineAssembly","src":"3993:249:39"}]},"documentation":{"id":9662,"nodeType":"StructuredDocumentation","src":"3438:431:39","text":" @dev Returns the keccak256 digest of an EIP-712 typed data (ERC-191 version `0x01`).\n The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with\n `\\x19\\x01` and hashing the result. It corresponds to the hash signed by the\n https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.\n See {ECDSA-recover}."},"id":9673,"implemented":true,"kind":"function","modifiers":[],"name":"toTypedDataHash","nameLocation":"3883:15:39","nodeType":"FunctionDefinition","parameters":{"id":9667,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9664,"mutability":"mutable","name":"domainSeparator","nameLocation":"3907:15:39","nodeType":"VariableDeclaration","scope":9673,"src":"3899:23:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9663,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3899:7:39","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9666,"mutability":"mutable","name":"structHash","nameLocation":"3932:10:39","nodeType":"VariableDeclaration","scope":9673,"src":"3924:18:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9665,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3924:7:39","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3898:45:39"},"returnParameters":{"id":9670,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9669,"mutability":"mutable","name":"digest","nameLocation":"3975:6:39","nodeType":"VariableDeclaration","scope":9673,"src":"3967:14:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9668,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3967:7:39","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3966:16:39"},"scope":9674,"src":"3874:374:39","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":9675,"src":"521:3729:39","usedErrors":[],"usedEvents":[]}],"src":"123:4128:39"},"id":39},"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol","exportedSymbols":{"ECDSA":[9361],"IERC1271":[5537],"SignatureChecker":[9782]},"id":9783,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9676,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"123:24:40"},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","file":"./ECDSA.sol","id":9678,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9783,"sourceUnit":9362,"src":"149:34:40","symbolAliases":[{"foreign":{"id":9677,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9361,"src":"157:5:40","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1271.sol","file":"../../interfaces/IERC1271.sol","id":9680,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9783,"sourceUnit":5538,"src":"184:55:40","symbolAliases":[{"foreign":{"id":9679,"name":"IERC1271","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5537,"src":"192:8:40","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"SignatureChecker","contractDependencies":[],"contractKind":"library","documentation":{"id":9681,"nodeType":"StructuredDocumentation","src":"241:290:40","text":" @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA\n signatures from externally owned accounts (EOAs) as well as ERC-1271 signatures from smart contract wallets like\n Argent and Safe Wallet (previously Gnosis Safe)."},"fullyImplemented":true,"id":9782,"linearizedBaseContracts":[9782],"name":"SignatureChecker","nameLocation":"540:16:40","nodeType":"ContractDefinition","nodes":[{"body":{"id":9728,"nodeType":"Block","src":"1153:317:40","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":9693,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"1167:6:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1174:4:40","memberName":"code","nodeType":"MemberAccess","src":"1167:11:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1179:6:40","memberName":"length","nodeType":"MemberAccess","src":"1167:18:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":9696,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1189:1:40","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1167:23:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":9726,"nodeType":"Block","src":"1381:83:40","statements":[{"expression":{"arguments":[{"id":9721,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"1429:6:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9722,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9686,"src":"1437:4:40","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9723,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9688,"src":"1443:9:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9720,"name":"isValidERC1271SignatureNow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9781,"src":"1402:26:40","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,bytes32,bytes memory) view returns (bool)"}},"id":9724,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1402:51:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":9692,"id":9725,"nodeType":"Return","src":"1395:58:40"}]},"id":9727,"nodeType":"IfStatement","src":"1163:301:40","trueBody":{"id":9719,"nodeType":"Block","src":"1192:183:40","statements":[{"assignments":[9699,9702,null],"declarations":[{"constant":false,"id":9699,"mutability":"mutable","name":"recovered","nameLocation":"1215:9:40","nodeType":"VariableDeclaration","scope":9719,"src":"1207:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9698,"name":"address","nodeType":"ElementaryTypeName","src":"1207:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9702,"mutability":"mutable","name":"err","nameLocation":"1245:3:40","nodeType":"VariableDeclaration","scope":9719,"src":"1226:22:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":9701,"nodeType":"UserDefinedTypeName","pathNode":{"id":9700,"name":"ECDSA.RecoverError","nameLocations":["1226:5:40","1232:12:40"],"nodeType":"IdentifierPath","referencedDeclaration":9021,"src":"1226:18:40"},"referencedDeclaration":9021,"src":"1226:18:40","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},null],"id":9708,"initialValue":{"arguments":[{"id":9705,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9686,"src":"1271:4:40","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9706,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9688,"src":"1277:9:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9703,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9361,"src":"1254:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$9361_$","typeString":"type(library ECDSA)"}},"id":9704,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1260:10:40","memberName":"tryRecover","nodeType":"MemberAccess","referencedDeclaration":9087,"src":"1254:16:40","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$_t_enum$_RecoverError_$9021_$_t_bytes32_$","typeString":"function (bytes32,bytes memory) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":9707,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1254:33:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$9021_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"1206:81:40"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"},"id":9713,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9709,"name":"err","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9702,"src":"1308:3:40","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":9710,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9361,"src":"1315:5:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$9361_$","typeString":"type(library ECDSA)"}},"id":9711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1321:12:40","memberName":"RecoverError","nodeType":"MemberAccess","referencedDeclaration":9021,"src":"1315:18:40","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$9021_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":9712,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1334:7:40","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":9017,"src":"1315:26:40","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$9021","typeString":"enum ECDSA.RecoverError"}},"src":"1308:33:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":9716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9714,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9699,"src":"1345:9:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":9715,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"1358:6:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1345:19:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1308:56:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":9692,"id":9718,"nodeType":"Return","src":"1301:63:40"}]}}]},"documentation":{"id":9682,"nodeType":"StructuredDocumentation","src":"563:473:40","text":" @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the\n signature is validated against that smart contract using ERC-1271, otherwise it's validated using `ECDSA.recover`.\n NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus\n change through time. It could return true at block N and false at block N+1 (or the opposite)."},"id":9729,"implemented":true,"kind":"function","modifiers":[],"name":"isValidSignatureNow","nameLocation":"1050:19:40","nodeType":"FunctionDefinition","parameters":{"id":9689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9684,"mutability":"mutable","name":"signer","nameLocation":"1078:6:40","nodeType":"VariableDeclaration","scope":9729,"src":"1070:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9683,"name":"address","nodeType":"ElementaryTypeName","src":"1070:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9686,"mutability":"mutable","name":"hash","nameLocation":"1094:4:40","nodeType":"VariableDeclaration","scope":9729,"src":"1086:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9685,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1086:7:40","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9688,"mutability":"mutable","name":"signature","nameLocation":"1113:9:40","nodeType":"VariableDeclaration","scope":9729,"src":"1100:22:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9687,"name":"bytes","nodeType":"ElementaryTypeName","src":"1100:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1069:54:40"},"returnParameters":{"id":9692,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9691,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9729,"src":"1147:4:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9690,"name":"bool","nodeType":"ElementaryTypeName","src":"1147:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1146:6:40"},"scope":9782,"src":"1041:429:40","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9780,"nodeType":"Block","src":"2026:309:40","statements":[{"assignments":[9742,9744],"declarations":[{"constant":false,"id":9742,"mutability":"mutable","name":"success","nameLocation":"2042:7:40","nodeType":"VariableDeclaration","scope":9780,"src":"2037:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9741,"name":"bool","nodeType":"ElementaryTypeName","src":"2037:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9744,"mutability":"mutable","name":"result","nameLocation":"2064:6:40","nodeType":"VariableDeclaration","scope":9780,"src":"2051:19:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9743,"name":"bytes","nodeType":"ElementaryTypeName","src":"2051:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":9756,"initialValue":{"arguments":[{"arguments":[{"expression":{"id":9749,"name":"IERC1271","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5537,"src":"2120:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1271_$5537_$","typeString":"type(contract IERC1271)"}},"id":9750,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2129:16:40","memberName":"isValidSignature","nodeType":"MemberAccess","referencedDeclaration":5536,"src":"2120:25:40","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function IERC1271.isValidSignature(bytes32,bytes memory) view returns (bytes4)"}},{"components":[{"id":9751,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9734,"src":"2148:4:40","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9752,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9736,"src":"2154:9:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":9753,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2147:17:40","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes32_$_t_bytes_memory_ptr_$","typeString":"tuple(bytes32,bytes memory)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_declaration_view$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function IERC1271.isValidSignature(bytes32,bytes memory) view returns (bytes4)"},{"typeIdentifier":"t_tuple$_t_bytes32_$_t_bytes_memory_ptr_$","typeString":"tuple(bytes32,bytes memory)"}],"expression":{"id":9747,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967295,"src":"2105:3:40","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9748,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2109:10:40","memberName":"encodeCall","nodeType":"MemberAccess","src":"2105:14:40","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9754,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2105:60:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9745,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9732,"src":"2074:6:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2081:10:40","memberName":"staticcall","nodeType":"MemberAccess","src":"2074:17:40","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":9755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2074:101:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"2036:139:40"},{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9777,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9757,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9742,"src":"2193:7:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9761,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9758,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9744,"src":"2216:6:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":9759,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2223:6:40","memberName":"length","nodeType":"MemberAccess","src":"2216:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"3332","id":9760,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2233:2:40","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"2216:19:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2193:42:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":9776,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":9765,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9744,"src":"2262:6:40","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":9767,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2271:7:40","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9766,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2271:7:40","typeDescriptions":{}}}],"id":9768,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2270:9:40","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"}],"expression":{"id":9763,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967295,"src":"2251:3:40","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9764,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2255:6:40","memberName":"decode","nodeType":"MemberAccess","src":"2251:10:40","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":9769,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2251:29:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"expression":{"expression":{"id":9772,"name":"IERC1271","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5537,"src":"2292:8:40","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1271_$5537_$","typeString":"type(contract IERC1271)"}},"id":9773,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2301:16:40","memberName":"isValidSignature","nodeType":"MemberAccess","referencedDeclaration":5536,"src":"2292:25:40","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function IERC1271.isValidSignature(bytes32,bytes memory) view returns (bytes4)"}},"id":9774,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2318:8:40","memberName":"selector","nodeType":"MemberAccess","src":"2292:34:40","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":9771,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2284:7:40","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9770,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2284:7:40","typeDescriptions":{}}},"id":9775,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2284:43:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2251:76:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2193:134:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":9778,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2192:136:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":9740,"id":9779,"nodeType":"Return","src":"2185:143:40"}]},"documentation":{"id":9730,"nodeType":"StructuredDocumentation","src":"1476:396:40","text":" @dev Checks if a signature is valid for a given signer and data hash. The signature is validated\n against the signer smart contract using ERC-1271.\n NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus\n change through time. It could return true at block N and false at block N+1 (or the opposite)."},"id":9781,"implemented":true,"kind":"function","modifiers":[],"name":"isValidERC1271SignatureNow","nameLocation":"1886:26:40","nodeType":"FunctionDefinition","parameters":{"id":9737,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9732,"mutability":"mutable","name":"signer","nameLocation":"1930:6:40","nodeType":"VariableDeclaration","scope":9781,"src":"1922:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9731,"name":"address","nodeType":"ElementaryTypeName","src":"1922:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9734,"mutability":"mutable","name":"hash","nameLocation":"1954:4:40","nodeType":"VariableDeclaration","scope":9781,"src":"1946:12:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9733,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1946:7:40","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9736,"mutability":"mutable","name":"signature","nameLocation":"1981:9:40","nodeType":"VariableDeclaration","scope":9781,"src":"1968:22:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9735,"name":"bytes","nodeType":"ElementaryTypeName","src":"1968:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1912:84:40"},"returnParameters":{"id":9740,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9739,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9781,"src":"2020:4:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9738,"name":"bool","nodeType":"ElementaryTypeName","src":"2020:4:40","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2019:6:40"},"scope":9782,"src":"1877:458:40","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":9783,"src":"532:1805:40","usedErrors":[],"usedEvents":[]}],"src":"123:2215:40"},"id":40},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","exportedSymbols":{"ERC165":[9806],"IERC165":[9818]},"id":9807,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9784,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"114:24:41"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"./IERC165.sol","id":9786,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9807,"sourceUnit":9819,"src":"140:38:41","symbolAliases":[{"foreign":{"id":9785,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9818,"src":"148:7:41","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":9788,"name":"IERC165","nameLocations":["688:7:41"],"nodeType":"IdentifierPath","referencedDeclaration":9818,"src":"688:7:41"},"id":9789,"nodeType":"InheritanceSpecifier","src":"688:7:41"}],"canonicalName":"ERC165","contractDependencies":[],"contractKind":"contract","documentation":{"id":9787,"nodeType":"StructuredDocumentation","src":"180:479:41","text":" @dev Implementation of the {IERC165} interface.\n Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check\n for the additional interface id that will be supported. For example:\n ```solidity\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n }\n ```"},"fullyImplemented":true,"id":9806,"linearizedBaseContracts":[9806,9818],"name":"ERC165","nameLocation":"678:6:41","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[9817],"body":{"id":9804,"nodeType":"Block","src":"845:64:41","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":9802,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9797,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9792,"src":"862:11:41","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":9799,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9818,"src":"882:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$9818_$","typeString":"type(contract IERC165)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC165_$9818_$","typeString":"type(contract IERC165)"}],"id":9798,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"877:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":9800,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"877:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC165_$9818","typeString":"type(contract IERC165)"}},"id":9801,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"891:11:41","memberName":"interfaceId","nodeType":"MemberAccess","src":"877:25:41","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"862:40:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":9796,"id":9803,"nodeType":"Return","src":"855:47:41"}]},"documentation":{"id":9790,"nodeType":"StructuredDocumentation","src":"702:56:41","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":9805,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"772:17:41","nodeType":"FunctionDefinition","parameters":{"id":9793,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9792,"mutability":"mutable","name":"interfaceId","nameLocation":"797:11:41","nodeType":"VariableDeclaration","scope":9805,"src":"790:18:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9791,"name":"bytes4","nodeType":"ElementaryTypeName","src":"790:6:41","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"789:20:41"},"returnParameters":{"id":9796,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9795,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9805,"src":"839:4:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9794,"name":"bool","nodeType":"ElementaryTypeName","src":"839:4:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"838:6:41"},"scope":9806,"src":"763:146:41","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":9807,"src":"660:251:41","usedErrors":[],"usedEvents":[]}],"src":"114:798:41"},"id":41},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","exportedSymbols":{"IERC165":[9818]},"id":9819,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9808,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"115:24:42"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC165","contractDependencies":[],"contractKind":"interface","documentation":{"id":9809,"nodeType":"StructuredDocumentation","src":"141:280:42","text":" @dev Interface of the ERC-165 standard, as defined in the\n https://eips.ethereum.org/EIPS/eip-165[ERC].\n Implementers can declare support of contract interfaces, which can then be\n queried by others ({ERC165Checker}).\n For an implementation, see {ERC165}."},"fullyImplemented":false,"id":9818,"linearizedBaseContracts":[9818],"name":"IERC165","nameLocation":"432:7:42","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":9810,"nodeType":"StructuredDocumentation","src":"446:340:42","text":" @dev Returns true if this contract implements the interface defined by\n `interfaceId`. See the corresponding\n https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]\n to learn more about how these ids are created.\n This function call must use less than 30 000 gas."},"functionSelector":"01ffc9a7","id":9817,"implemented":false,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"800:17:42","nodeType":"FunctionDefinition","parameters":{"id":9813,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9812,"mutability":"mutable","name":"interfaceId","nameLocation":"825:11:42","nodeType":"VariableDeclaration","scope":9817,"src":"818:18:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9811,"name":"bytes4","nodeType":"ElementaryTypeName","src":"818:6:42","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"817:20:42"},"returnParameters":{"id":9816,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9815,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9817,"src":"861:4:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9814,"name":"bool","nodeType":"ElementaryTypeName","src":"861:4:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"860:6:42"},"scope":9818,"src":"791:76:42","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":9819,"src":"422:447:42","usedErrors":[],"usedEvents":[]}],"src":"115:755:42"},"id":42},"@openzeppelin/contracts/utils/math/Math.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","exportedSymbols":{"Math":[11439],"Panic":[7270],"SafeCast":[13204]},"id":11440,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9820,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"103:24:43"},{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","file":"../Panic.sol","id":9822,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11440,"sourceUnit":7271,"src":"129:35:43","symbolAliases":[{"foreign":{"id":9821,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"137:5:43","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./SafeCast.sol","id":9824,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11440,"sourceUnit":13205,"src":"165:40:43","symbolAliases":[{"foreign":{"id":9823,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"173:8:43","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Math","contractDependencies":[],"contractKind":"library","documentation":{"id":9825,"nodeType":"StructuredDocumentation","src":"207:73:43","text":" @dev Standard math utilities missing in the Solidity language."},"fullyImplemented":true,"id":11439,"linearizedBaseContracts":[11439],"name":"Math","nameLocation":"289:4:43","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Math.Rounding","id":9830,"members":[{"id":9826,"name":"Floor","nameLocation":"324:5:43","nodeType":"EnumValue","src":"324:5:43"},{"id":9827,"name":"Ceil","nameLocation":"367:4:43","nodeType":"EnumValue","src":"367:4:43"},{"id":9828,"name":"Trunc","nameLocation":"409:5:43","nodeType":"EnumValue","src":"409:5:43"},{"id":9829,"name":"Expand","nameLocation":"439:6:43","nodeType":"EnumValue","src":"439:6:43"}],"name":"Rounding","nameLocation":"305:8:43","nodeType":"EnumDefinition","src":"300:169:43"},{"body":{"id":9843,"nodeType":"Block","src":"731:112:43","statements":[{"AST":{"nodeType":"YulBlock","src":"766:71:43","statements":[{"nodeType":"YulAssignment","src":"780:16:43","value":{"arguments":[{"name":"a","nodeType":"YulIdentifier","src":"791:1:43"},{"name":"b","nodeType":"YulIdentifier","src":"794:1:43"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"787:3:43"},"nodeType":"YulFunctionCall","src":"787:9:43"},"variableNames":[{"name":"low","nodeType":"YulIdentifier","src":"780:3:43"}]},{"nodeType":"YulAssignment","src":"809:18:43","value":{"arguments":[{"name":"low","nodeType":"YulIdentifier","src":"820:3:43"},{"name":"a","nodeType":"YulIdentifier","src":"825:1:43"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"817:2:43"},"nodeType":"YulFunctionCall","src":"817:10:43"},"variableNames":[{"name":"high","nodeType":"YulIdentifier","src":"809:4:43"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9833,"isOffset":false,"isSlot":false,"src":"791:1:43","valueSize":1},{"declaration":9833,"isOffset":false,"isSlot":false,"src":"825:1:43","valueSize":1},{"declaration":9835,"isOffset":false,"isSlot":false,"src":"794:1:43","valueSize":1},{"declaration":9838,"isOffset":false,"isSlot":false,"src":"809:4:43","valueSize":1},{"declaration":9840,"isOffset":false,"isSlot":false,"src":"780:3:43","valueSize":1},{"declaration":9840,"isOffset":false,"isSlot":false,"src":"820:3:43","valueSize":1}],"flags":["memory-safe"],"id":9842,"nodeType":"InlineAssembly","src":"741:96:43"}]},"documentation":{"id":9831,"nodeType":"StructuredDocumentation","src":"475:163:43","text":" @dev Return the 512-bit addition of two uint256.\n The result is stored in two 256 variables such that sum = high * 2²⁵⁶ + low."},"id":9844,"implemented":true,"kind":"function","modifiers":[],"name":"add512","nameLocation":"652:6:43","nodeType":"FunctionDefinition","parameters":{"id":9836,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9833,"mutability":"mutable","name":"a","nameLocation":"667:1:43","nodeType":"VariableDeclaration","scope":9844,"src":"659:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9832,"name":"uint256","nodeType":"ElementaryTypeName","src":"659:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9835,"mutability":"mutable","name":"b","nameLocation":"678:1:43","nodeType":"VariableDeclaration","scope":9844,"src":"670:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9834,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"658:22:43"},"returnParameters":{"id":9841,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9838,"mutability":"mutable","name":"high","nameLocation":"712:4:43","nodeType":"VariableDeclaration","scope":9844,"src":"704:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9837,"name":"uint256","nodeType":"ElementaryTypeName","src":"704:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9840,"mutability":"mutable","name":"low","nameLocation":"726:3:43","nodeType":"VariableDeclaration","scope":9844,"src":"718:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9839,"name":"uint256","nodeType":"ElementaryTypeName","src":"718:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"703:27:43"},"scope":11439,"src":"643:200:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9857,"nodeType":"Block","src":"1115:462:43","statements":[{"AST":{"nodeType":"YulBlock","src":"1437:134:43","statements":[{"nodeType":"YulVariableDeclaration","src":"1451:30:43","value":{"arguments":[{"name":"a","nodeType":"YulIdentifier","src":"1468:1:43"},{"name":"b","nodeType":"YulIdentifier","src":"1471:1:43"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1478:1:43","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"1474:3:43"},"nodeType":"YulFunctionCall","src":"1474:6:43"}],"functionName":{"name":"mulmod","nodeType":"YulIdentifier","src":"1461:6:43"},"nodeType":"YulFunctionCall","src":"1461:20:43"},"variables":[{"name":"mm","nodeType":"YulTypedName","src":"1455:2:43","type":""}]},{"nodeType":"YulAssignment","src":"1494:16:43","value":{"arguments":[{"name":"a","nodeType":"YulIdentifier","src":"1505:1:43"},{"name":"b","nodeType":"YulIdentifier","src":"1508:1:43"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"1501:3:43"},"nodeType":"YulFunctionCall","src":"1501:9:43"},"variableNames":[{"name":"low","nodeType":"YulIdentifier","src":"1494:3:43"}]},{"nodeType":"YulAssignment","src":"1523:38:43","value":{"arguments":[{"arguments":[{"name":"mm","nodeType":"YulIdentifier","src":"1539:2:43"},{"name":"low","nodeType":"YulIdentifier","src":"1543:3:43"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1535:3:43"},"nodeType":"YulFunctionCall","src":"1535:12:43"},{"arguments":[{"name":"mm","nodeType":"YulIdentifier","src":"1552:2:43"},{"name":"low","nodeType":"YulIdentifier","src":"1556:3:43"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1549:2:43"},"nodeType":"YulFunctionCall","src":"1549:11:43"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1531:3:43"},"nodeType":"YulFunctionCall","src":"1531:30:43"},"variableNames":[{"name":"high","nodeType":"YulIdentifier","src":"1523:4:43"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9847,"isOffset":false,"isSlot":false,"src":"1468:1:43","valueSize":1},{"declaration":9847,"isOffset":false,"isSlot":false,"src":"1505:1:43","valueSize":1},{"declaration":9849,"isOffset":false,"isSlot":false,"src":"1471:1:43","valueSize":1},{"declaration":9849,"isOffset":false,"isSlot":false,"src":"1508:1:43","valueSize":1},{"declaration":9852,"isOffset":false,"isSlot":false,"src":"1523:4:43","valueSize":1},{"declaration":9854,"isOffset":false,"isSlot":false,"src":"1494:3:43","valueSize":1},{"declaration":9854,"isOffset":false,"isSlot":false,"src":"1543:3:43","valueSize":1},{"declaration":9854,"isOffset":false,"isSlot":false,"src":"1556:3:43","valueSize":1}],"flags":["memory-safe"],"id":9856,"nodeType":"InlineAssembly","src":"1412:159:43"}]},"documentation":{"id":9845,"nodeType":"StructuredDocumentation","src":"849:173:43","text":" @dev Return the 512-bit multiplication of two uint256.\n The result is stored in two 256 variables such that product = high * 2²⁵⁶ + low."},"id":9858,"implemented":true,"kind":"function","modifiers":[],"name":"mul512","nameLocation":"1036:6:43","nodeType":"FunctionDefinition","parameters":{"id":9850,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9847,"mutability":"mutable","name":"a","nameLocation":"1051:1:43","nodeType":"VariableDeclaration","scope":9858,"src":"1043:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9846,"name":"uint256","nodeType":"ElementaryTypeName","src":"1043:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9849,"mutability":"mutable","name":"b","nameLocation":"1062:1:43","nodeType":"VariableDeclaration","scope":9858,"src":"1054:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9848,"name":"uint256","nodeType":"ElementaryTypeName","src":"1054:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1042:22:43"},"returnParameters":{"id":9855,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9852,"mutability":"mutable","name":"high","nameLocation":"1096:4:43","nodeType":"VariableDeclaration","scope":9858,"src":"1088:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9851,"name":"uint256","nodeType":"ElementaryTypeName","src":"1088:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9854,"mutability":"mutable","name":"low","nameLocation":"1110:3:43","nodeType":"VariableDeclaration","scope":9858,"src":"1102:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9853,"name":"uint256","nodeType":"ElementaryTypeName","src":"1102:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1087:27:43"},"scope":11439,"src":"1027:550:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9892,"nodeType":"Block","src":"1784:149:43","statements":[{"id":9891,"nodeType":"UncheckedBlock","src":"1794:133:43","statements":[{"assignments":[9871],"declarations":[{"constant":false,"id":9871,"mutability":"mutable","name":"c","nameLocation":"1826:1:43","nodeType":"VariableDeclaration","scope":9891,"src":"1818:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9870,"name":"uint256","nodeType":"ElementaryTypeName","src":"1818:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9875,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9872,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9861,"src":"1830:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":9873,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9863,"src":"1834:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1830:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1818:17:43"},{"expression":{"id":9880,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9876,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9866,"src":"1849:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9877,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9871,"src":"1859:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":9878,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9861,"src":"1864:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1859:6:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1849:16:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9881,"nodeType":"ExpressionStatement","src":"1849:16:43"},{"expression":{"id":9889,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9882,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9868,"src":"1879:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9888,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9883,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9871,"src":"1888:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":9886,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9866,"src":"1908:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":9884,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"1892:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":9885,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1901:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"1892:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":9887,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1892:24:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1888:28:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1879:37:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9890,"nodeType":"ExpressionStatement","src":"1879:37:43"}]}]},"documentation":{"id":9859,"nodeType":"StructuredDocumentation","src":"1583:105:43","text":" @dev Returns the addition of two unsigned integers, with a success flag (no overflow)."},"id":9893,"implemented":true,"kind":"function","modifiers":[],"name":"tryAdd","nameLocation":"1702:6:43","nodeType":"FunctionDefinition","parameters":{"id":9864,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9861,"mutability":"mutable","name":"a","nameLocation":"1717:1:43","nodeType":"VariableDeclaration","scope":9893,"src":"1709:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9860,"name":"uint256","nodeType":"ElementaryTypeName","src":"1709:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9863,"mutability":"mutable","name":"b","nameLocation":"1728:1:43","nodeType":"VariableDeclaration","scope":9893,"src":"1720:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9862,"name":"uint256","nodeType":"ElementaryTypeName","src":"1720:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1708:22:43"},"returnParameters":{"id":9869,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9866,"mutability":"mutable","name":"success","nameLocation":"1759:7:43","nodeType":"VariableDeclaration","scope":9893,"src":"1754:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9865,"name":"bool","nodeType":"ElementaryTypeName","src":"1754:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9868,"mutability":"mutable","name":"result","nameLocation":"1776:6:43","nodeType":"VariableDeclaration","scope":9893,"src":"1768:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9867,"name":"uint256","nodeType":"ElementaryTypeName","src":"1768:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1753:30:43"},"scope":11439,"src":"1693:240:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9927,"nodeType":"Block","src":"2143:149:43","statements":[{"id":9926,"nodeType":"UncheckedBlock","src":"2153:133:43","statements":[{"assignments":[9906],"declarations":[{"constant":false,"id":9906,"mutability":"mutable","name":"c","nameLocation":"2185:1:43","nodeType":"VariableDeclaration","scope":9926,"src":"2177:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9905,"name":"uint256","nodeType":"ElementaryTypeName","src":"2177:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9910,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9909,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9907,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9896,"src":"2189:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":9908,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9898,"src":"2193:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2189:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2177:17:43"},{"expression":{"id":9915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9911,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9901,"src":"2208:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9914,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9912,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9906,"src":"2218:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":9913,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9896,"src":"2223:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2218:6:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2208:16:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9916,"nodeType":"ExpressionStatement","src":"2208:16:43"},{"expression":{"id":9924,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9917,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9903,"src":"2238:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9918,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9906,"src":"2247:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":9921,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9901,"src":"2267:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":9919,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"2251:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":9920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2260:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"2251:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":9922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2251:24:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2247:28:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2238:37:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9925,"nodeType":"ExpressionStatement","src":"2238:37:43"}]}]},"documentation":{"id":9894,"nodeType":"StructuredDocumentation","src":"1939:108:43","text":" @dev Returns the subtraction of two unsigned integers, with a success flag (no overflow)."},"id":9928,"implemented":true,"kind":"function","modifiers":[],"name":"trySub","nameLocation":"2061:6:43","nodeType":"FunctionDefinition","parameters":{"id":9899,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9896,"mutability":"mutable","name":"a","nameLocation":"2076:1:43","nodeType":"VariableDeclaration","scope":9928,"src":"2068:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9895,"name":"uint256","nodeType":"ElementaryTypeName","src":"2068:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9898,"mutability":"mutable","name":"b","nameLocation":"2087:1:43","nodeType":"VariableDeclaration","scope":9928,"src":"2079:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9897,"name":"uint256","nodeType":"ElementaryTypeName","src":"2079:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2067:22:43"},"returnParameters":{"id":9904,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9901,"mutability":"mutable","name":"success","nameLocation":"2118:7:43","nodeType":"VariableDeclaration","scope":9928,"src":"2113:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9900,"name":"bool","nodeType":"ElementaryTypeName","src":"2113:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9903,"mutability":"mutable","name":"result","nameLocation":"2135:6:43","nodeType":"VariableDeclaration","scope":9928,"src":"2127:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9902,"name":"uint256","nodeType":"ElementaryTypeName","src":"2127:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2112:30:43"},"scope":11439,"src":"2052:240:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9957,"nodeType":"Block","src":"2505:391:43","statements":[{"id":9956,"nodeType":"UncheckedBlock","src":"2515:375:43","statements":[{"assignments":[9941],"declarations":[{"constant":false,"id":9941,"mutability":"mutable","name":"c","nameLocation":"2547:1:43","nodeType":"VariableDeclaration","scope":9956,"src":"2539:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9940,"name":"uint256","nodeType":"ElementaryTypeName","src":"2539:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":9945,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9942,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9931,"src":"2551:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":9943,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9933,"src":"2555:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2551:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2539:17:43"},{"AST":{"nodeType":"YulBlock","src":"2595:188:43","statements":[{"nodeType":"YulAssignment","src":"2727:42:43","value":{"arguments":[{"arguments":[{"arguments":[{"name":"c","nodeType":"YulIdentifier","src":"2748:1:43"},{"name":"a","nodeType":"YulIdentifier","src":"2751:1:43"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"2744:3:43"},"nodeType":"YulFunctionCall","src":"2744:9:43"},{"name":"b","nodeType":"YulIdentifier","src":"2755:1:43"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"2741:2:43"},"nodeType":"YulFunctionCall","src":"2741:16:43"},{"arguments":[{"name":"a","nodeType":"YulIdentifier","src":"2766:1:43"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2759:6:43"},"nodeType":"YulFunctionCall","src":"2759:9:43"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"2738:2:43"},"nodeType":"YulFunctionCall","src":"2738:31:43"},"variableNames":[{"name":"success","nodeType":"YulIdentifier","src":"2727:7:43"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9931,"isOffset":false,"isSlot":false,"src":"2751:1:43","valueSize":1},{"declaration":9931,"isOffset":false,"isSlot":false,"src":"2766:1:43","valueSize":1},{"declaration":9933,"isOffset":false,"isSlot":false,"src":"2755:1:43","valueSize":1},{"declaration":9941,"isOffset":false,"isSlot":false,"src":"2748:1:43","valueSize":1},{"declaration":9936,"isOffset":false,"isSlot":false,"src":"2727:7:43","valueSize":1}],"flags":["memory-safe"],"id":9946,"nodeType":"InlineAssembly","src":"2570:213:43"},{"expression":{"id":9954,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9947,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9938,"src":"2842:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9948,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9941,"src":"2851:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":9951,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9936,"src":"2871:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":9949,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"2855:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":9950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2864:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"2855:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":9952,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2855:24:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2851:28:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2842:37:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9955,"nodeType":"ExpressionStatement","src":"2842:37:43"}]}]},"documentation":{"id":9929,"nodeType":"StructuredDocumentation","src":"2298:111:43","text":" @dev Returns the multiplication of two unsigned integers, with a success flag (no overflow)."},"id":9958,"implemented":true,"kind":"function","modifiers":[],"name":"tryMul","nameLocation":"2423:6:43","nodeType":"FunctionDefinition","parameters":{"id":9934,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9931,"mutability":"mutable","name":"a","nameLocation":"2438:1:43","nodeType":"VariableDeclaration","scope":9958,"src":"2430:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9930,"name":"uint256","nodeType":"ElementaryTypeName","src":"2430:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9933,"mutability":"mutable","name":"b","nameLocation":"2449:1:43","nodeType":"VariableDeclaration","scope":9958,"src":"2441:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9932,"name":"uint256","nodeType":"ElementaryTypeName","src":"2441:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2429:22:43"},"returnParameters":{"id":9939,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9936,"mutability":"mutable","name":"success","nameLocation":"2480:7:43","nodeType":"VariableDeclaration","scope":9958,"src":"2475:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9935,"name":"bool","nodeType":"ElementaryTypeName","src":"2475:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9938,"mutability":"mutable","name":"result","nameLocation":"2497:6:43","nodeType":"VariableDeclaration","scope":9958,"src":"2489:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9937,"name":"uint256","nodeType":"ElementaryTypeName","src":"2489:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2474:30:43"},"scope":11439,"src":"2414:482:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9978,"nodeType":"Block","src":"3111:231:43","statements":[{"id":9977,"nodeType":"UncheckedBlock","src":"3121:215:43","statements":[{"expression":{"id":9974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9970,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9966,"src":"3145:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9971,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9963,"src":"3155:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9972,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3159:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3155:5:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3145:15:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9975,"nodeType":"ExpressionStatement","src":"3145:15:43"},{"AST":{"nodeType":"YulBlock","src":"3199:127:43","statements":[{"nodeType":"YulAssignment","src":"3293:19:43","value":{"arguments":[{"name":"a","nodeType":"YulIdentifier","src":"3307:1:43"},{"name":"b","nodeType":"YulIdentifier","src":"3310:1:43"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"3303:3:43"},"nodeType":"YulFunctionCall","src":"3303:9:43"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"3293:6:43"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9961,"isOffset":false,"isSlot":false,"src":"3307:1:43","valueSize":1},{"declaration":9963,"isOffset":false,"isSlot":false,"src":"3310:1:43","valueSize":1},{"declaration":9968,"isOffset":false,"isSlot":false,"src":"3293:6:43","valueSize":1}],"flags":["memory-safe"],"id":9976,"nodeType":"InlineAssembly","src":"3174:152:43"}]}]},"documentation":{"id":9959,"nodeType":"StructuredDocumentation","src":"2902:113:43","text":" @dev Returns the division of two unsigned integers, with a success flag (no division by zero)."},"id":9979,"implemented":true,"kind":"function","modifiers":[],"name":"tryDiv","nameLocation":"3029:6:43","nodeType":"FunctionDefinition","parameters":{"id":9964,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9961,"mutability":"mutable","name":"a","nameLocation":"3044:1:43","nodeType":"VariableDeclaration","scope":9979,"src":"3036:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9960,"name":"uint256","nodeType":"ElementaryTypeName","src":"3036:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9963,"mutability":"mutable","name":"b","nameLocation":"3055:1:43","nodeType":"VariableDeclaration","scope":9979,"src":"3047:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9962,"name":"uint256","nodeType":"ElementaryTypeName","src":"3047:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3035:22:43"},"returnParameters":{"id":9969,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9966,"mutability":"mutable","name":"success","nameLocation":"3086:7:43","nodeType":"VariableDeclaration","scope":9979,"src":"3081:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9965,"name":"bool","nodeType":"ElementaryTypeName","src":"3081:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9968,"mutability":"mutable","name":"result","nameLocation":"3103:6:43","nodeType":"VariableDeclaration","scope":9979,"src":"3095:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9967,"name":"uint256","nodeType":"ElementaryTypeName","src":"3095:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3080:30:43"},"scope":11439,"src":"3020:322:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9999,"nodeType":"Block","src":"3567:231:43","statements":[{"id":9998,"nodeType":"UncheckedBlock","src":"3577:215:43","statements":[{"expression":{"id":9995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9991,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9987,"src":"3601:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9994,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9992,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9984,"src":"3611:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9993,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3615:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3611:5:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3601:15:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9996,"nodeType":"ExpressionStatement","src":"3601:15:43"},{"AST":{"nodeType":"YulBlock","src":"3655:127:43","statements":[{"nodeType":"YulAssignment","src":"3749:19:43","value":{"arguments":[{"name":"a","nodeType":"YulIdentifier","src":"3763:1:43"},{"name":"b","nodeType":"YulIdentifier","src":"3766:1:43"}],"functionName":{"name":"mod","nodeType":"YulIdentifier","src":"3759:3:43"},"nodeType":"YulFunctionCall","src":"3759:9:43"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"3749:6:43"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9982,"isOffset":false,"isSlot":false,"src":"3763:1:43","valueSize":1},{"declaration":9984,"isOffset":false,"isSlot":false,"src":"3766:1:43","valueSize":1},{"declaration":9989,"isOffset":false,"isSlot":false,"src":"3749:6:43","valueSize":1}],"flags":["memory-safe"],"id":9997,"nodeType":"InlineAssembly","src":"3630:152:43"}]}]},"documentation":{"id":9980,"nodeType":"StructuredDocumentation","src":"3348:123:43","text":" @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero)."},"id":10000,"implemented":true,"kind":"function","modifiers":[],"name":"tryMod","nameLocation":"3485:6:43","nodeType":"FunctionDefinition","parameters":{"id":9985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9982,"mutability":"mutable","name":"a","nameLocation":"3500:1:43","nodeType":"VariableDeclaration","scope":10000,"src":"3492:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9981,"name":"uint256","nodeType":"ElementaryTypeName","src":"3492:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9984,"mutability":"mutable","name":"b","nameLocation":"3511:1:43","nodeType":"VariableDeclaration","scope":10000,"src":"3503:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9983,"name":"uint256","nodeType":"ElementaryTypeName","src":"3503:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3491:22:43"},"returnParameters":{"id":9990,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9987,"mutability":"mutable","name":"success","nameLocation":"3542:7:43","nodeType":"VariableDeclaration","scope":10000,"src":"3537:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9986,"name":"bool","nodeType":"ElementaryTypeName","src":"3537:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9989,"mutability":"mutable","name":"result","nameLocation":"3559:6:43","nodeType":"VariableDeclaration","scope":10000,"src":"3551:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9988,"name":"uint256","nodeType":"ElementaryTypeName","src":"3551:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3536:30:43"},"scope":11439,"src":"3476:322:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10029,"nodeType":"Block","src":"3989:122:43","statements":[{"assignments":[10011,10013],"declarations":[{"constant":false,"id":10011,"mutability":"mutable","name":"success","nameLocation":"4005:7:43","nodeType":"VariableDeclaration","scope":10029,"src":"4000:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10010,"name":"bool","nodeType":"ElementaryTypeName","src":"4000:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":10013,"mutability":"mutable","name":"result","nameLocation":"4022:6:43","nodeType":"VariableDeclaration","scope":10029,"src":"4014:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10012,"name":"uint256","nodeType":"ElementaryTypeName","src":"4014:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10018,"initialValue":{"arguments":[{"id":10015,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10003,"src":"4039:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10016,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10005,"src":"4042:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10014,"name":"tryAdd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9893,"src":"4032:6:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (bool,uint256)"}},"id":10017,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4032:12:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"3999:45:43"},{"expression":{"arguments":[{"id":10020,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10011,"src":"4069:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":10021,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10013,"src":"4078:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"arguments":[{"id":10024,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4091:7:43","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":10023,"name":"uint256","nodeType":"ElementaryTypeName","src":"4091:7:43","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":10022,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"4086:4:43","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10025,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4086:13:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":10026,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4100:3:43","memberName":"max","nodeType":"MemberAccess","src":"4086:17:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10019,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10107,"src":"4061:7:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":10027,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4061:43:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10009,"id":10028,"nodeType":"Return","src":"4054:50:43"}]},"documentation":{"id":10001,"nodeType":"StructuredDocumentation","src":"3804:103:43","text":" @dev Unsigned saturating addition, bounds to `2²⁵⁶ - 1` instead of overflowing."},"id":10030,"implemented":true,"kind":"function","modifiers":[],"name":"saturatingAdd","nameLocation":"3921:13:43","nodeType":"FunctionDefinition","parameters":{"id":10006,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10003,"mutability":"mutable","name":"a","nameLocation":"3943:1:43","nodeType":"VariableDeclaration","scope":10030,"src":"3935:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10002,"name":"uint256","nodeType":"ElementaryTypeName","src":"3935:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10005,"mutability":"mutable","name":"b","nameLocation":"3954:1:43","nodeType":"VariableDeclaration","scope":10030,"src":"3946:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10004,"name":"uint256","nodeType":"ElementaryTypeName","src":"3946:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3934:22:43"},"returnParameters":{"id":10009,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10008,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10030,"src":"3980:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10007,"name":"uint256","nodeType":"ElementaryTypeName","src":"3980:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3979:9:43"},"scope":11439,"src":"3912:199:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10049,"nodeType":"Block","src":"4294:73:43","statements":[{"assignments":[null,10041],"declarations":[null,{"constant":false,"id":10041,"mutability":"mutable","name":"result","nameLocation":"4315:6:43","nodeType":"VariableDeclaration","scope":10049,"src":"4307:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10040,"name":"uint256","nodeType":"ElementaryTypeName","src":"4307:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10046,"initialValue":{"arguments":[{"id":10043,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10033,"src":"4332:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10044,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10035,"src":"4335:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10042,"name":"trySub","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9928,"src":"4325:6:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (bool,uint256)"}},"id":10045,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4325:12:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"4304:33:43"},{"expression":{"id":10047,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10041,"src":"4354:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10039,"id":10048,"nodeType":"Return","src":"4347:13:43"}]},"documentation":{"id":10031,"nodeType":"StructuredDocumentation","src":"4117:95:43","text":" @dev Unsigned saturating subtraction, bounds to zero instead of overflowing."},"id":10050,"implemented":true,"kind":"function","modifiers":[],"name":"saturatingSub","nameLocation":"4226:13:43","nodeType":"FunctionDefinition","parameters":{"id":10036,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10033,"mutability":"mutable","name":"a","nameLocation":"4248:1:43","nodeType":"VariableDeclaration","scope":10050,"src":"4240:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10032,"name":"uint256","nodeType":"ElementaryTypeName","src":"4240:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10035,"mutability":"mutable","name":"b","nameLocation":"4259:1:43","nodeType":"VariableDeclaration","scope":10050,"src":"4251:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10034,"name":"uint256","nodeType":"ElementaryTypeName","src":"4251:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4239:22:43"},"returnParameters":{"id":10039,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10038,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10050,"src":"4285:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10037,"name":"uint256","nodeType":"ElementaryTypeName","src":"4285:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4284:9:43"},"scope":11439,"src":"4217:150:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10079,"nodeType":"Block","src":"4564:122:43","statements":[{"assignments":[10061,10063],"declarations":[{"constant":false,"id":10061,"mutability":"mutable","name":"success","nameLocation":"4580:7:43","nodeType":"VariableDeclaration","scope":10079,"src":"4575:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10060,"name":"bool","nodeType":"ElementaryTypeName","src":"4575:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":10063,"mutability":"mutable","name":"result","nameLocation":"4597:6:43","nodeType":"VariableDeclaration","scope":10079,"src":"4589:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10062,"name":"uint256","nodeType":"ElementaryTypeName","src":"4589:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10068,"initialValue":{"arguments":[{"id":10065,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10053,"src":"4614:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10066,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10055,"src":"4617:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10064,"name":"tryMul","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9958,"src":"4607:6:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (bool,uint256)"}},"id":10067,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4607:12:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"4574:45:43"},{"expression":{"arguments":[{"id":10070,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10061,"src":"4644:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":10071,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10063,"src":"4653:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"arguments":[{"id":10074,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4666:7:43","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":10073,"name":"uint256","nodeType":"ElementaryTypeName","src":"4666:7:43","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":10072,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"4661:4:43","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10075,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4661:13:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":10076,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4675:3:43","memberName":"max","nodeType":"MemberAccess","src":"4661:17:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10069,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10107,"src":"4636:7:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":10077,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4636:43:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10059,"id":10078,"nodeType":"Return","src":"4629:50:43"}]},"documentation":{"id":10051,"nodeType":"StructuredDocumentation","src":"4373:109:43","text":" @dev Unsigned saturating multiplication, bounds to `2²⁵⁶ - 1` instead of overflowing."},"id":10080,"implemented":true,"kind":"function","modifiers":[],"name":"saturatingMul","nameLocation":"4496:13:43","nodeType":"FunctionDefinition","parameters":{"id":10056,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10053,"mutability":"mutable","name":"a","nameLocation":"4518:1:43","nodeType":"VariableDeclaration","scope":10080,"src":"4510:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10052,"name":"uint256","nodeType":"ElementaryTypeName","src":"4510:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10055,"mutability":"mutable","name":"b","nameLocation":"4529:1:43","nodeType":"VariableDeclaration","scope":10080,"src":"4521:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10054,"name":"uint256","nodeType":"ElementaryTypeName","src":"4521:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4509:22:43"},"returnParameters":{"id":10059,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10058,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10080,"src":"4555:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10057,"name":"uint256","nodeType":"ElementaryTypeName","src":"4555:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4554:9:43"},"scope":11439,"src":"4487:199:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10106,"nodeType":"Block","src":"5158:207:43","statements":[{"id":10105,"nodeType":"UncheckedBlock","src":"5168:191:43","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10103,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10092,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10087,"src":"5306:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10101,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10093,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10085,"src":"5312:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":10094,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10087,"src":"5316:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5312:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10096,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5311:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":10099,"name":"condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10083,"src":"5337:9:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10097,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"5321:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":10098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5330:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"5321:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5321:26:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5311:36:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10102,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5310:38:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5306:42:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10091,"id":10104,"nodeType":"Return","src":"5299:49:43"}]}]},"documentation":{"id":10081,"nodeType":"StructuredDocumentation","src":"4692:374:43","text":" @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n one branch when needed, making this function more expensive."},"id":10107,"implemented":true,"kind":"function","modifiers":[],"name":"ternary","nameLocation":"5080:7:43","nodeType":"FunctionDefinition","parameters":{"id":10088,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10083,"mutability":"mutable","name":"condition","nameLocation":"5093:9:43","nodeType":"VariableDeclaration","scope":10107,"src":"5088:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10082,"name":"bool","nodeType":"ElementaryTypeName","src":"5088:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":10085,"mutability":"mutable","name":"a","nameLocation":"5112:1:43","nodeType":"VariableDeclaration","scope":10107,"src":"5104:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10084,"name":"uint256","nodeType":"ElementaryTypeName","src":"5104:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10087,"mutability":"mutable","name":"b","nameLocation":"5123:1:43","nodeType":"VariableDeclaration","scope":10107,"src":"5115:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10086,"name":"uint256","nodeType":"ElementaryTypeName","src":"5115:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5087:38:43"},"returnParameters":{"id":10091,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10090,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10107,"src":"5149:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10089,"name":"uint256","nodeType":"ElementaryTypeName","src":"5149:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5148:9:43"},"scope":11439,"src":"5071:294:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10125,"nodeType":"Block","src":"5502:44:43","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10120,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10118,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10110,"src":"5527:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":10119,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10112,"src":"5531:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5527:5:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":10121,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10110,"src":"5534:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10122,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10112,"src":"5537:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10117,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10107,"src":"5519:7:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":10123,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5519:20:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10116,"id":10124,"nodeType":"Return","src":"5512:27:43"}]},"documentation":{"id":10108,"nodeType":"StructuredDocumentation","src":"5371:59:43","text":" @dev Returns the largest of two numbers."},"id":10126,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"5444:3:43","nodeType":"FunctionDefinition","parameters":{"id":10113,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10110,"mutability":"mutable","name":"a","nameLocation":"5456:1:43","nodeType":"VariableDeclaration","scope":10126,"src":"5448:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10109,"name":"uint256","nodeType":"ElementaryTypeName","src":"5448:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10112,"mutability":"mutable","name":"b","nameLocation":"5467:1:43","nodeType":"VariableDeclaration","scope":10126,"src":"5459:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10111,"name":"uint256","nodeType":"ElementaryTypeName","src":"5459:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5447:22:43"},"returnParameters":{"id":10116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10115,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10126,"src":"5493:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10114,"name":"uint256","nodeType":"ElementaryTypeName","src":"5493:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5492:9:43"},"scope":11439,"src":"5435:111:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10144,"nodeType":"Block","src":"5684:44:43","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10137,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10129,"src":"5709:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":10138,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10131,"src":"5713:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5709:5:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":10140,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10129,"src":"5716:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10141,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10131,"src":"5719:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10136,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10107,"src":"5701:7:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":10142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5701:20:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10135,"id":10143,"nodeType":"Return","src":"5694:27:43"}]},"documentation":{"id":10127,"nodeType":"StructuredDocumentation","src":"5552:60:43","text":" @dev Returns the smallest of two numbers."},"id":10145,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"5626:3:43","nodeType":"FunctionDefinition","parameters":{"id":10132,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10129,"mutability":"mutable","name":"a","nameLocation":"5638:1:43","nodeType":"VariableDeclaration","scope":10145,"src":"5630:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10128,"name":"uint256","nodeType":"ElementaryTypeName","src":"5630:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10131,"mutability":"mutable","name":"b","nameLocation":"5649:1:43","nodeType":"VariableDeclaration","scope":10145,"src":"5641:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10130,"name":"uint256","nodeType":"ElementaryTypeName","src":"5641:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5629:22:43"},"returnParameters":{"id":10135,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10134,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10145,"src":"5675:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10133,"name":"uint256","nodeType":"ElementaryTypeName","src":"5675:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5674:9:43"},"scope":11439,"src":"5617:111:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10167,"nodeType":"Block","src":"5912:82:43","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10165,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10157,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10155,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10148,"src":"5967:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":10156,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10150,"src":"5971:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5967:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10158,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5966:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10161,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10159,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10148,"src":"5977:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":10160,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10150,"src":"5981:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5977:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10162,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5976:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":10163,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5986:1:43","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"5976:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5966:21:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10154,"id":10166,"nodeType":"Return","src":"5959:28:43"}]},"documentation":{"id":10146,"nodeType":"StructuredDocumentation","src":"5734:102:43","text":" @dev Returns the average of two numbers. The result is rounded towards\n zero."},"id":10168,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"5850:7:43","nodeType":"FunctionDefinition","parameters":{"id":10151,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10148,"mutability":"mutable","name":"a","nameLocation":"5866:1:43","nodeType":"VariableDeclaration","scope":10168,"src":"5858:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10147,"name":"uint256","nodeType":"ElementaryTypeName","src":"5858:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10150,"mutability":"mutable","name":"b","nameLocation":"5877:1:43","nodeType":"VariableDeclaration","scope":10168,"src":"5869:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10149,"name":"uint256","nodeType":"ElementaryTypeName","src":"5869:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5857:22:43"},"returnParameters":{"id":10154,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10153,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10168,"src":"5903:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10152,"name":"uint256","nodeType":"ElementaryTypeName","src":"5903:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5902:9:43"},"scope":11439,"src":"5841:153:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10208,"nodeType":"Block","src":"6286:633:43","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10178,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10173,"src":"6300:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":10179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6305:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6300:6:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10189,"nodeType":"IfStatement","src":"6296:150:43","trueBody":{"id":10188,"nodeType":"Block","src":"6308:138:43","statements":[{"expression":{"arguments":[{"expression":{"id":10184,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"6412:5:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":10185,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6418:16:43","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":7237,"src":"6412:22:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":10181,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"6400:5:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":10183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6406:5:43","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":7269,"src":"6400:11:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":10186,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6400:35:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10187,"nodeType":"ExpressionStatement","src":"6400:35:43"}]}},{"id":10207,"nodeType":"UncheckedBlock","src":"6829:84:43","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10205,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10194,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10192,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10171,"src":"6876:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":10193,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6880:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6876:5:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10190,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"6860:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":10191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6869:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"6860:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10195,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6860:22:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10203,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10198,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10196,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10171,"src":"6887:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10197,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6891:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"6887:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10199,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6886:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10200,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10173,"src":"6896:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6886:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":10202,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6900:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"6886:15:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10204,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6885:17:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6860:42:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10177,"id":10206,"nodeType":"Return","src":"6853:49:43"}]}]},"documentation":{"id":10169,"nodeType":"StructuredDocumentation","src":"6000:210:43","text":" @dev Returns the ceiling of the division of two numbers.\n This differs from standard division with `/` in that it rounds towards infinity instead\n of rounding towards zero."},"id":10209,"implemented":true,"kind":"function","modifiers":[],"name":"ceilDiv","nameLocation":"6224:7:43","nodeType":"FunctionDefinition","parameters":{"id":10174,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10171,"mutability":"mutable","name":"a","nameLocation":"6240:1:43","nodeType":"VariableDeclaration","scope":10209,"src":"6232:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10170,"name":"uint256","nodeType":"ElementaryTypeName","src":"6232:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10173,"mutability":"mutable","name":"b","nameLocation":"6251:1:43","nodeType":"VariableDeclaration","scope":10209,"src":"6243:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10172,"name":"uint256","nodeType":"ElementaryTypeName","src":"6243:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6231:22:43"},"returnParameters":{"id":10177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10176,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10209,"src":"6277:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10175,"name":"uint256","nodeType":"ElementaryTypeName","src":"6277:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6276:9:43"},"scope":11439,"src":"6215:704:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10344,"nodeType":"Block","src":"7340:3585:43","statements":[{"id":10343,"nodeType":"UncheckedBlock","src":"7350:3569:43","statements":[{"assignments":[10222,10224],"declarations":[{"constant":false,"id":10222,"mutability":"mutable","name":"high","nameLocation":"7383:4:43","nodeType":"VariableDeclaration","scope":10343,"src":"7375:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10221,"name":"uint256","nodeType":"ElementaryTypeName","src":"7375:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10224,"mutability":"mutable","name":"low","nameLocation":"7397:3:43","nodeType":"VariableDeclaration","scope":10343,"src":"7389:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10223,"name":"uint256","nodeType":"ElementaryTypeName","src":"7389:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10229,"initialValue":{"arguments":[{"id":10226,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10212,"src":"7411:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10227,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10214,"src":"7414:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10225,"name":"mul512","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9858,"src":"7404:6:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256,uint256)"}},"id":10228,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7404:12:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"7374:42:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10232,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10230,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"7498:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":10231,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7506:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7498:9:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10238,"nodeType":"IfStatement","src":"7494:365:43","trueBody":{"id":10237,"nodeType":"Block","src":"7509:350:43","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10235,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10233,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10224,"src":"7827:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10234,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"7833:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7827:17:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10220,"id":10236,"nodeType":"Return","src":"7820:24:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10239,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"7969:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":10240,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"7984:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7969:19:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10257,"nodeType":"IfStatement","src":"7965:142:43","trueBody":{"id":10256,"nodeType":"Block","src":"7990:117:43","statements":[{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10246,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"8028:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":10247,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8043:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8028:16:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"expression":{"id":10249,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"8046:5:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":10250,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8052:16:43","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":7237,"src":"8046:22:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":10251,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"8070:5:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":10252,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8076:14:43","memberName":"UNDER_OVERFLOW","nodeType":"MemberAccess","referencedDeclaration":7233,"src":"8070:20:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10245,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10107,"src":"8020:7:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":10253,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8020:71:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":10242,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"8008:5:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":10244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8014:5:43","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":7269,"src":"8008:11:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":10254,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8008:84:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10255,"nodeType":"ExpressionStatement","src":"8008:84:43"}]}},{"assignments":[10259],"declarations":[{"constant":false,"id":10259,"mutability":"mutable","name":"remainder","nameLocation":"8367:9:43","nodeType":"VariableDeclaration","scope":10343,"src":"8359:17:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10258,"name":"uint256","nodeType":"ElementaryTypeName","src":"8359:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10260,"nodeType":"VariableDeclarationStatement","src":"8359:17:43"},{"AST":{"nodeType":"YulBlock","src":"8415:283:43","statements":[{"nodeType":"YulAssignment","src":"8484:38:43","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"8504:1:43"},{"name":"y","nodeType":"YulIdentifier","src":"8507:1:43"},{"name":"denominator","nodeType":"YulIdentifier","src":"8510:11:43"}],"functionName":{"name":"mulmod","nodeType":"YulIdentifier","src":"8497:6:43"},"nodeType":"YulFunctionCall","src":"8497:25:43"},"variableNames":[{"name":"remainder","nodeType":"YulIdentifier","src":"8484:9:43"}]},{"nodeType":"YulAssignment","src":"8604:37:43","value":{"arguments":[{"name":"high","nodeType":"YulIdentifier","src":"8616:4:43"},{"arguments":[{"name":"remainder","nodeType":"YulIdentifier","src":"8625:9:43"},{"name":"low","nodeType":"YulIdentifier","src":"8636:3:43"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"8622:2:43"},"nodeType":"YulFunctionCall","src":"8622:18:43"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8612:3:43"},"nodeType":"YulFunctionCall","src":"8612:29:43"},"variableNames":[{"name":"high","nodeType":"YulIdentifier","src":"8604:4:43"}]},{"nodeType":"YulAssignment","src":"8658:26:43","value":{"arguments":[{"name":"low","nodeType":"YulIdentifier","src":"8669:3:43"},{"name":"remainder","nodeType":"YulIdentifier","src":"8674:9:43"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"8665:3:43"},"nodeType":"YulFunctionCall","src":"8665:19:43"},"variableNames":[{"name":"low","nodeType":"YulIdentifier","src":"8658:3:43"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":10216,"isOffset":false,"isSlot":false,"src":"8510:11:43","valueSize":1},{"declaration":10222,"isOffset":false,"isSlot":false,"src":"8604:4:43","valueSize":1},{"declaration":10222,"isOffset":false,"isSlot":false,"src":"8616:4:43","valueSize":1},{"declaration":10224,"isOffset":false,"isSlot":false,"src":"8636:3:43","valueSize":1},{"declaration":10224,"isOffset":false,"isSlot":false,"src":"8658:3:43","valueSize":1},{"declaration":10224,"isOffset":false,"isSlot":false,"src":"8669:3:43","valueSize":1},{"declaration":10259,"isOffset":false,"isSlot":false,"src":"8484:9:43","valueSize":1},{"declaration":10259,"isOffset":false,"isSlot":false,"src":"8625:9:43","valueSize":1},{"declaration":10259,"isOffset":false,"isSlot":false,"src":"8674:9:43","valueSize":1},{"declaration":10212,"isOffset":false,"isSlot":false,"src":"8504:1:43","valueSize":1},{"declaration":10214,"isOffset":false,"isSlot":false,"src":"8507:1:43","valueSize":1}],"flags":["memory-safe"],"id":10261,"nodeType":"InlineAssembly","src":"8390:308:43"},{"assignments":[10263],"declarations":[{"constant":false,"id":10263,"mutability":"mutable","name":"twos","nameLocation":"8910:4:43","nodeType":"VariableDeclaration","scope":10343,"src":"8902:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10262,"name":"uint256","nodeType":"ElementaryTypeName","src":"8902:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10270,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10264,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"8917:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10267,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"30","id":10265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8932:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":10266,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"8936:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8932:15:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10268,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8931:17:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8917:31:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8902:46:43"},{"AST":{"nodeType":"YulBlock","src":"8987:359:43","statements":[{"nodeType":"YulAssignment","src":"9052:37:43","value":{"arguments":[{"name":"denominator","nodeType":"YulIdentifier","src":"9071:11:43"},{"name":"twos","nodeType":"YulIdentifier","src":"9084:4:43"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"9067:3:43"},"nodeType":"YulFunctionCall","src":"9067:22:43"},"variableNames":[{"name":"denominator","nodeType":"YulIdentifier","src":"9052:11:43"}]},{"nodeType":"YulAssignment","src":"9153:21:43","value":{"arguments":[{"name":"low","nodeType":"YulIdentifier","src":"9164:3:43"},{"name":"twos","nodeType":"YulIdentifier","src":"9169:4:43"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"9160:3:43"},"nodeType":"YulFunctionCall","src":"9160:14:43"},"variableNames":[{"name":"low","nodeType":"YulIdentifier","src":"9153:3:43"}]},{"nodeType":"YulAssignment","src":"9293:39:43","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9313:1:43","type":"","value":"0"},{"name":"twos","nodeType":"YulIdentifier","src":"9316:4:43"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"9309:3:43"},"nodeType":"YulFunctionCall","src":"9309:12:43"},{"name":"twos","nodeType":"YulIdentifier","src":"9323:4:43"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"9305:3:43"},"nodeType":"YulFunctionCall","src":"9305:23:43"},{"kind":"number","nodeType":"YulLiteral","src":"9330:1:43","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9301:3:43"},"nodeType":"YulFunctionCall","src":"9301:31:43"},"variableNames":[{"name":"twos","nodeType":"YulIdentifier","src":"9293:4:43"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":10216,"isOffset":false,"isSlot":false,"src":"9052:11:43","valueSize":1},{"declaration":10216,"isOffset":false,"isSlot":false,"src":"9071:11:43","valueSize":1},{"declaration":10224,"isOffset":false,"isSlot":false,"src":"9153:3:43","valueSize":1},{"declaration":10224,"isOffset":false,"isSlot":false,"src":"9164:3:43","valueSize":1},{"declaration":10263,"isOffset":false,"isSlot":false,"src":"9084:4:43","valueSize":1},{"declaration":10263,"isOffset":false,"isSlot":false,"src":"9169:4:43","valueSize":1},{"declaration":10263,"isOffset":false,"isSlot":false,"src":"9293:4:43","valueSize":1},{"declaration":10263,"isOffset":false,"isSlot":false,"src":"9316:4:43","valueSize":1},{"declaration":10263,"isOffset":false,"isSlot":false,"src":"9323:4:43","valueSize":1}],"flags":["memory-safe"],"id":10271,"nodeType":"InlineAssembly","src":"8962:384:43"},{"expression":{"id":10276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10272,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10224,"src":"9409:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10273,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10222,"src":"9416:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":10274,"name":"twos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10263,"src":"9423:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9416:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9409:18:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10277,"nodeType":"ExpressionStatement","src":"9409:18:43"},{"assignments":[10279],"declarations":[{"constant":false,"id":10279,"mutability":"mutable","name":"inverse","nameLocation":"9770:7:43","nodeType":"VariableDeclaration","scope":10343,"src":"9762:15:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10278,"name":"uint256","nodeType":"ElementaryTypeName","src":"9762:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10286,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10285,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":10280,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9781:1:43","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":10281,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"9785:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9781:15:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10283,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9780:17:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"hexValue":"32","id":10284,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9800:1:43","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"9780:21:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9762:39:43"},{"expression":{"id":10293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10287,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10279,"src":"10018:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":10288,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10029:1:43","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10291,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10289,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"10033:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":10290,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10279,"src":"10047:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10033:21:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10029:25:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10018:36:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10294,"nodeType":"ExpressionStatement","src":"10018:36:43"},{"expression":{"id":10301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10295,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10279,"src":"10088:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":10296,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10099:1:43","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10297,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"10103:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":10298,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10279,"src":"10117:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10103:21:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10099:25:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10088:36:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10302,"nodeType":"ExpressionStatement","src":"10088:36:43"},{"expression":{"id":10309,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10303,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10279,"src":"10160:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10308,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":10304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10171:1:43","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10305,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"10175:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":10306,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10279,"src":"10189:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10175:21:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10171:25:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10160:36:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10310,"nodeType":"ExpressionStatement","src":"10160:36:43"},{"expression":{"id":10317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10311,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10279,"src":"10231:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":10312,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10242:1:43","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10313,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"10246:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":10314,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10279,"src":"10260:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10246:21:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10242:25:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10231:36:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10318,"nodeType":"ExpressionStatement","src":"10231:36:43"},{"expression":{"id":10325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10319,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10279,"src":"10304:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":10320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10315:1:43","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10321,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"10319:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":10322,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10279,"src":"10333:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10319:21:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10315:25:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10304:36:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10326,"nodeType":"ExpressionStatement","src":"10304:36:43"},{"expression":{"id":10333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10327,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10279,"src":"10378:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":10328,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10389:1:43","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10329,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10216,"src":"10393:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":10330,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10279,"src":"10407:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10393:21:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10389:25:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10378:36:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10334,"nodeType":"ExpressionStatement","src":"10378:36:43"},{"expression":{"id":10339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10335,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10219,"src":"10859:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10338,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10336,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10224,"src":"10868:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":10337,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10279,"src":"10874:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10868:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10859:22:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10340,"nodeType":"ExpressionStatement","src":"10859:22:43"},{"expression":{"id":10341,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10219,"src":"10902:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10220,"id":10342,"nodeType":"Return","src":"10895:13:43"}]}]},"documentation":{"id":10210,"nodeType":"StructuredDocumentation","src":"6925:312:43","text":" @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or\n denominator == 0.\n Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by\n Uniswap Labs also under MIT license."},"id":10345,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"7251:6:43","nodeType":"FunctionDefinition","parameters":{"id":10217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10212,"mutability":"mutable","name":"x","nameLocation":"7266:1:43","nodeType":"VariableDeclaration","scope":10345,"src":"7258:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10211,"name":"uint256","nodeType":"ElementaryTypeName","src":"7258:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10214,"mutability":"mutable","name":"y","nameLocation":"7277:1:43","nodeType":"VariableDeclaration","scope":10345,"src":"7269:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10213,"name":"uint256","nodeType":"ElementaryTypeName","src":"7269:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10216,"mutability":"mutable","name":"denominator","nameLocation":"7288:11:43","nodeType":"VariableDeclaration","scope":10345,"src":"7280:19:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10215,"name":"uint256","nodeType":"ElementaryTypeName","src":"7280:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7257:43:43"},"returnParameters":{"id":10220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10219,"mutability":"mutable","name":"result","nameLocation":"7332:6:43","nodeType":"VariableDeclaration","scope":10345,"src":"7324:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10218,"name":"uint256","nodeType":"ElementaryTypeName","src":"7324:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7323:16:43"},"scope":11439,"src":"7242:3683:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10381,"nodeType":"Block","src":"11164:128:43","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10361,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10348,"src":"11188:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10362,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10350,"src":"11191:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10363,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10352,"src":"11194:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10360,"name":"mulDiv","nodeType":"Identifier","overloadedDeclarations":[10345,10382],"referencedDeclaration":10345,"src":"11181:6:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":10364,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11181:25:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10368,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10355,"src":"11242:8:43","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}],"id":10367,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11438,"src":"11225:16:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$9830_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":10369,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11225:26:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10371,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10348,"src":"11262:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10372,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10350,"src":"11265:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10373,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10352,"src":"11268:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10370,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967280,"src":"11255:6:43","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":10374,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11255:25:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":10375,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11283:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11255:29:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"11225:59:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10365,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"11209:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":10366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11218:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"11209:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10378,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11209:76:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11181:104:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10359,"id":10380,"nodeType":"Return","src":"11174:111:43"}]},"documentation":{"id":10346,"nodeType":"StructuredDocumentation","src":"10931:118:43","text":" @dev Calculates x * y / denominator with full precision, following the selected rounding direction."},"id":10382,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"11063:6:43","nodeType":"FunctionDefinition","parameters":{"id":10356,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10348,"mutability":"mutable","name":"x","nameLocation":"11078:1:43","nodeType":"VariableDeclaration","scope":10382,"src":"11070:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10347,"name":"uint256","nodeType":"ElementaryTypeName","src":"11070:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10350,"mutability":"mutable","name":"y","nameLocation":"11089:1:43","nodeType":"VariableDeclaration","scope":10382,"src":"11081:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10349,"name":"uint256","nodeType":"ElementaryTypeName","src":"11081:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10352,"mutability":"mutable","name":"denominator","nameLocation":"11100:11:43","nodeType":"VariableDeclaration","scope":10382,"src":"11092:19:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10351,"name":"uint256","nodeType":"ElementaryTypeName","src":"11092:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10355,"mutability":"mutable","name":"rounding","nameLocation":"11122:8:43","nodeType":"VariableDeclaration","scope":10382,"src":"11113:17:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"},"typeName":{"id":10354,"nodeType":"UserDefinedTypeName","pathNode":{"id":10353,"name":"Rounding","nameLocations":["11113:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":9830,"src":"11113:8:43"},"referencedDeclaration":9830,"src":"11113:8:43","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"11069:62:43"},"returnParameters":{"id":10359,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10358,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10382,"src":"11155:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10357,"name":"uint256","nodeType":"ElementaryTypeName","src":"11155:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11154:9:43"},"scope":11439,"src":"11054:238:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10431,"nodeType":"Block","src":"11500:245:43","statements":[{"id":10430,"nodeType":"UncheckedBlock","src":"11510:229:43","statements":[{"assignments":[10395,10397],"declarations":[{"constant":false,"id":10395,"mutability":"mutable","name":"high","nameLocation":"11543:4:43","nodeType":"VariableDeclaration","scope":10430,"src":"11535:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10394,"name":"uint256","nodeType":"ElementaryTypeName","src":"11535:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10397,"mutability":"mutable","name":"low","nameLocation":"11557:3:43","nodeType":"VariableDeclaration","scope":10430,"src":"11549:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10396,"name":"uint256","nodeType":"ElementaryTypeName","src":"11549:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10402,"initialValue":{"arguments":[{"id":10399,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10385,"src":"11571:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10400,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10387,"src":"11574:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10398,"name":"mul512","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9858,"src":"11564:6:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256,uint256)"}},"id":10401,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11564:12:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"11534:42:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10407,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10403,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10395,"src":"11594:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10404,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11602:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":10405,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10389,"src":"11607:1:43","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11602:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11594:14:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10416,"nodeType":"IfStatement","src":"11590:86:43","trueBody":{"id":10415,"nodeType":"Block","src":"11610:66:43","statements":[{"expression":{"arguments":[{"expression":{"id":10411,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"11640:5:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":10412,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11646:14:43","memberName":"UNDER_OVERFLOW","nodeType":"MemberAccess","referencedDeclaration":7233,"src":"11640:20:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":10408,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"11628:5:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":10410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11634:5:43","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":7269,"src":"11628:11:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":10413,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11628:33:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10414,"nodeType":"ExpressionStatement","src":"11628:33:43"}]}},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10428,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10417,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10395,"src":"11697:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint16","typeString":"uint16"},"id":10420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"323536","id":10418,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11706:3:43","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"value":"256"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":10419,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10389,"src":"11712:1:43","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11706:7:43","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"id":10421,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11705:9:43","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"11697:17:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10423,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11696:19:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10424,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10397,"src":"11719:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":10425,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10389,"src":"11726:1:43","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11719:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10427,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11718:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11696:32:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10393,"id":10429,"nodeType":"Return","src":"11689:39:43"}]}]},"documentation":{"id":10383,"nodeType":"StructuredDocumentation","src":"11298:111:43","text":" @dev Calculates floor(x * y >> n) with full precision. Throws if result overflows a uint256."},"id":10432,"implemented":true,"kind":"function","modifiers":[],"name":"mulShr","nameLocation":"11423:6:43","nodeType":"FunctionDefinition","parameters":{"id":10390,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10385,"mutability":"mutable","name":"x","nameLocation":"11438:1:43","nodeType":"VariableDeclaration","scope":10432,"src":"11430:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10384,"name":"uint256","nodeType":"ElementaryTypeName","src":"11430:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10387,"mutability":"mutable","name":"y","nameLocation":"11449:1:43","nodeType":"VariableDeclaration","scope":10432,"src":"11441:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10386,"name":"uint256","nodeType":"ElementaryTypeName","src":"11441:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10389,"mutability":"mutable","name":"n","nameLocation":"11458:1:43","nodeType":"VariableDeclaration","scope":10432,"src":"11452:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10388,"name":"uint8","nodeType":"ElementaryTypeName","src":"11452:5:43","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"11429:31:43"},"returnParameters":{"id":10393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10392,"mutability":"mutable","name":"result","nameLocation":"11492:6:43","nodeType":"VariableDeclaration","scope":10432,"src":"11484:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10391,"name":"uint256","nodeType":"ElementaryTypeName","src":"11484:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11483:16:43"},"scope":11439,"src":"11414:331:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10470,"nodeType":"Block","src":"11963:113:43","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10448,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10435,"src":"11987:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10449,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10437,"src":"11990:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10450,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10439,"src":"11993:1:43","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":10447,"name":"mulShr","nodeType":"Identifier","overloadedDeclarations":[10432,10471],"referencedDeclaration":10432,"src":"11980:6:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint8_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint8) pure returns (uint256)"}},"id":10451,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11980:15:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10466,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10455,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10442,"src":"12031:8:43","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}],"id":10454,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11438,"src":"12014:16:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$9830_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":10456,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12014:26:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10465,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10458,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10435,"src":"12051:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10459,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10437,"src":"12054:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10460,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12057:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":10461,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10439,"src":"12062:1:43","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"12057:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10457,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967280,"src":"12044:6:43","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":10463,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12044:20:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":10464,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12067:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12044:24:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12014:54:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10452,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"11998:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":10453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12007:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"11998:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10467,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11998:71:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11980:89:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10446,"id":10469,"nodeType":"Return","src":"11973:96:43"}]},"documentation":{"id":10433,"nodeType":"StructuredDocumentation","src":"11751:109:43","text":" @dev Calculates x * y >> n with full precision, following the selected rounding direction."},"id":10471,"implemented":true,"kind":"function","modifiers":[],"name":"mulShr","nameLocation":"11874:6:43","nodeType":"FunctionDefinition","parameters":{"id":10443,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10435,"mutability":"mutable","name":"x","nameLocation":"11889:1:43","nodeType":"VariableDeclaration","scope":10471,"src":"11881:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10434,"name":"uint256","nodeType":"ElementaryTypeName","src":"11881:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10437,"mutability":"mutable","name":"y","nameLocation":"11900:1:43","nodeType":"VariableDeclaration","scope":10471,"src":"11892:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10436,"name":"uint256","nodeType":"ElementaryTypeName","src":"11892:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10439,"mutability":"mutable","name":"n","nameLocation":"11909:1:43","nodeType":"VariableDeclaration","scope":10471,"src":"11903:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10438,"name":"uint8","nodeType":"ElementaryTypeName","src":"11903:5:43","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":10442,"mutability":"mutable","name":"rounding","nameLocation":"11921:8:43","nodeType":"VariableDeclaration","scope":10471,"src":"11912:17:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"},"typeName":{"id":10441,"nodeType":"UserDefinedTypeName","pathNode":{"id":10440,"name":"Rounding","nameLocations":["11912:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":9830,"src":"11912:8:43"},"referencedDeclaration":9830,"src":"11912:8:43","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"11880:50:43"},"returnParameters":{"id":10446,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10445,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10471,"src":"11954:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10444,"name":"uint256","nodeType":"ElementaryTypeName","src":"11954:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11953:9:43"},"scope":11439,"src":"11865:211:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10567,"nodeType":"Block","src":"12710:1849:43","statements":[{"id":10566,"nodeType":"UncheckedBlock","src":"12720:1833:43","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10483,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10481,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10476,"src":"12748:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":10482,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12753:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12748:6:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10486,"nodeType":"IfStatement","src":"12744:20:43","trueBody":{"expression":{"hexValue":"30","id":10484,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12763:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":10480,"id":10485,"nodeType":"Return","src":"12756:8:43"}},{"assignments":[10488],"declarations":[{"constant":false,"id":10488,"mutability":"mutable","name":"remainder","nameLocation":"13243:9:43","nodeType":"VariableDeclaration","scope":10566,"src":"13235:17:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10487,"name":"uint256","nodeType":"ElementaryTypeName","src":"13235:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10492,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10489,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10474,"src":"13255:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"id":10490,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10476,"src":"13259:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13255:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13235:25:43"},{"assignments":[10494],"declarations":[{"constant":false,"id":10494,"mutability":"mutable","name":"gcd","nameLocation":"13282:3:43","nodeType":"VariableDeclaration","scope":10566,"src":"13274:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10493,"name":"uint256","nodeType":"ElementaryTypeName","src":"13274:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10496,"initialValue":{"id":10495,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10476,"src":"13288:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13274:15:43"},{"assignments":[10498],"declarations":[{"constant":false,"id":10498,"mutability":"mutable","name":"x","nameLocation":"13432:1:43","nodeType":"VariableDeclaration","scope":10566,"src":"13425:8:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":10497,"name":"int256","nodeType":"ElementaryTypeName","src":"13425:6:43","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":10500,"initialValue":{"hexValue":"30","id":10499,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13436:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"13425:12:43"},{"assignments":[10502],"declarations":[{"constant":false,"id":10502,"mutability":"mutable","name":"y","nameLocation":"13458:1:43","nodeType":"VariableDeclaration","scope":10566,"src":"13451:8:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":10501,"name":"int256","nodeType":"ElementaryTypeName","src":"13451:6:43","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":10504,"initialValue":{"hexValue":"31","id":10503,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13462:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"13451:12:43"},{"body":{"id":10541,"nodeType":"Block","src":"13501:882:43","statements":[{"assignments":[10509],"declarations":[{"constant":false,"id":10509,"mutability":"mutable","name":"quotient","nameLocation":"13527:8:43","nodeType":"VariableDeclaration","scope":10541,"src":"13519:16:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10508,"name":"uint256","nodeType":"ElementaryTypeName","src":"13519:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10513,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10510,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10494,"src":"13538:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10511,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10488,"src":"13544:9:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13538:15:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13519:34:43"},{"expression":{"id":10524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":10514,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10494,"src":"13573:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10515,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10488,"src":"13578:9:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10516,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"13572:16:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":10517,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10488,"src":"13678:9:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10518,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10494,"src":"13923:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10519,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10488,"src":"13929:9:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":10520,"name":"quotient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10509,"src":"13941:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13929:20:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13923:26:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10523,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13591:376:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"src":"13572:395:43","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10525,"nodeType":"ExpressionStatement","src":"13572:395:43"},{"expression":{"id":10539,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":10526,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10498,"src":"13987:1:43","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":10527,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10502,"src":"13990:1:43","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":10528,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"13986:6:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_int256_$_t_int256_$","typeString":"tuple(int256,int256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":10529,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10502,"src":"14072:1:43","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":10537,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10530,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10498,"src":"14326:1:43","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":10536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10531,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10502,"src":"14330:1:43","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":10534,"name":"quotient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10509,"src":"14341:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10533,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14334:6:43","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":10532,"name":"int256","nodeType":"ElementaryTypeName","src":"14334:6:43","typeDescriptions":{}}},"id":10535,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14334:16:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"14330:20:43","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"14326:24:43","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":10538,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13995:373:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_int256_$_t_int256_$","typeString":"tuple(int256,int256)"}},"src":"13986:382:43","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10540,"nodeType":"ExpressionStatement","src":"13986:382:43"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10505,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10488,"src":"13485:9:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":10506,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13498:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13485:14:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10542,"nodeType":"WhileStatement","src":"13478:905:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10545,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10543,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10494,"src":"14401:3:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"31","id":10544,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14408:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"14401:8:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10548,"nodeType":"IfStatement","src":"14397:22:43","trueBody":{"expression":{"hexValue":"30","id":10546,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14418:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":10480,"id":10547,"nodeType":"Return","src":"14411:8:43"}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":10552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10550,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10498,"src":"14470:1:43","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":10551,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14474:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14470:5:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10559,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10553,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10476,"src":"14477:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":10557,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"14489:2:43","subExpression":{"id":10556,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10498,"src":"14490:1:43","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":10555,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14481:7:43","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":10554,"name":"uint256","nodeType":"ElementaryTypeName","src":"14481:7:43","typeDescriptions":{}}},"id":10558,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14481:11:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14477:15:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":10562,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10498,"src":"14502:1:43","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":10561,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14494:7:43","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":10560,"name":"uint256","nodeType":"ElementaryTypeName","src":"14494:7:43","typeDescriptions":{}}},"id":10563,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14494:10:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10549,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10107,"src":"14462:7:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":10564,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14462:43:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10480,"id":10565,"nodeType":"Return","src":"14455:50:43"}]}]},"documentation":{"id":10472,"nodeType":"StructuredDocumentation","src":"12082:553:43","text":" @dev Calculate the modular multiplicative inverse of a number in Z/nZ.\n If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0.\n If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.\n If the input value is not inversible, 0 is returned.\n NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the\n inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}."},"id":10568,"implemented":true,"kind":"function","modifiers":[],"name":"invMod","nameLocation":"12649:6:43","nodeType":"FunctionDefinition","parameters":{"id":10477,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10474,"mutability":"mutable","name":"a","nameLocation":"12664:1:43","nodeType":"VariableDeclaration","scope":10568,"src":"12656:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10473,"name":"uint256","nodeType":"ElementaryTypeName","src":"12656:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10476,"mutability":"mutable","name":"n","nameLocation":"12675:1:43","nodeType":"VariableDeclaration","scope":10568,"src":"12667:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10475,"name":"uint256","nodeType":"ElementaryTypeName","src":"12667:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12655:22:43"},"returnParameters":{"id":10480,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10479,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10568,"src":"12701:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10478,"name":"uint256","nodeType":"ElementaryTypeName","src":"12701:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12700:9:43"},"scope":11439,"src":"12640:1919:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10588,"nodeType":"Block","src":"15159:82:43","statements":[{"id":10587,"nodeType":"UncheckedBlock","src":"15169:66:43","statements":[{"expression":{"arguments":[{"id":10580,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10571,"src":"15212:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10581,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10573,"src":"15215:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"32","id":10582,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15219:1:43","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"15215:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10584,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10573,"src":"15222:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":10578,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11439,"src":"15200:4:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$11439_$","typeString":"type(library Math)"}},"id":10579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15205:6:43","memberName":"modExp","nodeType":"MemberAccess","referencedDeclaration":10625,"src":"15200:11:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) view returns (uint256)"}},"id":10585,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15200:24:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10577,"id":10586,"nodeType":"Return","src":"15193:31:43"}]}]},"documentation":{"id":10569,"nodeType":"StructuredDocumentation","src":"14565:514:43","text":" @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`.\n From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is\n prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that\n `a**(p-2)` is the modular multiplicative inverse of a in Fp.\n NOTE: this function does NOT check that `p` is a prime greater than `2`."},"id":10589,"implemented":true,"kind":"function","modifiers":[],"name":"invModPrime","nameLocation":"15093:11:43","nodeType":"FunctionDefinition","parameters":{"id":10574,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10571,"mutability":"mutable","name":"a","nameLocation":"15113:1:43","nodeType":"VariableDeclaration","scope":10589,"src":"15105:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10570,"name":"uint256","nodeType":"ElementaryTypeName","src":"15105:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10573,"mutability":"mutable","name":"p","nameLocation":"15124:1:43","nodeType":"VariableDeclaration","scope":10589,"src":"15116:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10572,"name":"uint256","nodeType":"ElementaryTypeName","src":"15116:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15104:22:43"},"returnParameters":{"id":10577,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10576,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10589,"src":"15150:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10575,"name":"uint256","nodeType":"ElementaryTypeName","src":"15150:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15149:9:43"},"scope":11439,"src":"15084:157:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":10624,"nodeType":"Block","src":"16011:174:43","statements":[{"assignments":[10602,10604],"declarations":[{"constant":false,"id":10602,"mutability":"mutable","name":"success","nameLocation":"16027:7:43","nodeType":"VariableDeclaration","scope":10624,"src":"16022:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10601,"name":"bool","nodeType":"ElementaryTypeName","src":"16022:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":10604,"mutability":"mutable","name":"result","nameLocation":"16044:6:43","nodeType":"VariableDeclaration","scope":10624,"src":"16036:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10603,"name":"uint256","nodeType":"ElementaryTypeName","src":"16036:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10610,"initialValue":{"arguments":[{"id":10606,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10592,"src":"16064:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10607,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10594,"src":"16067:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10608,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10596,"src":"16070:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10605,"name":"tryModExp","nodeType":"Identifier","overloadedDeclarations":[10649,10731],"referencedDeclaration":10649,"src":"16054:9:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (uint256,uint256,uint256) view returns (bool,uint256)"}},"id":10609,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16054:18:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"16021:51:43"},{"condition":{"id":10612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"16086:8:43","subExpression":{"id":10611,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10602,"src":"16087:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10621,"nodeType":"IfStatement","src":"16082:74:43","trueBody":{"id":10620,"nodeType":"Block","src":"16096:60:43","statements":[{"expression":{"arguments":[{"expression":{"id":10616,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"16122:5:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":10617,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16128:16:43","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":7237,"src":"16122:22:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":10613,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"16110:5:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":10615,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16116:5:43","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":7269,"src":"16110:11:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":10618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16110:35:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10619,"nodeType":"ExpressionStatement","src":"16110:35:43"}]}},{"expression":{"id":10622,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10604,"src":"16172:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10600,"id":10623,"nodeType":"Return","src":"16165:13:43"}]},"documentation":{"id":10590,"nodeType":"StructuredDocumentation","src":"15247:678:43","text":" @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)\n Requirements:\n - modulus can't be zero\n - underlying staticcall to precompile must succeed\n IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make\n sure the chain you're using it on supports the precompiled contract for modular exponentiation\n at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,\n the underlying function will succeed given the lack of a revert, but the result may be incorrectly\n interpreted as 0."},"id":10625,"implemented":true,"kind":"function","modifiers":[],"name":"modExp","nameLocation":"15939:6:43","nodeType":"FunctionDefinition","parameters":{"id":10597,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10592,"mutability":"mutable","name":"b","nameLocation":"15954:1:43","nodeType":"VariableDeclaration","scope":10625,"src":"15946:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10591,"name":"uint256","nodeType":"ElementaryTypeName","src":"15946:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10594,"mutability":"mutable","name":"e","nameLocation":"15965:1:43","nodeType":"VariableDeclaration","scope":10625,"src":"15957:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10593,"name":"uint256","nodeType":"ElementaryTypeName","src":"15957:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10596,"mutability":"mutable","name":"m","nameLocation":"15976:1:43","nodeType":"VariableDeclaration","scope":10625,"src":"15968:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10595,"name":"uint256","nodeType":"ElementaryTypeName","src":"15968:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15945:33:43"},"returnParameters":{"id":10600,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10599,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10625,"src":"16002:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10598,"name":"uint256","nodeType":"ElementaryTypeName","src":"16002:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16001:9:43"},"scope":11439,"src":"15930:255:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":10648,"nodeType":"Block","src":"17039:1493:43","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10641,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10639,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10632,"src":"17053:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":10640,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17058:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17053:6:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10646,"nodeType":"IfStatement","src":"17049:29:43","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":10642,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17069:5:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":10643,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17076:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":10644,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"17068:10:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":10638,"id":10645,"nodeType":"Return","src":"17061:17:43"}},{"AST":{"nodeType":"YulBlock","src":"17113:1413:43","statements":[{"nodeType":"YulVariableDeclaration","src":"17127:22:43","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"17144:4:43","type":"","value":"0x40"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"17138:5:43"},"nodeType":"YulFunctionCall","src":"17138:11:43"},"variables":[{"name":"ptr","nodeType":"YulTypedName","src":"17131:3:43","type":""}]},{"expression":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"18057:3:43"},{"kind":"number","nodeType":"YulLiteral","src":"18062:4:43","type":"","value":"0x20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18050:6:43"},"nodeType":"YulFunctionCall","src":"18050:17:43"},"nodeType":"YulExpressionStatement","src":"18050:17:43"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"18091:3:43"},{"kind":"number","nodeType":"YulLiteral","src":"18096:4:43","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18087:3:43"},"nodeType":"YulFunctionCall","src":"18087:14:43"},{"kind":"number","nodeType":"YulLiteral","src":"18103:4:43","type":"","value":"0x20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18080:6:43"},"nodeType":"YulFunctionCall","src":"18080:28:43"},"nodeType":"YulExpressionStatement","src":"18080:28:43"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"18132:3:43"},{"kind":"number","nodeType":"YulLiteral","src":"18137:4:43","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18128:3:43"},"nodeType":"YulFunctionCall","src":"18128:14:43"},{"kind":"number","nodeType":"YulLiteral","src":"18144:4:43","type":"","value":"0x20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18121:6:43"},"nodeType":"YulFunctionCall","src":"18121:28:43"},"nodeType":"YulExpressionStatement","src":"18121:28:43"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"18173:3:43"},{"kind":"number","nodeType":"YulLiteral","src":"18178:4:43","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18169:3:43"},"nodeType":"YulFunctionCall","src":"18169:14:43"},{"name":"b","nodeType":"YulIdentifier","src":"18185:1:43"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18162:6:43"},"nodeType":"YulFunctionCall","src":"18162:25:43"},"nodeType":"YulExpressionStatement","src":"18162:25:43"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"18211:3:43"},{"kind":"number","nodeType":"YulLiteral","src":"18216:4:43","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18207:3:43"},"nodeType":"YulFunctionCall","src":"18207:14:43"},{"name":"e","nodeType":"YulIdentifier","src":"18223:1:43"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18200:6:43"},"nodeType":"YulFunctionCall","src":"18200:25:43"},"nodeType":"YulExpressionStatement","src":"18200:25:43"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"18249:3:43"},{"kind":"number","nodeType":"YulLiteral","src":"18254:4:43","type":"","value":"0xa0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18245:3:43"},"nodeType":"YulFunctionCall","src":"18245:14:43"},{"name":"m","nodeType":"YulIdentifier","src":"18261:1:43"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18238:6:43"},"nodeType":"YulFunctionCall","src":"18238:25:43"},"nodeType":"YulExpressionStatement","src":"18238:25:43"},{"nodeType":"YulAssignment","src":"18425:57:43","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nodeType":"YulIdentifier","src":"18447:3:43"},"nodeType":"YulFunctionCall","src":"18447:5:43"},{"kind":"number","nodeType":"YulLiteral","src":"18454:4:43","type":"","value":"0x05"},{"name":"ptr","nodeType":"YulIdentifier","src":"18460:3:43"},{"kind":"number","nodeType":"YulLiteral","src":"18465:4:43","type":"","value":"0xc0"},{"kind":"number","nodeType":"YulLiteral","src":"18471:4:43","type":"","value":"0x00"},{"kind":"number","nodeType":"YulLiteral","src":"18477:4:43","type":"","value":"0x20"}],"functionName":{"name":"staticcall","nodeType":"YulIdentifier","src":"18436:10:43"},"nodeType":"YulFunctionCall","src":"18436:46:43"},"variableNames":[{"name":"success","nodeType":"YulIdentifier","src":"18425:7:43"}]},{"nodeType":"YulAssignment","src":"18495:21:43","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18511:4:43","type":"","value":"0x00"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"18505:5:43"},"nodeType":"YulFunctionCall","src":"18505:11:43"},"variableNames":[{"name":"result","nodeType":"YulIdentifier","src":"18495:6:43"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":10628,"isOffset":false,"isSlot":false,"src":"18185:1:43","valueSize":1},{"declaration":10630,"isOffset":false,"isSlot":false,"src":"18223:1:43","valueSize":1},{"declaration":10632,"isOffset":false,"isSlot":false,"src":"18261:1:43","valueSize":1},{"declaration":10637,"isOffset":false,"isSlot":false,"src":"18495:6:43","valueSize":1},{"declaration":10635,"isOffset":false,"isSlot":false,"src":"18425:7:43","valueSize":1}],"flags":["memory-safe"],"id":10647,"nodeType":"InlineAssembly","src":"17088:1438:43"}]},"documentation":{"id":10626,"nodeType":"StructuredDocumentation","src":"16191:738:43","text":" @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).\n It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying\n to operate modulo 0 or if the underlying precompile reverted.\n IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain\n you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in\n https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack\n of a revert, but the result may be incorrectly interpreted as 0."},"id":10649,"implemented":true,"kind":"function","modifiers":[],"name":"tryModExp","nameLocation":"16943:9:43","nodeType":"FunctionDefinition","parameters":{"id":10633,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10628,"mutability":"mutable","name":"b","nameLocation":"16961:1:43","nodeType":"VariableDeclaration","scope":10649,"src":"16953:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10627,"name":"uint256","nodeType":"ElementaryTypeName","src":"16953:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10630,"mutability":"mutable","name":"e","nameLocation":"16972:1:43","nodeType":"VariableDeclaration","scope":10649,"src":"16964:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10629,"name":"uint256","nodeType":"ElementaryTypeName","src":"16964:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10632,"mutability":"mutable","name":"m","nameLocation":"16983:1:43","nodeType":"VariableDeclaration","scope":10649,"src":"16975:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10631,"name":"uint256","nodeType":"ElementaryTypeName","src":"16975:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16952:33:43"},"returnParameters":{"id":10638,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10635,"mutability":"mutable","name":"success","nameLocation":"17014:7:43","nodeType":"VariableDeclaration","scope":10649,"src":"17009:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10634,"name":"bool","nodeType":"ElementaryTypeName","src":"17009:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":10637,"mutability":"mutable","name":"result","nameLocation":"17031:6:43","nodeType":"VariableDeclaration","scope":10649,"src":"17023:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10636,"name":"uint256","nodeType":"ElementaryTypeName","src":"17023:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17008:30:43"},"scope":11439,"src":"16934:1598:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":10684,"nodeType":"Block","src":"18729:179:43","statements":[{"assignments":[10662,10664],"declarations":[{"constant":false,"id":10662,"mutability":"mutable","name":"success","nameLocation":"18745:7:43","nodeType":"VariableDeclaration","scope":10684,"src":"18740:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10661,"name":"bool","nodeType":"ElementaryTypeName","src":"18740:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":10664,"mutability":"mutable","name":"result","nameLocation":"18767:6:43","nodeType":"VariableDeclaration","scope":10684,"src":"18754:19:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10663,"name":"bytes","nodeType":"ElementaryTypeName","src":"18754:5:43","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":10670,"initialValue":{"arguments":[{"id":10666,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10652,"src":"18787:1:43","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10667,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10654,"src":"18790:1:43","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10668,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10656,"src":"18793:1:43","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":10665,"name":"tryModExp","nodeType":"Identifier","overloadedDeclarations":[10649,10731],"referencedDeclaration":10731,"src":"18777:9:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes_memory_ptr_$_t_bytes_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory,bytes memory,bytes memory) view returns (bool,bytes memory)"}},"id":10669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18777:18:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"18739:56:43"},{"condition":{"id":10672,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"18809:8:43","subExpression":{"id":10671,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10662,"src":"18810:7:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10681,"nodeType":"IfStatement","src":"18805:74:43","trueBody":{"id":10680,"nodeType":"Block","src":"18819:60:43","statements":[{"expression":{"arguments":[{"expression":{"id":10676,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"18845:5:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":10677,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18851:16:43","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":7237,"src":"18845:22:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":10673,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"18833:5:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":10675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18839:5:43","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":7269,"src":"18833:11:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":10678,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18833:35:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10679,"nodeType":"ExpressionStatement","src":"18833:35:43"}]}},{"expression":{"id":10682,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10664,"src":"18895:6:43","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":10660,"id":10683,"nodeType":"Return","src":"18888:13:43"}]},"documentation":{"id":10650,"nodeType":"StructuredDocumentation","src":"18538:85:43","text":" @dev Variant of {modExp} that supports inputs of arbitrary length."},"id":10685,"implemented":true,"kind":"function","modifiers":[],"name":"modExp","nameLocation":"18637:6:43","nodeType":"FunctionDefinition","parameters":{"id":10657,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10652,"mutability":"mutable","name":"b","nameLocation":"18657:1:43","nodeType":"VariableDeclaration","scope":10685,"src":"18644:14:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10651,"name":"bytes","nodeType":"ElementaryTypeName","src":"18644:5:43","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10654,"mutability":"mutable","name":"e","nameLocation":"18673:1:43","nodeType":"VariableDeclaration","scope":10685,"src":"18660:14:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10653,"name":"bytes","nodeType":"ElementaryTypeName","src":"18660:5:43","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10656,"mutability":"mutable","name":"m","nameLocation":"18689:1:43","nodeType":"VariableDeclaration","scope":10685,"src":"18676:14:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10655,"name":"bytes","nodeType":"ElementaryTypeName","src":"18676:5:43","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"18643:48:43"},"returnParameters":{"id":10660,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10659,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10685,"src":"18715:12:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10658,"name":"bytes","nodeType":"ElementaryTypeName","src":"18715:5:43","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"18714:14:43"},"scope":11439,"src":"18628:280:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":10730,"nodeType":"Block","src":"19162:771:43","statements":[{"condition":{"arguments":[{"id":10700,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10692,"src":"19187:1:43","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":10699,"name":"_zeroBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10764,"src":"19176:10:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (bytes memory) pure returns (bool)"}},"id":10701,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19176:13:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10709,"nodeType":"IfStatement","src":"19172:47:43","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":10702,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"19199:5:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":10705,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19216:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10704,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"19206:9:43","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":10703,"name":"bytes","nodeType":"ElementaryTypeName","src":"19210:5:43","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":10706,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19206:12:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":10707,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19198:21:43","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"functionReturnParameters":10698,"id":10708,"nodeType":"Return","src":"19191:28:43"}},{"assignments":[10711],"declarations":[{"constant":false,"id":10711,"mutability":"mutable","name":"mLen","nameLocation":"19238:4:43","nodeType":"VariableDeclaration","scope":10730,"src":"19230:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10710,"name":"uint256","nodeType":"ElementaryTypeName","src":"19230:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10714,"initialValue":{"expression":{"id":10712,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10692,"src":"19245:1:43","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10713,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19247:6:43","memberName":"length","nodeType":"MemberAccess","src":"19245:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"19230:23:43"},{"expression":{"id":10727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10715,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10697,"src":"19335:6:43","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":10718,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10688,"src":"19361:1:43","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19363:6:43","memberName":"length","nodeType":"MemberAccess","src":"19361:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":10720,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10690,"src":"19371:1:43","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10721,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19373:6:43","memberName":"length","nodeType":"MemberAccess","src":"19371:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10722,"name":"mLen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10711,"src":"19381:4:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10723,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10688,"src":"19387:1:43","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10724,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10690,"src":"19390:1:43","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10725,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10692,"src":"19393:1:43","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":10716,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967295,"src":"19344:3:43","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":10717,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19348:12:43","memberName":"encodePacked","nodeType":"MemberAccess","src":"19344:16:43","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":10726,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19344:51:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"19335:60:43","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10728,"nodeType":"ExpressionStatement","src":"19335:60:43"},{"AST":{"nodeType":"YulBlock","src":"19431:496:43","statements":[{"nodeType":"YulVariableDeclaration","src":"19445:32:43","value":{"arguments":[{"name":"result","nodeType":"YulIdentifier","src":"19464:6:43"},{"kind":"number","nodeType":"YulLiteral","src":"19472:4:43","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19460:3:43"},"nodeType":"YulFunctionCall","src":"19460:17:43"},"variables":[{"name":"dataPtr","nodeType":"YulTypedName","src":"19449:7:43","type":""}]},{"nodeType":"YulAssignment","src":"19567:73:43","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nodeType":"YulIdentifier","src":"19589:3:43"},"nodeType":"YulFunctionCall","src":"19589:5:43"},{"kind":"number","nodeType":"YulLiteral","src":"19596:4:43","type":"","value":"0x05"},{"name":"dataPtr","nodeType":"YulIdentifier","src":"19602:7:43"},{"arguments":[{"name":"result","nodeType":"YulIdentifier","src":"19617:6:43"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"19611:5:43"},"nodeType":"YulFunctionCall","src":"19611:13:43"},{"name":"dataPtr","nodeType":"YulIdentifier","src":"19626:7:43"},{"name":"mLen","nodeType":"YulIdentifier","src":"19635:4:43"}],"functionName":{"name":"staticcall","nodeType":"YulIdentifier","src":"19578:10:43"},"nodeType":"YulFunctionCall","src":"19578:62:43"},"variableNames":[{"name":"success","nodeType":"YulIdentifier","src":"19567:7:43"}]},{"expression":{"arguments":[{"name":"result","nodeType":"YulIdentifier","src":"19796:6:43"},{"name":"mLen","nodeType":"YulIdentifier","src":"19804:4:43"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19789:6:43"},"nodeType":"YulFunctionCall","src":"19789:20:43"},"nodeType":"YulExpressionStatement","src":"19789:20:43"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19892:4:43","type":"","value":"0x40"},{"arguments":[{"name":"dataPtr","nodeType":"YulIdentifier","src":"19902:7:43"},{"name":"mLen","nodeType":"YulIdentifier","src":"19911:4:43"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19898:3:43"},"nodeType":"YulFunctionCall","src":"19898:18:43"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19885:6:43"},"nodeType":"YulFunctionCall","src":"19885:32:43"},"nodeType":"YulExpressionStatement","src":"19885:32:43"}]},"evmVersion":"paris","externalReferences":[{"declaration":10711,"isOffset":false,"isSlot":false,"src":"19635:4:43","valueSize":1},{"declaration":10711,"isOffset":false,"isSlot":false,"src":"19804:4:43","valueSize":1},{"declaration":10711,"isOffset":false,"isSlot":false,"src":"19911:4:43","valueSize":1},{"declaration":10697,"isOffset":false,"isSlot":false,"src":"19464:6:43","valueSize":1},{"declaration":10697,"isOffset":false,"isSlot":false,"src":"19617:6:43","valueSize":1},{"declaration":10697,"isOffset":false,"isSlot":false,"src":"19796:6:43","valueSize":1},{"declaration":10695,"isOffset":false,"isSlot":false,"src":"19567:7:43","valueSize":1}],"flags":["memory-safe"],"id":10729,"nodeType":"InlineAssembly","src":"19406:521:43"}]},"documentation":{"id":10686,"nodeType":"StructuredDocumentation","src":"18914:88:43","text":" @dev Variant of {tryModExp} that supports inputs of arbitrary length."},"id":10731,"implemented":true,"kind":"function","modifiers":[],"name":"tryModExp","nameLocation":"19016:9:43","nodeType":"FunctionDefinition","parameters":{"id":10693,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10688,"mutability":"mutable","name":"b","nameLocation":"19048:1:43","nodeType":"VariableDeclaration","scope":10731,"src":"19035:14:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10687,"name":"bytes","nodeType":"ElementaryTypeName","src":"19035:5:43","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10690,"mutability":"mutable","name":"e","nameLocation":"19072:1:43","nodeType":"VariableDeclaration","scope":10731,"src":"19059:14:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10689,"name":"bytes","nodeType":"ElementaryTypeName","src":"19059:5:43","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10692,"mutability":"mutable","name":"m","nameLocation":"19096:1:43","nodeType":"VariableDeclaration","scope":10731,"src":"19083:14:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10691,"name":"bytes","nodeType":"ElementaryTypeName","src":"19083:5:43","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"19025:78:43"},"returnParameters":{"id":10698,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10695,"mutability":"mutable","name":"success","nameLocation":"19132:7:43","nodeType":"VariableDeclaration","scope":10731,"src":"19127:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10694,"name":"bool","nodeType":"ElementaryTypeName","src":"19127:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":10697,"mutability":"mutable","name":"result","nameLocation":"19154:6:43","nodeType":"VariableDeclaration","scope":10731,"src":"19141:19:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10696,"name":"bytes","nodeType":"ElementaryTypeName","src":"19141:5:43","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"19126:35:43"},"scope":11439,"src":"19007:926:43","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":10763,"nodeType":"Block","src":"20088:176:43","statements":[{"body":{"id":10759,"nodeType":"Block","src":"20145:92:43","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":10754,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":10750,"name":"byteArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10734,"src":"20163:9:43","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10752,"indexExpression":{"id":10751,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10740,"src":"20173:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20163:12:43","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":10753,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20179:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20163:17:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10758,"nodeType":"IfStatement","src":"20159:68:43","trueBody":{"id":10757,"nodeType":"Block","src":"20182:45:43","statements":[{"expression":{"hexValue":"66616c7365","id":10755,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"20207:5:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":10738,"id":10756,"nodeType":"Return","src":"20200:12:43"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10743,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10740,"src":"20118:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":10744,"name":"byteArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10734,"src":"20122:9:43","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20132:6:43","memberName":"length","nodeType":"MemberAccess","src":"20122:16:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20118:20:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10760,"initializationExpression":{"assignments":[10740],"declarations":[{"constant":false,"id":10740,"mutability":"mutable","name":"i","nameLocation":"20111:1:43","nodeType":"VariableDeclaration","scope":10760,"src":"20103:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10739,"name":"uint256","nodeType":"ElementaryTypeName","src":"20103:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10742,"initialValue":{"hexValue":"30","id":10741,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20115:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"20103:13:43"},"loopExpression":{"expression":{"id":10748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"20140:3:43","subExpression":{"id":10747,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10740,"src":"20142:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10749,"nodeType":"ExpressionStatement","src":"20140:3:43"},"nodeType":"ForStatement","src":"20098:139:43"},{"expression":{"hexValue":"74727565","id":10761,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"20253:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":10738,"id":10762,"nodeType":"Return","src":"20246:11:43"}]},"documentation":{"id":10732,"nodeType":"StructuredDocumentation","src":"19939:72:43","text":" @dev Returns whether the provided byte array is zero."},"id":10764,"implemented":true,"kind":"function","modifiers":[],"name":"_zeroBytes","nameLocation":"20025:10:43","nodeType":"FunctionDefinition","parameters":{"id":10735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10734,"mutability":"mutable","name":"byteArray","nameLocation":"20049:9:43","nodeType":"VariableDeclaration","scope":10764,"src":"20036:22:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10733,"name":"bytes","nodeType":"ElementaryTypeName","src":"20036:5:43","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"20035:24:43"},"returnParameters":{"id":10738,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10737,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10764,"src":"20082:4:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10736,"name":"bool","nodeType":"ElementaryTypeName","src":"20082:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"20081:6:43"},"scope":11439,"src":"20016:248:43","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":10982,"nodeType":"Block","src":"20624:5124:43","statements":[{"id":10981,"nodeType":"UncheckedBlock","src":"20634:5108:43","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10772,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10767,"src":"20728:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"31","id":10773,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20733:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"20728:6:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10778,"nodeType":"IfStatement","src":"20724:53:43","trueBody":{"id":10777,"nodeType":"Block","src":"20736:41:43","statements":[{"expression":{"id":10775,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10767,"src":"20761:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10771,"id":10776,"nodeType":"Return","src":"20754:8:43"}]}},{"assignments":[10780],"declarations":[{"constant":false,"id":10780,"mutability":"mutable","name":"aa","nameLocation":"21712:2:43","nodeType":"VariableDeclaration","scope":10981,"src":"21704:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10779,"name":"uint256","nodeType":"ElementaryTypeName","src":"21704:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10782,"initialValue":{"id":10781,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10767,"src":"21717:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"21704:14:43"},{"assignments":[10784],"declarations":[{"constant":false,"id":10784,"mutability":"mutable","name":"xn","nameLocation":"21740:2:43","nodeType":"VariableDeclaration","scope":10981,"src":"21732:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10783,"name":"uint256","nodeType":"ElementaryTypeName","src":"21732:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10786,"initialValue":{"hexValue":"31","id":10785,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21745:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"21732:14:43"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10792,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10787,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10780,"src":"21765:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"},"id":10790,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10788,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21772:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313238","id":10789,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21777:3:43","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"21772:8:43","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}}],"id":10791,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"21771:10:43","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}},"src":"21765:16:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10802,"nodeType":"IfStatement","src":"21761:92:43","trueBody":{"id":10801,"nodeType":"Block","src":"21783:70:43","statements":[{"expression":{"id":10795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10793,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10780,"src":"21801:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"313238","id":10794,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21808:3:43","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"21801:10:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10796,"nodeType":"ExpressionStatement","src":"21801:10:43"},{"expression":{"id":10799,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10797,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"21829:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3634","id":10798,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21836:2:43","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"21829:9:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10800,"nodeType":"ExpressionStatement","src":"21829:9:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10803,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10780,"src":"21870:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"},"id":10806,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10804,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21877:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":10805,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21882:2:43","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"21877:7:43","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}}],"id":10807,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"21876:9:43","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}},"src":"21870:15:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10818,"nodeType":"IfStatement","src":"21866:90:43","trueBody":{"id":10817,"nodeType":"Block","src":"21887:69:43","statements":[{"expression":{"id":10811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10809,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10780,"src":"21905:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3634","id":10810,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21912:2:43","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"21905:9:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10812,"nodeType":"ExpressionStatement","src":"21905:9:43"},{"expression":{"id":10815,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10813,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"21932:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3332","id":10814,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21939:2:43","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"21932:9:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10816,"nodeType":"ExpressionStatement","src":"21932:9:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10824,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10819,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10780,"src":"21973:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"},"id":10822,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10820,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21980:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":10821,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21985:2:43","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"21980:7:43","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}}],"id":10823,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"21979:9:43","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}},"src":"21973:15:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10834,"nodeType":"IfStatement","src":"21969:90:43","trueBody":{"id":10833,"nodeType":"Block","src":"21990:69:43","statements":[{"expression":{"id":10827,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10825,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10780,"src":"22008:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3332","id":10826,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22015:2:43","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"22008:9:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10828,"nodeType":"ExpressionStatement","src":"22008:9:43"},{"expression":{"id":10831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10829,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"22035:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3136","id":10830,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22042:2:43","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"22035:9:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10832,"nodeType":"ExpressionStatement","src":"22035:9:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10840,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10835,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10780,"src":"22076:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"},"id":10838,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10836,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22083:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":10837,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22088:2:43","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"22083:7:43","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}}],"id":10839,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22082:9:43","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}},"src":"22076:15:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10850,"nodeType":"IfStatement","src":"22072:89:43","trueBody":{"id":10849,"nodeType":"Block","src":"22093:68:43","statements":[{"expression":{"id":10843,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10841,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10780,"src":"22111:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3136","id":10842,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22118:2:43","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"22111:9:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10844,"nodeType":"ExpressionStatement","src":"22111:9:43"},{"expression":{"id":10847,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10845,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"22138:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"38","id":10846,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22145:1:43","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"22138:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10848,"nodeType":"ExpressionStatement","src":"22138:8:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10851,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10780,"src":"22178:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":10854,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10852,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22185:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":10853,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22190:1:43","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"22185:6:43","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":10855,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22184:8:43","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"src":"22178:14:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10866,"nodeType":"IfStatement","src":"22174:87:43","trueBody":{"id":10865,"nodeType":"Block","src":"22194:67:43","statements":[{"expression":{"id":10859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10857,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10780,"src":"22212:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"38","id":10858,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22219:1:43","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"22212:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10860,"nodeType":"ExpressionStatement","src":"22212:8:43"},{"expression":{"id":10863,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10861,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"22238:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"34","id":10862,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22245:1:43","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"22238:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10864,"nodeType":"ExpressionStatement","src":"22238:8:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10867,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10780,"src":"22278:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"id":10870,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10868,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22285:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":10869,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22290:1:43","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"22285:6:43","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}}],"id":10871,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22284:8:43","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}},"src":"22278:14:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10882,"nodeType":"IfStatement","src":"22274:87:43","trueBody":{"id":10881,"nodeType":"Block","src":"22294:67:43","statements":[{"expression":{"id":10875,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10873,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10780,"src":"22312:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":10874,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22319:1:43","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"22312:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10876,"nodeType":"ExpressionStatement","src":"22312:8:43"},{"expression":{"id":10879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10877,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"22338:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"32","id":10878,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22345:1:43","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"22338:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10880,"nodeType":"ExpressionStatement","src":"22338:8:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10888,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10883,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10780,"src":"22378:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"id":10886,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":10884,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22385:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"32","id":10885,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22390:1:43","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"22385:6:43","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}}],"id":10887,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22384:8:43","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}},"src":"22378:14:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10894,"nodeType":"IfStatement","src":"22374:61:43","trueBody":{"id":10893,"nodeType":"Block","src":"22394:41:43","statements":[{"expression":{"id":10891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10889,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"22412:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"31","id":10890,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22419:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22412:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10892,"nodeType":"ExpressionStatement","src":"22412:8:43"}]}},{"expression":{"id":10902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10895,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"22855:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10901,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10898,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":10896,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22861:1:43","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":10897,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"22865:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22861:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10899,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22860:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10900,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22872:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22860:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22855:18:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10903,"nodeType":"ExpressionStatement","src":"22855:18:43"},{"expression":{"id":10913,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10904,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"24760:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10912,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10909,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10905,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"24766:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10908,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10906,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10767,"src":"24771:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10907,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"24775:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24771:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24766:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10910,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"24765:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10911,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24782:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24765:18:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24760:23:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10914,"nodeType":"ExpressionStatement","src":"24760:23:43"},{"expression":{"id":10924,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10915,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"24869:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10916,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"24875:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10919,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10917,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10767,"src":"24880:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10918,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"24884:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24880:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24875:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10921,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"24874:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10922,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24891:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24874:18:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24869:23:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10925,"nodeType":"ExpressionStatement","src":"24869:23:43"},{"expression":{"id":10935,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10926,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"24980:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10931,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10927,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"24986:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10928,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10767,"src":"24991:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10929,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"24995:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24991:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24986:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10932,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"24985:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10933,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25002:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24985:18:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24980:23:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10936,"nodeType":"ExpressionStatement","src":"24980:23:43"},{"expression":{"id":10946,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10937,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"25089:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10945,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10938,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"25095:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10939,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10767,"src":"25100:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10940,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"25104:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25100:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25095:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10943,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"25094:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10944,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25111:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"25094:18:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25089:23:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10947,"nodeType":"ExpressionStatement","src":"25089:23:43"},{"expression":{"id":10957,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10948,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"25199:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10956,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10949,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"25205:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10952,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10950,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10767,"src":"25210:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10951,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"25214:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25210:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25205:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10954,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"25204:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10955,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25221:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"25204:18:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25199:23:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10958,"nodeType":"ExpressionStatement","src":"25199:23:43"},{"expression":{"id":10968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10959,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"25309:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10964,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10960,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"25315:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10963,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10961,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10767,"src":"25320:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10962,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"25324:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25320:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25315:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":10965,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"25314:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":10966,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25331:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"25314:18:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25309:23:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10969,"nodeType":"ExpressionStatement","src":"25309:23:43"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10979,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10970,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"25698:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10973,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"25719:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10976,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10974,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10767,"src":"25724:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":10975,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10784,"src":"25728:2:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25724:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25719:11:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":10971,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"25703:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":10972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25712:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"25703:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":10978,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25703:28:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25698:33:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10771,"id":10980,"nodeType":"Return","src":"25691:40:43"}]}]},"documentation":{"id":10765,"nodeType":"StructuredDocumentation","src":"20270:292:43","text":" @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded\n towards zero.\n This method is based on Newton's method for computing square roots; the algorithm is restricted to only\n using integer operations."},"id":10983,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"20576:4:43","nodeType":"FunctionDefinition","parameters":{"id":10768,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10767,"mutability":"mutable","name":"a","nameLocation":"20589:1:43","nodeType":"VariableDeclaration","scope":10983,"src":"20581:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10766,"name":"uint256","nodeType":"ElementaryTypeName","src":"20581:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20580:11:43"},"returnParameters":{"id":10771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10770,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10983,"src":"20615:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10769,"name":"uint256","nodeType":"ElementaryTypeName","src":"20615:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20614:9:43"},"scope":11439,"src":"20567:5181:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11016,"nodeType":"Block","src":"25921:171:43","statements":[{"id":11015,"nodeType":"UncheckedBlock","src":"25931:155:43","statements":[{"assignments":[10995],"declarations":[{"constant":false,"id":10995,"mutability":"mutable","name":"result","nameLocation":"25963:6:43","nodeType":"VariableDeclaration","scope":11015,"src":"25955:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10994,"name":"uint256","nodeType":"ElementaryTypeName","src":"25955:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10999,"initialValue":{"arguments":[{"id":10997,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10986,"src":"25977:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10996,"name":"sqrt","nodeType":"Identifier","overloadedDeclarations":[10983,11017],"referencedDeclaration":10983,"src":"25972:4:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":10998,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25972:7:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"25955:24:43"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11000,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10995,"src":"26000:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11011,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11004,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10989,"src":"26042:8:43","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}],"id":11003,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11438,"src":"26025:16:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$9830_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":11005,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26025:26:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11008,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11006,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10995,"src":"26055:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":11007,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10995,"src":"26064:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26055:15:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":11009,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10986,"src":"26073:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26055:19:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26025:49:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":11001,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"26009:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":11002,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26018:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"26009:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":11012,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26009:66:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26000:75:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10993,"id":11014,"nodeType":"Return","src":"25993:82:43"}]}]},"documentation":{"id":10984,"nodeType":"StructuredDocumentation","src":"25754:86:43","text":" @dev Calculates sqrt(a), following the selected rounding direction."},"id":11017,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"25854:4:43","nodeType":"FunctionDefinition","parameters":{"id":10990,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10986,"mutability":"mutable","name":"a","nameLocation":"25867:1:43","nodeType":"VariableDeclaration","scope":11017,"src":"25859:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10985,"name":"uint256","nodeType":"ElementaryTypeName","src":"25859:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10989,"mutability":"mutable","name":"rounding","nameLocation":"25879:8:43","nodeType":"VariableDeclaration","scope":11017,"src":"25870:17:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"},"typeName":{"id":10988,"nodeType":"UserDefinedTypeName","pathNode":{"id":10987,"name":"Rounding","nameLocations":["25870:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":9830,"src":"25870:8:43"},"referencedDeclaration":9830,"src":"25870:8:43","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"25858:30:43"},"returnParameters":{"id":10993,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10992,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11017,"src":"25912:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10991,"name":"uint256","nodeType":"ElementaryTypeName","src":"25912:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25911:9:43"},"scope":11439,"src":"25845:247:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11107,"nodeType":"Block","src":"26281:2334:43","statements":[{"expression":{"id":11034,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11025,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11023,"src":"26363:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11030,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11028,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11020,"src":"26383:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666666666666666666666666666666666666666666666666666666666666666","id":11029,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26387:34:43","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"},"value":"0xffffffffffffffffffffffffffffffff"},"src":"26383:38:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":11026,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"26367:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":11027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26376:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"26367:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":11031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26367:55:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"37","id":11032,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26426:1:43","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"26367:60:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26363:64:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11035,"nodeType":"ExpressionStatement","src":"26363:64:43"},{"expression":{"id":11048,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11036,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11023,"src":"26503:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11039,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11020,"src":"26525:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":11040,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11023,"src":"26530:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26525:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11042,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26524:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866666666666666666666666666666666","id":11043,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26535:18:43","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"},"value":"0xffffffffffffffff"},"src":"26524:29:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":11037,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"26508:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":11038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26517:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"26508:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":11045,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26508:46:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"36","id":11046,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26558:1:43","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"26508:51:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26503:56:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11049,"nodeType":"ExpressionStatement","src":"26503:56:43"},{"expression":{"id":11062,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11050,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11023,"src":"26634:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11055,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11053,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11020,"src":"26656:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":11054,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11023,"src":"26661:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26656:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11056,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26655:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666666666666666","id":11057,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26666:10:43","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"value":"0xffffffff"},"src":"26655:21:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":11051,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"26639:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":11052,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26648:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"26639:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":11059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26639:38:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"35","id":11060,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26681:1:43","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"26639:43:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26634:48:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11063,"nodeType":"ExpressionStatement","src":"26634:48:43"},{"expression":{"id":11076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11064,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11023,"src":"26757:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11075,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11072,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11067,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11020,"src":"26779:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":11068,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11023,"src":"26784:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26779:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11070,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26778:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866666666","id":11071,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26789:6:43","typeDescriptions":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"},"value":"0xffff"},"src":"26778:17:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":11065,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"26762:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":11066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26771:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"26762:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":11073,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26762:34:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":11074,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26800:1:43","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"26762:39:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26757:44:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11077,"nodeType":"ExpressionStatement","src":"26757:44:43"},{"expression":{"id":11090,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11078,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11023,"src":"26874:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11089,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11086,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11083,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11081,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11020,"src":"26896:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":11082,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11023,"src":"26901:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26896:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11084,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26895:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666","id":11085,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26906:4:43","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0xff"},"src":"26895:15:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":11079,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"26879:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":11080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26888:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"26879:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":11087,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26879:32:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"33","id":11088,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26915:1:43","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"26879:37:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26874:42:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11091,"nodeType":"ExpressionStatement","src":"26874:42:43"},{"expression":{"id":11104,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11092,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11023,"src":"26988:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11103,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11100,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11097,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11095,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11020,"src":"27010:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":11096,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11023,"src":"27015:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27010:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11098,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"27009:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866","id":11099,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27020:3:43","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"27009:14:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":11093,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"26993:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":11094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27002:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"26993:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":11101,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26993:31:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"32","id":11102,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27028:1:43","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"26993:36:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26988:41:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11105,"nodeType":"ExpressionStatement","src":"26988:41:43"},{"AST":{"nodeType":"YulBlock","src":"28490:119:43","statements":[{"nodeType":"YulAssignment","src":"28504:95:43","value":{"arguments":[{"name":"r","nodeType":"YulIdentifier","src":"28512:1:43"},{"arguments":[{"arguments":[{"name":"r","nodeType":"YulIdentifier","src":"28524:1:43"},{"name":"x","nodeType":"YulIdentifier","src":"28527:1:43"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"28520:3:43"},"nodeType":"YulFunctionCall","src":"28520:9:43"},{"kind":"number","nodeType":"YulLiteral","src":"28531:66:43","type":"","value":"0x0000010102020202030303030303030300000000000000000000000000000000"}],"functionName":{"name":"byte","nodeType":"YulIdentifier","src":"28515:4:43"},"nodeType":"YulFunctionCall","src":"28515:83:43"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"28509:2:43"},"nodeType":"YulFunctionCall","src":"28509:90:43"},"variableNames":[{"name":"r","nodeType":"YulIdentifier","src":"28504:1:43"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":11023,"isOffset":false,"isSlot":false,"src":"28504:1:43","valueSize":1},{"declaration":11023,"isOffset":false,"isSlot":false,"src":"28512:1:43","valueSize":1},{"declaration":11023,"isOffset":false,"isSlot":false,"src":"28524:1:43","valueSize":1},{"declaration":11020,"isOffset":false,"isSlot":false,"src":"28527:1:43","valueSize":1}],"flags":["memory-safe"],"id":11106,"nodeType":"InlineAssembly","src":"28465:144:43"}]},"documentation":{"id":11018,"nodeType":"StructuredDocumentation","src":"26098:119:43","text":" @dev Return the log in base 2 of a positive value rounded towards zero.\n Returns 0 if given 0."},"id":11108,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"26231:4:43","nodeType":"FunctionDefinition","parameters":{"id":11021,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11020,"mutability":"mutable","name":"x","nameLocation":"26244:1:43","nodeType":"VariableDeclaration","scope":11108,"src":"26236:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11019,"name":"uint256","nodeType":"ElementaryTypeName","src":"26236:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26235:11:43"},"returnParameters":{"id":11024,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11023,"mutability":"mutable","name":"r","nameLocation":"26278:1:43","nodeType":"VariableDeclaration","scope":11108,"src":"26270:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11022,"name":"uint256","nodeType":"ElementaryTypeName","src":"26270:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26269:11:43"},"scope":11439,"src":"26222:2393:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11141,"nodeType":"Block","src":"28848:175:43","statements":[{"id":11140,"nodeType":"UncheckedBlock","src":"28858:159:43","statements":[{"assignments":[11120],"declarations":[{"constant":false,"id":11120,"mutability":"mutable","name":"result","nameLocation":"28890:6:43","nodeType":"VariableDeclaration","scope":11140,"src":"28882:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11119,"name":"uint256","nodeType":"ElementaryTypeName","src":"28882:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11124,"initialValue":{"arguments":[{"id":11122,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11111,"src":"28904:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11121,"name":"log2","nodeType":"Identifier","overloadedDeclarations":[11108,11142],"referencedDeclaration":11108,"src":"28899:4:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":11123,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28899:11:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28882:28:43"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11125,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11120,"src":"28931:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11136,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11129,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11114,"src":"28973:8:43","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}],"id":11128,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11438,"src":"28956:16:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$9830_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":11130,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28956:26:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11133,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":11131,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28986:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":11132,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11120,"src":"28991:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28986:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":11134,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11111,"src":"29000:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28986:19:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"28956:49:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":11126,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"28940:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":11127,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28949:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"28940:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":11137,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28940:66:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28931:75:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11118,"id":11139,"nodeType":"Return","src":"28924:82:43"}]}]},"documentation":{"id":11109,"nodeType":"StructuredDocumentation","src":"28621:142:43","text":" @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":11142,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"28777:4:43","nodeType":"FunctionDefinition","parameters":{"id":11115,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11111,"mutability":"mutable","name":"value","nameLocation":"28790:5:43","nodeType":"VariableDeclaration","scope":11142,"src":"28782:13:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11110,"name":"uint256","nodeType":"ElementaryTypeName","src":"28782:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11114,"mutability":"mutable","name":"rounding","nameLocation":"28806:8:43","nodeType":"VariableDeclaration","scope":11142,"src":"28797:17:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"},"typeName":{"id":11113,"nodeType":"UserDefinedTypeName","pathNode":{"id":11112,"name":"Rounding","nameLocations":["28797:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":9830,"src":"28797:8:43"},"referencedDeclaration":9830,"src":"28797:8:43","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"28781:34:43"},"returnParameters":{"id":11118,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11117,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11142,"src":"28839:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11116,"name":"uint256","nodeType":"ElementaryTypeName","src":"28839:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"28838:9:43"},"scope":11439,"src":"28768:255:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11270,"nodeType":"Block","src":"29216:854:43","statements":[{"assignments":[11151],"declarations":[{"constant":false,"id":11151,"mutability":"mutable","name":"result","nameLocation":"29234:6:43","nodeType":"VariableDeclaration","scope":11270,"src":"29226:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11150,"name":"uint256","nodeType":"ElementaryTypeName","src":"29226:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11153,"initialValue":{"hexValue":"30","id":11152,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29243:1:43","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"29226:18:43"},{"id":11267,"nodeType":"UncheckedBlock","src":"29254:787:43","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11158,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11154,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11145,"src":"29282:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"},"id":11157,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":11155,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29291:2:43","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":11156,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29297:2:43","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"29291:8:43","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"29282:17:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11170,"nodeType":"IfStatement","src":"29278:103:43","trueBody":{"id":11169,"nodeType":"Block","src":"29301:80:43","statements":[{"expression":{"id":11163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11159,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11145,"src":"29319:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"},"id":11162,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":11160,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29328:2:43","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":11161,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29334:2:43","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"29328:8:43","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"29319:17:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11164,"nodeType":"ExpressionStatement","src":"29319:17:43"},{"expression":{"id":11167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11165,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11151,"src":"29354:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3634","id":11166,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29364:2:43","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"29354:12:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11168,"nodeType":"ExpressionStatement","src":"29354:12:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11171,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11145,"src":"29398:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"},"id":11174,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":11172,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29407:2:43","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":11173,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29413:2:43","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"29407:8:43","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"29398:17:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11187,"nodeType":"IfStatement","src":"29394:103:43","trueBody":{"id":11186,"nodeType":"Block","src":"29417:80:43","statements":[{"expression":{"id":11180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11176,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11145,"src":"29435:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"},"id":11179,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":11177,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29444:2:43","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":11178,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29450:2:43","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"29444:8:43","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"29435:17:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11181,"nodeType":"ExpressionStatement","src":"29435:17:43"},{"expression":{"id":11184,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11182,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11151,"src":"29470:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3332","id":11183,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29480:2:43","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"29470:12:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11185,"nodeType":"ExpressionStatement","src":"29470:12:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11192,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11188,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11145,"src":"29514:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":11191,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":11189,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29523:2:43","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":11190,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29529:2:43","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"29523:8:43","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"29514:17:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11204,"nodeType":"IfStatement","src":"29510:103:43","trueBody":{"id":11203,"nodeType":"Block","src":"29533:80:43","statements":[{"expression":{"id":11197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11193,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11145,"src":"29551:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":11196,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":11194,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29560:2:43","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":11195,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29566:2:43","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"29560:8:43","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"29551:17:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11198,"nodeType":"ExpressionStatement","src":"29551:17:43"},{"expression":{"id":11201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11199,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11151,"src":"29586:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3136","id":11200,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29596:2:43","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"29586:12:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11202,"nodeType":"ExpressionStatement","src":"29586:12:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11209,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11205,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11145,"src":"29630:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":11208,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":11206,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29639:2:43","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":11207,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29645:1:43","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"29639:7:43","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"29630:16:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11221,"nodeType":"IfStatement","src":"29626:100:43","trueBody":{"id":11220,"nodeType":"Block","src":"29648:78:43","statements":[{"expression":{"id":11214,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11210,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11145,"src":"29666:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":11213,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":11211,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29675:2:43","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":11212,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29681:1:43","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"29675:7:43","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"29666:16:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11215,"nodeType":"ExpressionStatement","src":"29666:16:43"},{"expression":{"id":11218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11216,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11151,"src":"29700:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"38","id":11217,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29710:1:43","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"29700:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11219,"nodeType":"ExpressionStatement","src":"29700:11:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11226,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11222,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11145,"src":"29743:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":11225,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":11223,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29752:2:43","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":11224,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29758:1:43","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"29752:7:43","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"29743:16:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11238,"nodeType":"IfStatement","src":"29739:100:43","trueBody":{"id":11237,"nodeType":"Block","src":"29761:78:43","statements":[{"expression":{"id":11231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11227,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11145,"src":"29779:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":11230,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":11228,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29788:2:43","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":11229,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29794:1:43","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"29788:7:43","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"29779:16:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11232,"nodeType":"ExpressionStatement","src":"29779:16:43"},{"expression":{"id":11235,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11233,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11151,"src":"29813:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"34","id":11234,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29823:1:43","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"29813:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11236,"nodeType":"ExpressionStatement","src":"29813:11:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11239,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11145,"src":"29856:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":11242,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":11240,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29865:2:43","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":11241,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29871:1:43","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"29865:7:43","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"29856:16:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11255,"nodeType":"IfStatement","src":"29852:100:43","trueBody":{"id":11254,"nodeType":"Block","src":"29874:78:43","statements":[{"expression":{"id":11248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11244,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11145,"src":"29892:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":11247,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":11245,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29901:2:43","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":11246,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29907:1:43","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"29901:7:43","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"29892:16:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11249,"nodeType":"ExpressionStatement","src":"29892:16:43"},{"expression":{"id":11252,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11250,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11151,"src":"29926:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"32","id":11251,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29936:1:43","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"29926:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11253,"nodeType":"ExpressionStatement","src":"29926:11:43"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11256,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11145,"src":"29969:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"id":11259,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":11257,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29978:2:43","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"31","id":11258,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29984:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"29978:7:43","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"}},"src":"29969:16:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11266,"nodeType":"IfStatement","src":"29965:66:43","trueBody":{"id":11265,"nodeType":"Block","src":"29987:44:43","statements":[{"expression":{"id":11263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11261,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11151,"src":"30005:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":11262,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30015:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"30005:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11264,"nodeType":"ExpressionStatement","src":"30005:11:43"}]}}]},{"expression":{"id":11268,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11151,"src":"30057:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11149,"id":11269,"nodeType":"Return","src":"30050:13:43"}]},"documentation":{"id":11143,"nodeType":"StructuredDocumentation","src":"29029:120:43","text":" @dev Return the log in base 10 of a positive value rounded towards zero.\n Returns 0 if given 0."},"id":11271,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"29163:5:43","nodeType":"FunctionDefinition","parameters":{"id":11146,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11145,"mutability":"mutable","name":"value","nameLocation":"29177:5:43","nodeType":"VariableDeclaration","scope":11271,"src":"29169:13:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11144,"name":"uint256","nodeType":"ElementaryTypeName","src":"29169:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"29168:15:43"},"returnParameters":{"id":11149,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11148,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11271,"src":"29207:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11147,"name":"uint256","nodeType":"ElementaryTypeName","src":"29207:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"29206:9:43"},"scope":11439,"src":"29154:916:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11304,"nodeType":"Block","src":"30305:177:43","statements":[{"id":11303,"nodeType":"UncheckedBlock","src":"30315:161:43","statements":[{"assignments":[11283],"declarations":[{"constant":false,"id":11283,"mutability":"mutable","name":"result","nameLocation":"30347:6:43","nodeType":"VariableDeclaration","scope":11303,"src":"30339:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11282,"name":"uint256","nodeType":"ElementaryTypeName","src":"30339:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11287,"initialValue":{"arguments":[{"id":11285,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11274,"src":"30362:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11284,"name":"log10","nodeType":"Identifier","overloadedDeclarations":[11271,11305],"referencedDeclaration":11271,"src":"30356:5:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":11286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30356:12:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"30339:29:43"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11288,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11283,"src":"30389:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11292,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11277,"src":"30431:8:43","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}],"id":11291,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11438,"src":"30414:16:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$9830_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":11293,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30414:26:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":11294,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30444:2:43","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"id":11295,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11283,"src":"30450:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30444:12:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":11297,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11274,"src":"30459:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30444:20:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"30414:50:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":11289,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"30398:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":11290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30407:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"30398:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":11300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30398:67:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30389:76:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11281,"id":11302,"nodeType":"Return","src":"30382:83:43"}]}]},"documentation":{"id":11272,"nodeType":"StructuredDocumentation","src":"30076:143:43","text":" @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":11305,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"30233:5:43","nodeType":"FunctionDefinition","parameters":{"id":11278,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11274,"mutability":"mutable","name":"value","nameLocation":"30247:5:43","nodeType":"VariableDeclaration","scope":11305,"src":"30239:13:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11273,"name":"uint256","nodeType":"ElementaryTypeName","src":"30239:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11277,"mutability":"mutable","name":"rounding","nameLocation":"30263:8:43","nodeType":"VariableDeclaration","scope":11305,"src":"30254:17:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"},"typeName":{"id":11276,"nodeType":"UserDefinedTypeName","pathNode":{"id":11275,"name":"Rounding","nameLocations":["30254:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":9830,"src":"30254:8:43"},"referencedDeclaration":9830,"src":"30254:8:43","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"30238:34:43"},"returnParameters":{"id":11281,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11280,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11305,"src":"30296:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11279,"name":"uint256","nodeType":"ElementaryTypeName","src":"30296:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30295:9:43"},"scope":11439,"src":"30224:258:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11381,"nodeType":"Block","src":"30800:675:43","statements":[{"expression":{"id":11322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11313,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11311,"src":"30882:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11316,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11308,"src":"30902:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666666666666666666666666666666666666666666666666666666666666666","id":11317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30906:34:43","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"},"value":"0xffffffffffffffffffffffffffffffff"},"src":"30902:38:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":11314,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"30886:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":11315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30895:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"30886:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":11319,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30886:55:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"37","id":11320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30945:1:43","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"30886:60:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30882:64:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11323,"nodeType":"ExpressionStatement","src":"30882:64:43"},{"expression":{"id":11336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11324,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11311,"src":"31022:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11329,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11327,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11308,"src":"31044:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":11328,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11311,"src":"31049:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31044:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11330,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31043:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866666666666666666666666666666666","id":11331,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31054:18:43","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"},"value":"0xffffffffffffffff"},"src":"31043:29:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":11325,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"31027:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":11326,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31036:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"31027:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":11333,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31027:46:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"36","id":11334,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31077:1:43","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"31027:51:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31022:56:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11337,"nodeType":"ExpressionStatement","src":"31022:56:43"},{"expression":{"id":11350,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11338,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11311,"src":"31153:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11349,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11346,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11341,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11308,"src":"31175:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":11342,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11311,"src":"31180:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31175:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11344,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31174:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666666666666666","id":11345,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31185:10:43","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"value":"0xffffffff"},"src":"31174:21:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":11339,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"31158:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":11340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31167:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"31158:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":11347,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31158:38:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"35","id":11348,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31200:1:43","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"31158:43:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31153:48:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11351,"nodeType":"ExpressionStatement","src":"31153:48:43"},{"expression":{"id":11364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11352,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11311,"src":"31276:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11357,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11355,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11308,"src":"31298:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":11356,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11311,"src":"31303:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31298:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11358,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31297:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866666666","id":11359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31308:6:43","typeDescriptions":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"},"value":"0xffff"},"src":"31297:17:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":11353,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"31281:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":11354,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31290:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"31281:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":11361,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31281:34:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":11362,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31319:1:43","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"31281:39:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31276:44:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11365,"nodeType":"ExpressionStatement","src":"31276:44:43"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11366,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11311,"src":"31426:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"33","id":11367,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31431:1:43","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"31426:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11369,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31425:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11372,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11308,"src":"31453:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":11373,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11311,"src":"31458:1:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31453:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11375,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31452:8:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666","id":11376,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31463:4:43","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0xff"},"src":"31452:15:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":11370,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"31436:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":11371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31445:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"31436:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":11378,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31436:32:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31425:43:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11312,"id":11380,"nodeType":"Return","src":"31418:50:43"}]},"documentation":{"id":11306,"nodeType":"StructuredDocumentation","src":"30488:246:43","text":" @dev Return the log in base 256 of a positive value rounded towards zero.\n Returns 0 if given 0.\n Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string."},"id":11382,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"30748:6:43","nodeType":"FunctionDefinition","parameters":{"id":11309,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11308,"mutability":"mutable","name":"x","nameLocation":"30763:1:43","nodeType":"VariableDeclaration","scope":11382,"src":"30755:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11307,"name":"uint256","nodeType":"ElementaryTypeName","src":"30755:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30754:11:43"},"returnParameters":{"id":11312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11311,"mutability":"mutable","name":"r","nameLocation":"30797:1:43","nodeType":"VariableDeclaration","scope":11382,"src":"30789:9:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11310,"name":"uint256","nodeType":"ElementaryTypeName","src":"30789:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30788:11:43"},"scope":11439,"src":"30739:736:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11418,"nodeType":"Block","src":"31712:184:43","statements":[{"id":11417,"nodeType":"UncheckedBlock","src":"31722:168:43","statements":[{"assignments":[11394],"declarations":[{"constant":false,"id":11394,"mutability":"mutable","name":"result","nameLocation":"31754:6:43","nodeType":"VariableDeclaration","scope":11417,"src":"31746:14:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11393,"name":"uint256","nodeType":"ElementaryTypeName","src":"31746:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11398,"initialValue":{"arguments":[{"id":11396,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11385,"src":"31770:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11395,"name":"log256","nodeType":"Identifier","overloadedDeclarations":[11382,11419],"referencedDeclaration":11382,"src":"31763:6:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":11397,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31763:13:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"31746:30:43"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11415,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11399,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11394,"src":"31797:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11413,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11403,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11388,"src":"31839:8:43","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}],"id":11402,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11438,"src":"31822:16:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$9830_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":11404,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31822:26:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11412,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":11405,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31852:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11408,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11406,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11394,"src":"31858:6:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"33","id":11407,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31868:1:43","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"31858:11:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11409,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31857:13:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31852:18:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":11411,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11385,"src":"31873:5:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31852:26:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"31822:56:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":11400,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"31806:8:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":11401,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31815:6:43","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"31806:15:43","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":11414,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31806:73:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31797:82:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11392,"id":11416,"nodeType":"Return","src":"31790:89:43"}]}]},"documentation":{"id":11383,"nodeType":"StructuredDocumentation","src":"31481:144:43","text":" @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":11419,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"31639:6:43","nodeType":"FunctionDefinition","parameters":{"id":11389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11385,"mutability":"mutable","name":"value","nameLocation":"31654:5:43","nodeType":"VariableDeclaration","scope":11419,"src":"31646:13:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11384,"name":"uint256","nodeType":"ElementaryTypeName","src":"31646:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11388,"mutability":"mutable","name":"rounding","nameLocation":"31670:8:43","nodeType":"VariableDeclaration","scope":11419,"src":"31661:17:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"},"typeName":{"id":11387,"nodeType":"UserDefinedTypeName","pathNode":{"id":11386,"name":"Rounding","nameLocations":["31661:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":9830,"src":"31661:8:43"},"referencedDeclaration":9830,"src":"31661:8:43","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"31645:34:43"},"returnParameters":{"id":11392,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11391,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11419,"src":"31703:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11390,"name":"uint256","nodeType":"ElementaryTypeName","src":"31703:7:43","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31702:9:43"},"scope":11439,"src":"31630:266:43","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11437,"nodeType":"Block","src":"32094:48:43","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":11435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":11433,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11430,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11423,"src":"32117:8:43","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}],"id":11429,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32111:5:43","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":11428,"name":"uint8","nodeType":"ElementaryTypeName","src":"32111:5:43","typeDescriptions":{}}},"id":11431,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32111:15:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"32","id":11432,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32129:1:43","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"32111:19:43","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":11434,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32134:1:43","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"32111:24:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":11427,"id":11436,"nodeType":"Return","src":"32104:31:43"}]},"documentation":{"id":11420,"nodeType":"StructuredDocumentation","src":"31902:113:43","text":" @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers."},"id":11438,"implemented":true,"kind":"function","modifiers":[],"name":"unsignedRoundsUp","nameLocation":"32029:16:43","nodeType":"FunctionDefinition","parameters":{"id":11424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11423,"mutability":"mutable","name":"rounding","nameLocation":"32055:8:43","nodeType":"VariableDeclaration","scope":11438,"src":"32046:17:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"},"typeName":{"id":11422,"nodeType":"UserDefinedTypeName","pathNode":{"id":11421,"name":"Rounding","nameLocations":["32046:8:43"],"nodeType":"IdentifierPath","referencedDeclaration":9830,"src":"32046:8:43"},"referencedDeclaration":9830,"src":"32046:8:43","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$9830","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"32045:19:43"},"returnParameters":{"id":11427,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11426,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11438,"src":"32088:4:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11425,"name":"bool","nodeType":"ElementaryTypeName","src":"32088:4:43","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"32087:6:43"},"scope":11439,"src":"32020:122:43","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":11440,"src":"281:31863:43","usedErrors":[],"usedEvents":[]}],"src":"103:32042:43"},"id":43},"@openzeppelin/contracts/utils/math/SafeCast.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","exportedSymbols":{"SafeCast":[13204]},"id":13205,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":11441,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"192:24:44"},{"abstract":false,"baseContracts":[],"canonicalName":"SafeCast","contractDependencies":[],"contractKind":"library","documentation":{"id":11442,"nodeType":"StructuredDocumentation","src":"218:550:44","text":" @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow\n checks.\n Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\n easily result in undesired exploitation or bugs, since developers usually\n assume that overflows raise errors. `SafeCast` restores this intuition by\n reverting the transaction when such an operation overflows.\n Using this library instead of the unchecked operations eliminates an entire\n class of bugs, so it's recommended to use it always."},"fullyImplemented":true,"id":13204,"linearizedBaseContracts":[13204],"name":"SafeCast","nameLocation":"777:8:44","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":11443,"nodeType":"StructuredDocumentation","src":"792:68:44","text":" @dev Value doesn't fit in an uint of `bits` size."},"errorSelector":"6dfcc650","id":11449,"name":"SafeCastOverflowedUintDowncast","nameLocation":"871:30:44","nodeType":"ErrorDefinition","parameters":{"id":11448,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11445,"mutability":"mutable","name":"bits","nameLocation":"908:4:44","nodeType":"VariableDeclaration","scope":11449,"src":"902:10:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11444,"name":"uint8","nodeType":"ElementaryTypeName","src":"902:5:44","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":11447,"mutability":"mutable","name":"value","nameLocation":"922:5:44","nodeType":"VariableDeclaration","scope":11449,"src":"914:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11446,"name":"uint256","nodeType":"ElementaryTypeName","src":"914:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"901:27:44"},"src":"865:64:44"},{"documentation":{"id":11450,"nodeType":"StructuredDocumentation","src":"935:75:44","text":" @dev An int value doesn't fit in an uint of `bits` size."},"errorSelector":"a8ce4432","id":11454,"name":"SafeCastOverflowedIntToUint","nameLocation":"1021:27:44","nodeType":"ErrorDefinition","parameters":{"id":11453,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11452,"mutability":"mutable","name":"value","nameLocation":"1056:5:44","nodeType":"VariableDeclaration","scope":11454,"src":"1049:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11451,"name":"int256","nodeType":"ElementaryTypeName","src":"1049:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1048:14:44"},"src":"1015:48:44"},{"documentation":{"id":11455,"nodeType":"StructuredDocumentation","src":"1069:67:44","text":" @dev Value doesn't fit in an int of `bits` size."},"errorSelector":"327269a7","id":11461,"name":"SafeCastOverflowedIntDowncast","nameLocation":"1147:29:44","nodeType":"ErrorDefinition","parameters":{"id":11460,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11457,"mutability":"mutable","name":"bits","nameLocation":"1183:4:44","nodeType":"VariableDeclaration","scope":11461,"src":"1177:10:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11456,"name":"uint8","nodeType":"ElementaryTypeName","src":"1177:5:44","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":11459,"mutability":"mutable","name":"value","nameLocation":"1196:5:44","nodeType":"VariableDeclaration","scope":11461,"src":"1189:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11458,"name":"int256","nodeType":"ElementaryTypeName","src":"1189:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1176:26:44"},"src":"1141:62:44"},{"documentation":{"id":11462,"nodeType":"StructuredDocumentation","src":"1209:75:44","text":" @dev An uint value doesn't fit in an int of `bits` size."},"errorSelector":"24775e06","id":11466,"name":"SafeCastOverflowedUintToInt","nameLocation":"1295:27:44","nodeType":"ErrorDefinition","parameters":{"id":11465,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11464,"mutability":"mutable","name":"value","nameLocation":"1331:5:44","nodeType":"VariableDeclaration","scope":11466,"src":"1323:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11463,"name":"uint256","nodeType":"ElementaryTypeName","src":"1323:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1322:15:44"},"src":"1289:49:44"},{"body":{"id":11493,"nodeType":"Block","src":"1695:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11480,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11474,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11469,"src":"1709:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11477,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1722:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"},"typeName":{"id":11476,"name":"uint248","nodeType":"ElementaryTypeName","src":"1722:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"}],"id":11475,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"1717:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11478,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1717:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint248","typeString":"type(uint248)"}},"id":11479,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1731:3:44","memberName":"max","nodeType":"MemberAccess","src":"1717:17:44","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"src":"1709:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11487,"nodeType":"IfStatement","src":"1705:105:44","trueBody":{"id":11486,"nodeType":"Block","src":"1736:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"323438","id":11482,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1788:3:44","typeDescriptions":{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},"value":"248"},{"id":11483,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11469,"src":"1793:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11481,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"1757:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1757:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11485,"nodeType":"RevertStatement","src":"1750:49:44"}]}},{"expression":{"arguments":[{"id":11490,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11469,"src":"1834:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11489,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1826:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"},"typeName":{"id":11488,"name":"uint248","nodeType":"ElementaryTypeName","src":"1826:7:44","typeDescriptions":{}}},"id":11491,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1826:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"functionReturnParameters":11473,"id":11492,"nodeType":"Return","src":"1819:21:44"}]},"documentation":{"id":11467,"nodeType":"StructuredDocumentation","src":"1344:280:44","text":" @dev Returns the downcasted uint248 from uint256, reverting on\n overflow (when the input is greater than largest uint248).\n Counterpart to Solidity's `uint248` operator.\n Requirements:\n - input must fit into 248 bits"},"id":11494,"implemented":true,"kind":"function","modifiers":[],"name":"toUint248","nameLocation":"1638:9:44","nodeType":"FunctionDefinition","parameters":{"id":11470,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11469,"mutability":"mutable","name":"value","nameLocation":"1656:5:44","nodeType":"VariableDeclaration","scope":11494,"src":"1648:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11468,"name":"uint256","nodeType":"ElementaryTypeName","src":"1648:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1647:15:44"},"returnParameters":{"id":11473,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11472,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11494,"src":"1686:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"},"typeName":{"id":11471,"name":"uint248","nodeType":"ElementaryTypeName","src":"1686:7:44","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"visibility":"internal"}],"src":"1685:9:44"},"scope":13204,"src":"1629:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11521,"nodeType":"Block","src":"2204:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11508,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11502,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11497,"src":"2218:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11505,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2231:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"},"typeName":{"id":11504,"name":"uint240","nodeType":"ElementaryTypeName","src":"2231:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"}],"id":11503,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"2226:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11506,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2226:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint240","typeString":"type(uint240)"}},"id":11507,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2240:3:44","memberName":"max","nodeType":"MemberAccess","src":"2226:17:44","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"src":"2218:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11515,"nodeType":"IfStatement","src":"2214:105:44","trueBody":{"id":11514,"nodeType":"Block","src":"2245:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"323430","id":11510,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2297:3:44","typeDescriptions":{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},"value":"240"},{"id":11511,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11497,"src":"2302:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11509,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"2266:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11512,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2266:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11513,"nodeType":"RevertStatement","src":"2259:49:44"}]}},{"expression":{"arguments":[{"id":11518,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11497,"src":"2343:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11517,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2335:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"},"typeName":{"id":11516,"name":"uint240","nodeType":"ElementaryTypeName","src":"2335:7:44","typeDescriptions":{}}},"id":11519,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2335:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"functionReturnParameters":11501,"id":11520,"nodeType":"Return","src":"2328:21:44"}]},"documentation":{"id":11495,"nodeType":"StructuredDocumentation","src":"1853:280:44","text":" @dev Returns the downcasted uint240 from uint256, reverting on\n overflow (when the input is greater than largest uint240).\n Counterpart to Solidity's `uint240` operator.\n Requirements:\n - input must fit into 240 bits"},"id":11522,"implemented":true,"kind":"function","modifiers":[],"name":"toUint240","nameLocation":"2147:9:44","nodeType":"FunctionDefinition","parameters":{"id":11498,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11497,"mutability":"mutable","name":"value","nameLocation":"2165:5:44","nodeType":"VariableDeclaration","scope":11522,"src":"2157:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11496,"name":"uint256","nodeType":"ElementaryTypeName","src":"2157:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2156:15:44"},"returnParameters":{"id":11501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11500,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11522,"src":"2195:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"},"typeName":{"id":11499,"name":"uint240","nodeType":"ElementaryTypeName","src":"2195:7:44","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"visibility":"internal"}],"src":"2194:9:44"},"scope":13204,"src":"2138:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11549,"nodeType":"Block","src":"2713:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11530,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11525,"src":"2727:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11533,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2740:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"},"typeName":{"id":11532,"name":"uint232","nodeType":"ElementaryTypeName","src":"2740:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"}],"id":11531,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"2735:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11534,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2735:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint232","typeString":"type(uint232)"}},"id":11535,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2749:3:44","memberName":"max","nodeType":"MemberAccess","src":"2735:17:44","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"src":"2727:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11543,"nodeType":"IfStatement","src":"2723:105:44","trueBody":{"id":11542,"nodeType":"Block","src":"2754:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"323332","id":11538,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2806:3:44","typeDescriptions":{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},"value":"232"},{"id":11539,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11525,"src":"2811:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11537,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"2775:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11540,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2775:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11541,"nodeType":"RevertStatement","src":"2768:49:44"}]}},{"expression":{"arguments":[{"id":11546,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11525,"src":"2852:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11545,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2844:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"},"typeName":{"id":11544,"name":"uint232","nodeType":"ElementaryTypeName","src":"2844:7:44","typeDescriptions":{}}},"id":11547,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2844:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"functionReturnParameters":11529,"id":11548,"nodeType":"Return","src":"2837:21:44"}]},"documentation":{"id":11523,"nodeType":"StructuredDocumentation","src":"2362:280:44","text":" @dev Returns the downcasted uint232 from uint256, reverting on\n overflow (when the input is greater than largest uint232).\n Counterpart to Solidity's `uint232` operator.\n Requirements:\n - input must fit into 232 bits"},"id":11550,"implemented":true,"kind":"function","modifiers":[],"name":"toUint232","nameLocation":"2656:9:44","nodeType":"FunctionDefinition","parameters":{"id":11526,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11525,"mutability":"mutable","name":"value","nameLocation":"2674:5:44","nodeType":"VariableDeclaration","scope":11550,"src":"2666:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11524,"name":"uint256","nodeType":"ElementaryTypeName","src":"2666:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2665:15:44"},"returnParameters":{"id":11529,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11528,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11550,"src":"2704:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"},"typeName":{"id":11527,"name":"uint232","nodeType":"ElementaryTypeName","src":"2704:7:44","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"visibility":"internal"}],"src":"2703:9:44"},"scope":13204,"src":"2647:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11577,"nodeType":"Block","src":"3222:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11558,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11553,"src":"3236:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11561,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3249:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"},"typeName":{"id":11560,"name":"uint224","nodeType":"ElementaryTypeName","src":"3249:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"}],"id":11559,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"3244:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11562,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3244:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint224","typeString":"type(uint224)"}},"id":11563,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3258:3:44","memberName":"max","nodeType":"MemberAccess","src":"3244:17:44","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"src":"3236:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11571,"nodeType":"IfStatement","src":"3232:105:44","trueBody":{"id":11570,"nodeType":"Block","src":"3263:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"323234","id":11566,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3315:3:44","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"224"},{"id":11567,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11553,"src":"3320:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11565,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"3284:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11568,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3284:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11569,"nodeType":"RevertStatement","src":"3277:49:44"}]}},{"expression":{"arguments":[{"id":11574,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11553,"src":"3361:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11573,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3353:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"},"typeName":{"id":11572,"name":"uint224","nodeType":"ElementaryTypeName","src":"3353:7:44","typeDescriptions":{}}},"id":11575,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3353:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":11557,"id":11576,"nodeType":"Return","src":"3346:21:44"}]},"documentation":{"id":11551,"nodeType":"StructuredDocumentation","src":"2871:280:44","text":" @dev Returns the downcasted uint224 from uint256, reverting on\n overflow (when the input is greater than largest uint224).\n Counterpart to Solidity's `uint224` operator.\n Requirements:\n - input must fit into 224 bits"},"id":11578,"implemented":true,"kind":"function","modifiers":[],"name":"toUint224","nameLocation":"3165:9:44","nodeType":"FunctionDefinition","parameters":{"id":11554,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11553,"mutability":"mutable","name":"value","nameLocation":"3183:5:44","nodeType":"VariableDeclaration","scope":11578,"src":"3175:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11552,"name":"uint256","nodeType":"ElementaryTypeName","src":"3175:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3174:15:44"},"returnParameters":{"id":11557,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11556,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11578,"src":"3213:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":11555,"name":"uint224","nodeType":"ElementaryTypeName","src":"3213:7:44","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"3212:9:44"},"scope":13204,"src":"3156:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11605,"nodeType":"Block","src":"3731:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11586,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11581,"src":"3745:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11589,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3758:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":11588,"name":"uint216","nodeType":"ElementaryTypeName","src":"3758:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"}],"id":11587,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"3753:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11590,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3753:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint216","typeString":"type(uint216)"}},"id":11591,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3767:3:44","memberName":"max","nodeType":"MemberAccess","src":"3753:17:44","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"src":"3745:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11599,"nodeType":"IfStatement","src":"3741:105:44","trueBody":{"id":11598,"nodeType":"Block","src":"3772:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"323136","id":11594,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3824:3:44","typeDescriptions":{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},"value":"216"},{"id":11595,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11581,"src":"3829:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11593,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"3793:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11596,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3793:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11597,"nodeType":"RevertStatement","src":"3786:49:44"}]}},{"expression":{"arguments":[{"id":11602,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11581,"src":"3870:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11601,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3862:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":11600,"name":"uint216","nodeType":"ElementaryTypeName","src":"3862:7:44","typeDescriptions":{}}},"id":11603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3862:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"functionReturnParameters":11585,"id":11604,"nodeType":"Return","src":"3855:21:44"}]},"documentation":{"id":11579,"nodeType":"StructuredDocumentation","src":"3380:280:44","text":" @dev Returns the downcasted uint216 from uint256, reverting on\n overflow (when the input is greater than largest uint216).\n Counterpart to Solidity's `uint216` operator.\n Requirements:\n - input must fit into 216 bits"},"id":11606,"implemented":true,"kind":"function","modifiers":[],"name":"toUint216","nameLocation":"3674:9:44","nodeType":"FunctionDefinition","parameters":{"id":11582,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11581,"mutability":"mutable","name":"value","nameLocation":"3692:5:44","nodeType":"VariableDeclaration","scope":11606,"src":"3684:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11580,"name":"uint256","nodeType":"ElementaryTypeName","src":"3684:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3683:15:44"},"returnParameters":{"id":11585,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11584,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11606,"src":"3722:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":11583,"name":"uint216","nodeType":"ElementaryTypeName","src":"3722:7:44","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"3721:9:44"},"scope":13204,"src":"3665:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11633,"nodeType":"Block","src":"4240:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11620,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11614,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11609,"src":"4254:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11617,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4267:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":11616,"name":"uint208","nodeType":"ElementaryTypeName","src":"4267:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"}],"id":11615,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"4262:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11618,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4262:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint208","typeString":"type(uint208)"}},"id":11619,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4276:3:44","memberName":"max","nodeType":"MemberAccess","src":"4262:17:44","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"src":"4254:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11627,"nodeType":"IfStatement","src":"4250:105:44","trueBody":{"id":11626,"nodeType":"Block","src":"4281:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"323038","id":11622,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4333:3:44","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"value":"208"},{"id":11623,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11609,"src":"4338:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11621,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"4302:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11624,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4302:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11625,"nodeType":"RevertStatement","src":"4295:49:44"}]}},{"expression":{"arguments":[{"id":11630,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11609,"src":"4379:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11629,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4371:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":11628,"name":"uint208","nodeType":"ElementaryTypeName","src":"4371:7:44","typeDescriptions":{}}},"id":11631,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4371:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":11613,"id":11632,"nodeType":"Return","src":"4364:21:44"}]},"documentation":{"id":11607,"nodeType":"StructuredDocumentation","src":"3889:280:44","text":" @dev Returns the downcasted uint208 from uint256, reverting on\n overflow (when the input is greater than largest uint208).\n Counterpart to Solidity's `uint208` operator.\n Requirements:\n - input must fit into 208 bits"},"id":11634,"implemented":true,"kind":"function","modifiers":[],"name":"toUint208","nameLocation":"4183:9:44","nodeType":"FunctionDefinition","parameters":{"id":11610,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11609,"mutability":"mutable","name":"value","nameLocation":"4201:5:44","nodeType":"VariableDeclaration","scope":11634,"src":"4193:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11608,"name":"uint256","nodeType":"ElementaryTypeName","src":"4193:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4192:15:44"},"returnParameters":{"id":11613,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11612,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11634,"src":"4231:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":11611,"name":"uint208","nodeType":"ElementaryTypeName","src":"4231:7:44","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"4230:9:44"},"scope":13204,"src":"4174:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11661,"nodeType":"Block","src":"4749:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11648,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11642,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11637,"src":"4763:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11645,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4776:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"},"typeName":{"id":11644,"name":"uint200","nodeType":"ElementaryTypeName","src":"4776:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"}],"id":11643,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"4771:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11646,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4771:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint200","typeString":"type(uint200)"}},"id":11647,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4785:3:44","memberName":"max","nodeType":"MemberAccess","src":"4771:17:44","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"src":"4763:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11655,"nodeType":"IfStatement","src":"4759:105:44","trueBody":{"id":11654,"nodeType":"Block","src":"4790:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"323030","id":11650,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4842:3:44","typeDescriptions":{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},"value":"200"},{"id":11651,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11637,"src":"4847:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11649,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"4811:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11652,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4811:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11653,"nodeType":"RevertStatement","src":"4804:49:44"}]}},{"expression":{"arguments":[{"id":11658,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11637,"src":"4888:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11657,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4880:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"},"typeName":{"id":11656,"name":"uint200","nodeType":"ElementaryTypeName","src":"4880:7:44","typeDescriptions":{}}},"id":11659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4880:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"functionReturnParameters":11641,"id":11660,"nodeType":"Return","src":"4873:21:44"}]},"documentation":{"id":11635,"nodeType":"StructuredDocumentation","src":"4398:280:44","text":" @dev Returns the downcasted uint200 from uint256, reverting on\n overflow (when the input is greater than largest uint200).\n Counterpart to Solidity's `uint200` operator.\n Requirements:\n - input must fit into 200 bits"},"id":11662,"implemented":true,"kind":"function","modifiers":[],"name":"toUint200","nameLocation":"4692:9:44","nodeType":"FunctionDefinition","parameters":{"id":11638,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11637,"mutability":"mutable","name":"value","nameLocation":"4710:5:44","nodeType":"VariableDeclaration","scope":11662,"src":"4702:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11636,"name":"uint256","nodeType":"ElementaryTypeName","src":"4702:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4701:15:44"},"returnParameters":{"id":11641,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11640,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11662,"src":"4740:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"},"typeName":{"id":11639,"name":"uint200","nodeType":"ElementaryTypeName","src":"4740:7:44","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"visibility":"internal"}],"src":"4739:9:44"},"scope":13204,"src":"4683:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11689,"nodeType":"Block","src":"5258:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11670,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11665,"src":"5272:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11673,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5285:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":11672,"name":"uint192","nodeType":"ElementaryTypeName","src":"5285:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"}],"id":11671,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"5280:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11674,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5280:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint192","typeString":"type(uint192)"}},"id":11675,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5294:3:44","memberName":"max","nodeType":"MemberAccess","src":"5280:17:44","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"src":"5272:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11683,"nodeType":"IfStatement","src":"5268:105:44","trueBody":{"id":11682,"nodeType":"Block","src":"5299:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313932","id":11678,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5351:3:44","typeDescriptions":{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},"value":"192"},{"id":11679,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11665,"src":"5356:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11677,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"5320:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11680,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5320:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11681,"nodeType":"RevertStatement","src":"5313:49:44"}]}},{"expression":{"arguments":[{"id":11686,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11665,"src":"5397:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11685,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5389:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":11684,"name":"uint192","nodeType":"ElementaryTypeName","src":"5389:7:44","typeDescriptions":{}}},"id":11687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5389:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"functionReturnParameters":11669,"id":11688,"nodeType":"Return","src":"5382:21:44"}]},"documentation":{"id":11663,"nodeType":"StructuredDocumentation","src":"4907:280:44","text":" @dev Returns the downcasted uint192 from uint256, reverting on\n overflow (when the input is greater than largest uint192).\n Counterpart to Solidity's `uint192` operator.\n Requirements:\n - input must fit into 192 bits"},"id":11690,"implemented":true,"kind":"function","modifiers":[],"name":"toUint192","nameLocation":"5201:9:44","nodeType":"FunctionDefinition","parameters":{"id":11666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11665,"mutability":"mutable","name":"value","nameLocation":"5219:5:44","nodeType":"VariableDeclaration","scope":11690,"src":"5211:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11664,"name":"uint256","nodeType":"ElementaryTypeName","src":"5211:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5210:15:44"},"returnParameters":{"id":11669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11668,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11690,"src":"5249:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":11667,"name":"uint192","nodeType":"ElementaryTypeName","src":"5249:7:44","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"5248:9:44"},"scope":13204,"src":"5192:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11717,"nodeType":"Block","src":"5767:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11704,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11698,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11693,"src":"5781:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11701,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5794:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"},"typeName":{"id":11700,"name":"uint184","nodeType":"ElementaryTypeName","src":"5794:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"}],"id":11699,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"5789:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11702,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5789:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint184","typeString":"type(uint184)"}},"id":11703,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5803:3:44","memberName":"max","nodeType":"MemberAccess","src":"5789:17:44","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"src":"5781:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11711,"nodeType":"IfStatement","src":"5777:105:44","trueBody":{"id":11710,"nodeType":"Block","src":"5808:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313834","id":11706,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5860:3:44","typeDescriptions":{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},"value":"184"},{"id":11707,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11693,"src":"5865:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11705,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"5829:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11708,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5829:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11709,"nodeType":"RevertStatement","src":"5822:49:44"}]}},{"expression":{"arguments":[{"id":11714,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11693,"src":"5906:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11713,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5898:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"},"typeName":{"id":11712,"name":"uint184","nodeType":"ElementaryTypeName","src":"5898:7:44","typeDescriptions":{}}},"id":11715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5898:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"functionReturnParameters":11697,"id":11716,"nodeType":"Return","src":"5891:21:44"}]},"documentation":{"id":11691,"nodeType":"StructuredDocumentation","src":"5416:280:44","text":" @dev Returns the downcasted uint184 from uint256, reverting on\n overflow (when the input is greater than largest uint184).\n Counterpart to Solidity's `uint184` operator.\n Requirements:\n - input must fit into 184 bits"},"id":11718,"implemented":true,"kind":"function","modifiers":[],"name":"toUint184","nameLocation":"5710:9:44","nodeType":"FunctionDefinition","parameters":{"id":11694,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11693,"mutability":"mutable","name":"value","nameLocation":"5728:5:44","nodeType":"VariableDeclaration","scope":11718,"src":"5720:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11692,"name":"uint256","nodeType":"ElementaryTypeName","src":"5720:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5719:15:44"},"returnParameters":{"id":11697,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11696,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11718,"src":"5758:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"},"typeName":{"id":11695,"name":"uint184","nodeType":"ElementaryTypeName","src":"5758:7:44","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"visibility":"internal"}],"src":"5757:9:44"},"scope":13204,"src":"5701:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11745,"nodeType":"Block","src":"6276:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11726,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11721,"src":"6290:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11729,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6303:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"},"typeName":{"id":11728,"name":"uint176","nodeType":"ElementaryTypeName","src":"6303:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"}],"id":11727,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"6298:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11730,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6298:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint176","typeString":"type(uint176)"}},"id":11731,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6312:3:44","memberName":"max","nodeType":"MemberAccess","src":"6298:17:44","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"src":"6290:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11739,"nodeType":"IfStatement","src":"6286:105:44","trueBody":{"id":11738,"nodeType":"Block","src":"6317:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313736","id":11734,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6369:3:44","typeDescriptions":{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},"value":"176"},{"id":11735,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11721,"src":"6374:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11733,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"6338:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11736,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6338:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11737,"nodeType":"RevertStatement","src":"6331:49:44"}]}},{"expression":{"arguments":[{"id":11742,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11721,"src":"6415:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11741,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6407:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"},"typeName":{"id":11740,"name":"uint176","nodeType":"ElementaryTypeName","src":"6407:7:44","typeDescriptions":{}}},"id":11743,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6407:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"functionReturnParameters":11725,"id":11744,"nodeType":"Return","src":"6400:21:44"}]},"documentation":{"id":11719,"nodeType":"StructuredDocumentation","src":"5925:280:44","text":" @dev Returns the downcasted uint176 from uint256, reverting on\n overflow (when the input is greater than largest uint176).\n Counterpart to Solidity's `uint176` operator.\n Requirements:\n - input must fit into 176 bits"},"id":11746,"implemented":true,"kind":"function","modifiers":[],"name":"toUint176","nameLocation":"6219:9:44","nodeType":"FunctionDefinition","parameters":{"id":11722,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11721,"mutability":"mutable","name":"value","nameLocation":"6237:5:44","nodeType":"VariableDeclaration","scope":11746,"src":"6229:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11720,"name":"uint256","nodeType":"ElementaryTypeName","src":"6229:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6228:15:44"},"returnParameters":{"id":11725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11724,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11746,"src":"6267:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"},"typeName":{"id":11723,"name":"uint176","nodeType":"ElementaryTypeName","src":"6267:7:44","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"visibility":"internal"}],"src":"6266:9:44"},"scope":13204,"src":"6210:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11773,"nodeType":"Block","src":"6785:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11754,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11749,"src":"6799:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11757,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6812:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"},"typeName":{"id":11756,"name":"uint168","nodeType":"ElementaryTypeName","src":"6812:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"}],"id":11755,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"6807:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11758,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6807:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint168","typeString":"type(uint168)"}},"id":11759,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6821:3:44","memberName":"max","nodeType":"MemberAccess","src":"6807:17:44","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"src":"6799:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11767,"nodeType":"IfStatement","src":"6795:105:44","trueBody":{"id":11766,"nodeType":"Block","src":"6826:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313638","id":11762,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6878:3:44","typeDescriptions":{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},"value":"168"},{"id":11763,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11749,"src":"6883:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11761,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"6847:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11764,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6847:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11765,"nodeType":"RevertStatement","src":"6840:49:44"}]}},{"expression":{"arguments":[{"id":11770,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11749,"src":"6924:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11769,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6916:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"},"typeName":{"id":11768,"name":"uint168","nodeType":"ElementaryTypeName","src":"6916:7:44","typeDescriptions":{}}},"id":11771,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6916:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"functionReturnParameters":11753,"id":11772,"nodeType":"Return","src":"6909:21:44"}]},"documentation":{"id":11747,"nodeType":"StructuredDocumentation","src":"6434:280:44","text":" @dev Returns the downcasted uint168 from uint256, reverting on\n overflow (when the input is greater than largest uint168).\n Counterpart to Solidity's `uint168` operator.\n Requirements:\n - input must fit into 168 bits"},"id":11774,"implemented":true,"kind":"function","modifiers":[],"name":"toUint168","nameLocation":"6728:9:44","nodeType":"FunctionDefinition","parameters":{"id":11750,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11749,"mutability":"mutable","name":"value","nameLocation":"6746:5:44","nodeType":"VariableDeclaration","scope":11774,"src":"6738:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11748,"name":"uint256","nodeType":"ElementaryTypeName","src":"6738:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6737:15:44"},"returnParameters":{"id":11753,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11752,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11774,"src":"6776:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"},"typeName":{"id":11751,"name":"uint168","nodeType":"ElementaryTypeName","src":"6776:7:44","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"visibility":"internal"}],"src":"6775:9:44"},"scope":13204,"src":"6719:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11801,"nodeType":"Block","src":"7294:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11782,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11777,"src":"7308:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11785,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7321:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":11784,"name":"uint160","nodeType":"ElementaryTypeName","src":"7321:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"}],"id":11783,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"7316:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11786,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7316:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint160","typeString":"type(uint160)"}},"id":11787,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7330:3:44","memberName":"max","nodeType":"MemberAccess","src":"7316:17:44","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"src":"7308:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11795,"nodeType":"IfStatement","src":"7304:105:44","trueBody":{"id":11794,"nodeType":"Block","src":"7335:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313630","id":11790,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7387:3:44","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},{"id":11791,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11777,"src":"7392:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11789,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"7356:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11792,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7356:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11793,"nodeType":"RevertStatement","src":"7349:49:44"}]}},{"expression":{"arguments":[{"id":11798,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11777,"src":"7433:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11797,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7425:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":11796,"name":"uint160","nodeType":"ElementaryTypeName","src":"7425:7:44","typeDescriptions":{}}},"id":11799,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7425:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":11781,"id":11800,"nodeType":"Return","src":"7418:21:44"}]},"documentation":{"id":11775,"nodeType":"StructuredDocumentation","src":"6943:280:44","text":" @dev Returns the downcasted uint160 from uint256, reverting on\n overflow (when the input is greater than largest uint160).\n Counterpart to Solidity's `uint160` operator.\n Requirements:\n - input must fit into 160 bits"},"id":11802,"implemented":true,"kind":"function","modifiers":[],"name":"toUint160","nameLocation":"7237:9:44","nodeType":"FunctionDefinition","parameters":{"id":11778,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11777,"mutability":"mutable","name":"value","nameLocation":"7255:5:44","nodeType":"VariableDeclaration","scope":11802,"src":"7247:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11776,"name":"uint256","nodeType":"ElementaryTypeName","src":"7247:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7246:15:44"},"returnParameters":{"id":11781,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11780,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11802,"src":"7285:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":11779,"name":"uint160","nodeType":"ElementaryTypeName","src":"7285:7:44","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"7284:9:44"},"scope":13204,"src":"7228:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11829,"nodeType":"Block","src":"7803:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11816,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11810,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11805,"src":"7817:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11813,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7830:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"},"typeName":{"id":11812,"name":"uint152","nodeType":"ElementaryTypeName","src":"7830:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"}],"id":11811,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"7825:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11814,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7825:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint152","typeString":"type(uint152)"}},"id":11815,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7839:3:44","memberName":"max","nodeType":"MemberAccess","src":"7825:17:44","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"src":"7817:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11823,"nodeType":"IfStatement","src":"7813:105:44","trueBody":{"id":11822,"nodeType":"Block","src":"7844:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313532","id":11818,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7896:3:44","typeDescriptions":{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},"value":"152"},{"id":11819,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11805,"src":"7901:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11817,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"7865:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11820,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7865:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11821,"nodeType":"RevertStatement","src":"7858:49:44"}]}},{"expression":{"arguments":[{"id":11826,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11805,"src":"7942:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11825,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7934:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"},"typeName":{"id":11824,"name":"uint152","nodeType":"ElementaryTypeName","src":"7934:7:44","typeDescriptions":{}}},"id":11827,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7934:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"functionReturnParameters":11809,"id":11828,"nodeType":"Return","src":"7927:21:44"}]},"documentation":{"id":11803,"nodeType":"StructuredDocumentation","src":"7452:280:44","text":" @dev Returns the downcasted uint152 from uint256, reverting on\n overflow (when the input is greater than largest uint152).\n Counterpart to Solidity's `uint152` operator.\n Requirements:\n - input must fit into 152 bits"},"id":11830,"implemented":true,"kind":"function","modifiers":[],"name":"toUint152","nameLocation":"7746:9:44","nodeType":"FunctionDefinition","parameters":{"id":11806,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11805,"mutability":"mutable","name":"value","nameLocation":"7764:5:44","nodeType":"VariableDeclaration","scope":11830,"src":"7756:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11804,"name":"uint256","nodeType":"ElementaryTypeName","src":"7756:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7755:15:44"},"returnParameters":{"id":11809,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11808,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11830,"src":"7794:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"},"typeName":{"id":11807,"name":"uint152","nodeType":"ElementaryTypeName","src":"7794:7:44","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"visibility":"internal"}],"src":"7793:9:44"},"scope":13204,"src":"7737:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11857,"nodeType":"Block","src":"8312:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11844,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11838,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11833,"src":"8326:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11841,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8339:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"},"typeName":{"id":11840,"name":"uint144","nodeType":"ElementaryTypeName","src":"8339:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"}],"id":11839,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"8334:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11842,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8334:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint144","typeString":"type(uint144)"}},"id":11843,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8348:3:44","memberName":"max","nodeType":"MemberAccess","src":"8334:17:44","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"src":"8326:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11851,"nodeType":"IfStatement","src":"8322:105:44","trueBody":{"id":11850,"nodeType":"Block","src":"8353:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313434","id":11846,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8405:3:44","typeDescriptions":{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},"value":"144"},{"id":11847,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11833,"src":"8410:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11845,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"8374:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11848,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8374:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11849,"nodeType":"RevertStatement","src":"8367:49:44"}]}},{"expression":{"arguments":[{"id":11854,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11833,"src":"8451:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11853,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8443:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"},"typeName":{"id":11852,"name":"uint144","nodeType":"ElementaryTypeName","src":"8443:7:44","typeDescriptions":{}}},"id":11855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8443:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"functionReturnParameters":11837,"id":11856,"nodeType":"Return","src":"8436:21:44"}]},"documentation":{"id":11831,"nodeType":"StructuredDocumentation","src":"7961:280:44","text":" @dev Returns the downcasted uint144 from uint256, reverting on\n overflow (when the input is greater than largest uint144).\n Counterpart to Solidity's `uint144` operator.\n Requirements:\n - input must fit into 144 bits"},"id":11858,"implemented":true,"kind":"function","modifiers":[],"name":"toUint144","nameLocation":"8255:9:44","nodeType":"FunctionDefinition","parameters":{"id":11834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11833,"mutability":"mutable","name":"value","nameLocation":"8273:5:44","nodeType":"VariableDeclaration","scope":11858,"src":"8265:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11832,"name":"uint256","nodeType":"ElementaryTypeName","src":"8265:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8264:15:44"},"returnParameters":{"id":11837,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11836,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11858,"src":"8303:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"},"typeName":{"id":11835,"name":"uint144","nodeType":"ElementaryTypeName","src":"8303:7:44","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"visibility":"internal"}],"src":"8302:9:44"},"scope":13204,"src":"8246:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11885,"nodeType":"Block","src":"8821:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11866,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11861,"src":"8835:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11869,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8848:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"},"typeName":{"id":11868,"name":"uint136","nodeType":"ElementaryTypeName","src":"8848:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"}],"id":11867,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"8843:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11870,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8843:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint136","typeString":"type(uint136)"}},"id":11871,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8857:3:44","memberName":"max","nodeType":"MemberAccess","src":"8843:17:44","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"src":"8835:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11879,"nodeType":"IfStatement","src":"8831:105:44","trueBody":{"id":11878,"nodeType":"Block","src":"8862:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313336","id":11874,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8914:3:44","typeDescriptions":{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},"value":"136"},{"id":11875,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11861,"src":"8919:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11873,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"8883:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11876,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8883:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11877,"nodeType":"RevertStatement","src":"8876:49:44"}]}},{"expression":{"arguments":[{"id":11882,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11861,"src":"8960:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11881,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8952:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"},"typeName":{"id":11880,"name":"uint136","nodeType":"ElementaryTypeName","src":"8952:7:44","typeDescriptions":{}}},"id":11883,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8952:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"functionReturnParameters":11865,"id":11884,"nodeType":"Return","src":"8945:21:44"}]},"documentation":{"id":11859,"nodeType":"StructuredDocumentation","src":"8470:280:44","text":" @dev Returns the downcasted uint136 from uint256, reverting on\n overflow (when the input is greater than largest uint136).\n Counterpart to Solidity's `uint136` operator.\n Requirements:\n - input must fit into 136 bits"},"id":11886,"implemented":true,"kind":"function","modifiers":[],"name":"toUint136","nameLocation":"8764:9:44","nodeType":"FunctionDefinition","parameters":{"id":11862,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11861,"mutability":"mutable","name":"value","nameLocation":"8782:5:44","nodeType":"VariableDeclaration","scope":11886,"src":"8774:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11860,"name":"uint256","nodeType":"ElementaryTypeName","src":"8774:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8773:15:44"},"returnParameters":{"id":11865,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11864,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11886,"src":"8812:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"},"typeName":{"id":11863,"name":"uint136","nodeType":"ElementaryTypeName","src":"8812:7:44","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"visibility":"internal"}],"src":"8811:9:44"},"scope":13204,"src":"8755:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11913,"nodeType":"Block","src":"9330:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11894,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11889,"src":"9344:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11897,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9357:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":11896,"name":"uint128","nodeType":"ElementaryTypeName","src":"9357:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"}],"id":11895,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"9352:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11898,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9352:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint128","typeString":"type(uint128)"}},"id":11899,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9366:3:44","memberName":"max","nodeType":"MemberAccess","src":"9352:17:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"9344:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11907,"nodeType":"IfStatement","src":"9340:105:44","trueBody":{"id":11906,"nodeType":"Block","src":"9371:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313238","id":11902,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9423:3:44","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},{"id":11903,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11889,"src":"9428:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11901,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"9392:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11904,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9392:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11905,"nodeType":"RevertStatement","src":"9385:49:44"}]}},{"expression":{"arguments":[{"id":11910,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11889,"src":"9469:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11909,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9461:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":11908,"name":"uint128","nodeType":"ElementaryTypeName","src":"9461:7:44","typeDescriptions":{}}},"id":11911,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9461:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":11893,"id":11912,"nodeType":"Return","src":"9454:21:44"}]},"documentation":{"id":11887,"nodeType":"StructuredDocumentation","src":"8979:280:44","text":" @dev Returns the downcasted uint128 from uint256, reverting on\n overflow (when the input is greater than largest uint128).\n Counterpart to Solidity's `uint128` operator.\n Requirements:\n - input must fit into 128 bits"},"id":11914,"implemented":true,"kind":"function","modifiers":[],"name":"toUint128","nameLocation":"9273:9:44","nodeType":"FunctionDefinition","parameters":{"id":11890,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11889,"mutability":"mutable","name":"value","nameLocation":"9291:5:44","nodeType":"VariableDeclaration","scope":11914,"src":"9283:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11888,"name":"uint256","nodeType":"ElementaryTypeName","src":"9283:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9282:15:44"},"returnParameters":{"id":11893,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11892,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11914,"src":"9321:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":11891,"name":"uint128","nodeType":"ElementaryTypeName","src":"9321:7:44","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"9320:9:44"},"scope":13204,"src":"9264:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11941,"nodeType":"Block","src":"9839:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11922,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11917,"src":"9853:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11925,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9866:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":11924,"name":"uint120","nodeType":"ElementaryTypeName","src":"9866:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"}],"id":11923,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"9861:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11926,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9861:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint120","typeString":"type(uint120)"}},"id":11927,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9875:3:44","memberName":"max","nodeType":"MemberAccess","src":"9861:17:44","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"src":"9853:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11935,"nodeType":"IfStatement","src":"9849:105:44","trueBody":{"id":11934,"nodeType":"Block","src":"9880:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313230","id":11930,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9932:3:44","typeDescriptions":{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},"value":"120"},{"id":11931,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11917,"src":"9937:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11929,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"9901:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11932,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9901:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11933,"nodeType":"RevertStatement","src":"9894:49:44"}]}},{"expression":{"arguments":[{"id":11938,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11917,"src":"9978:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11937,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9970:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":11936,"name":"uint120","nodeType":"ElementaryTypeName","src":"9970:7:44","typeDescriptions":{}}},"id":11939,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9970:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"functionReturnParameters":11921,"id":11940,"nodeType":"Return","src":"9963:21:44"}]},"documentation":{"id":11915,"nodeType":"StructuredDocumentation","src":"9488:280:44","text":" @dev Returns the downcasted uint120 from uint256, reverting on\n overflow (when the input is greater than largest uint120).\n Counterpart to Solidity's `uint120` operator.\n Requirements:\n - input must fit into 120 bits"},"id":11942,"implemented":true,"kind":"function","modifiers":[],"name":"toUint120","nameLocation":"9782:9:44","nodeType":"FunctionDefinition","parameters":{"id":11918,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11917,"mutability":"mutable","name":"value","nameLocation":"9800:5:44","nodeType":"VariableDeclaration","scope":11942,"src":"9792:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11916,"name":"uint256","nodeType":"ElementaryTypeName","src":"9792:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9791:15:44"},"returnParameters":{"id":11921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11920,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11942,"src":"9830:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"},"typeName":{"id":11919,"name":"uint120","nodeType":"ElementaryTypeName","src":"9830:7:44","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"visibility":"internal"}],"src":"9829:9:44"},"scope":13204,"src":"9773:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11969,"nodeType":"Block","src":"10348:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11956,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11950,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11945,"src":"10362:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11953,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10375:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":11952,"name":"uint112","nodeType":"ElementaryTypeName","src":"10375:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"}],"id":11951,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"10370:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11954,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10370:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint112","typeString":"type(uint112)"}},"id":11955,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10384:3:44","memberName":"max","nodeType":"MemberAccess","src":"10370:17:44","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"10362:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11963,"nodeType":"IfStatement","src":"10358:105:44","trueBody":{"id":11962,"nodeType":"Block","src":"10389:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313132","id":11958,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10441:3:44","typeDescriptions":{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},"value":"112"},{"id":11959,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11945,"src":"10446:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11957,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"10410:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11960,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10410:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11961,"nodeType":"RevertStatement","src":"10403:49:44"}]}},{"expression":{"arguments":[{"id":11966,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11945,"src":"10487:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11965,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10479:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":11964,"name":"uint112","nodeType":"ElementaryTypeName","src":"10479:7:44","typeDescriptions":{}}},"id":11967,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10479:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"functionReturnParameters":11949,"id":11968,"nodeType":"Return","src":"10472:21:44"}]},"documentation":{"id":11943,"nodeType":"StructuredDocumentation","src":"9997:280:44","text":" @dev Returns the downcasted uint112 from uint256, reverting on\n overflow (when the input is greater than largest uint112).\n Counterpart to Solidity's `uint112` operator.\n Requirements:\n - input must fit into 112 bits"},"id":11970,"implemented":true,"kind":"function","modifiers":[],"name":"toUint112","nameLocation":"10291:9:44","nodeType":"FunctionDefinition","parameters":{"id":11946,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11945,"mutability":"mutable","name":"value","nameLocation":"10309:5:44","nodeType":"VariableDeclaration","scope":11970,"src":"10301:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11944,"name":"uint256","nodeType":"ElementaryTypeName","src":"10301:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10300:15:44"},"returnParameters":{"id":11949,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11948,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11970,"src":"10339:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":11947,"name":"uint112","nodeType":"ElementaryTypeName","src":"10339:7:44","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"}],"src":"10338:9:44"},"scope":13204,"src":"10282:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11997,"nodeType":"Block","src":"10857:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11978,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11973,"src":"10871:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":11981,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10884:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"},"typeName":{"id":11980,"name":"uint104","nodeType":"ElementaryTypeName","src":"10884:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"}],"id":11979,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"10879:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11982,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10879:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint104","typeString":"type(uint104)"}},"id":11983,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10893:3:44","memberName":"max","nodeType":"MemberAccess","src":"10879:17:44","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"src":"10871:25:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11991,"nodeType":"IfStatement","src":"10867:105:44","trueBody":{"id":11990,"nodeType":"Block","src":"10898:74:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313034","id":11986,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10950:3:44","typeDescriptions":{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},"value":"104"},{"id":11987,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11973,"src":"10955:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11985,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"10919:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":11988,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10919:42:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11989,"nodeType":"RevertStatement","src":"10912:49:44"}]}},{"expression":{"arguments":[{"id":11994,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11973,"src":"10996:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11993,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10988:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"},"typeName":{"id":11992,"name":"uint104","nodeType":"ElementaryTypeName","src":"10988:7:44","typeDescriptions":{}}},"id":11995,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10988:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"functionReturnParameters":11977,"id":11996,"nodeType":"Return","src":"10981:21:44"}]},"documentation":{"id":11971,"nodeType":"StructuredDocumentation","src":"10506:280:44","text":" @dev Returns the downcasted uint104 from uint256, reverting on\n overflow (when the input is greater than largest uint104).\n Counterpart to Solidity's `uint104` operator.\n Requirements:\n - input must fit into 104 bits"},"id":11998,"implemented":true,"kind":"function","modifiers":[],"name":"toUint104","nameLocation":"10800:9:44","nodeType":"FunctionDefinition","parameters":{"id":11974,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11973,"mutability":"mutable","name":"value","nameLocation":"10818:5:44","nodeType":"VariableDeclaration","scope":11998,"src":"10810:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11972,"name":"uint256","nodeType":"ElementaryTypeName","src":"10810:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10809:15:44"},"returnParameters":{"id":11977,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11976,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11998,"src":"10848:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"},"typeName":{"id":11975,"name":"uint104","nodeType":"ElementaryTypeName","src":"10848:7:44","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"visibility":"internal"}],"src":"10847:9:44"},"scope":13204,"src":"10791:218:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12025,"nodeType":"Block","src":"11360:149:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12012,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12006,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12001,"src":"11374:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":12009,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11387:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":12008,"name":"uint96","nodeType":"ElementaryTypeName","src":"11387:6:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"}],"id":12007,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"11382:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":12010,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11382:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint96","typeString":"type(uint96)"}},"id":12011,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11395:3:44","memberName":"max","nodeType":"MemberAccess","src":"11382:16:44","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"11374:24:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12019,"nodeType":"IfStatement","src":"11370:103:44","trueBody":{"id":12018,"nodeType":"Block","src":"11400:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3936","id":12014,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11452:2:44","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},{"id":12015,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12001,"src":"11456:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12013,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"11421:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":12016,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11421:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12017,"nodeType":"RevertStatement","src":"11414:48:44"}]}},{"expression":{"arguments":[{"id":12022,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12001,"src":"11496:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12021,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11489:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":12020,"name":"uint96","nodeType":"ElementaryTypeName","src":"11489:6:44","typeDescriptions":{}}},"id":12023,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11489:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"functionReturnParameters":12005,"id":12024,"nodeType":"Return","src":"11482:20:44"}]},"documentation":{"id":11999,"nodeType":"StructuredDocumentation","src":"11015:276:44","text":" @dev Returns the downcasted uint96 from uint256, reverting on\n overflow (when the input is greater than largest uint96).\n Counterpart to Solidity's `uint96` operator.\n Requirements:\n - input must fit into 96 bits"},"id":12026,"implemented":true,"kind":"function","modifiers":[],"name":"toUint96","nameLocation":"11305:8:44","nodeType":"FunctionDefinition","parameters":{"id":12002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12001,"mutability":"mutable","name":"value","nameLocation":"11322:5:44","nodeType":"VariableDeclaration","scope":12026,"src":"11314:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12000,"name":"uint256","nodeType":"ElementaryTypeName","src":"11314:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11313:15:44"},"returnParameters":{"id":12005,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12004,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12026,"src":"11352:6:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":12003,"name":"uint96","nodeType":"ElementaryTypeName","src":"11352:6:44","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"11351:8:44"},"scope":13204,"src":"11296:213:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12053,"nodeType":"Block","src":"11860:149:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12040,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12034,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12029,"src":"11874:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":12037,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11887:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"},"typeName":{"id":12036,"name":"uint88","nodeType":"ElementaryTypeName","src":"11887:6:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"}],"id":12035,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"11882:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":12038,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11882:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint88","typeString":"type(uint88)"}},"id":12039,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11895:3:44","memberName":"max","nodeType":"MemberAccess","src":"11882:16:44","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"src":"11874:24:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12047,"nodeType":"IfStatement","src":"11870:103:44","trueBody":{"id":12046,"nodeType":"Block","src":"11900:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3838","id":12042,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11952:2:44","typeDescriptions":{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},"value":"88"},{"id":12043,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12029,"src":"11956:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12041,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"11921:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":12044,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11921:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12045,"nodeType":"RevertStatement","src":"11914:48:44"}]}},{"expression":{"arguments":[{"id":12050,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12029,"src":"11996:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12049,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11989:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"},"typeName":{"id":12048,"name":"uint88","nodeType":"ElementaryTypeName","src":"11989:6:44","typeDescriptions":{}}},"id":12051,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11989:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"functionReturnParameters":12033,"id":12052,"nodeType":"Return","src":"11982:20:44"}]},"documentation":{"id":12027,"nodeType":"StructuredDocumentation","src":"11515:276:44","text":" @dev Returns the downcasted uint88 from uint256, reverting on\n overflow (when the input is greater than largest uint88).\n Counterpart to Solidity's `uint88` operator.\n Requirements:\n - input must fit into 88 bits"},"id":12054,"implemented":true,"kind":"function","modifiers":[],"name":"toUint88","nameLocation":"11805:8:44","nodeType":"FunctionDefinition","parameters":{"id":12030,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12029,"mutability":"mutable","name":"value","nameLocation":"11822:5:44","nodeType":"VariableDeclaration","scope":12054,"src":"11814:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12028,"name":"uint256","nodeType":"ElementaryTypeName","src":"11814:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11813:15:44"},"returnParameters":{"id":12033,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12032,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12054,"src":"11852:6:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"},"typeName":{"id":12031,"name":"uint88","nodeType":"ElementaryTypeName","src":"11852:6:44","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"visibility":"internal"}],"src":"11851:8:44"},"scope":13204,"src":"11796:213:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12081,"nodeType":"Block","src":"12360:149:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12062,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12057,"src":"12374:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":12065,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12387:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"},"typeName":{"id":12064,"name":"uint80","nodeType":"ElementaryTypeName","src":"12387:6:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"}],"id":12063,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"12382:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":12066,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12382:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint80","typeString":"type(uint80)"}},"id":12067,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12395:3:44","memberName":"max","nodeType":"MemberAccess","src":"12382:16:44","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"src":"12374:24:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12075,"nodeType":"IfStatement","src":"12370:103:44","trueBody":{"id":12074,"nodeType":"Block","src":"12400:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3830","id":12070,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12452:2:44","typeDescriptions":{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},"value":"80"},{"id":12071,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12057,"src":"12456:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12069,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"12421:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":12072,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12421:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12073,"nodeType":"RevertStatement","src":"12414:48:44"}]}},{"expression":{"arguments":[{"id":12078,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12057,"src":"12496:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12077,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12489:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"},"typeName":{"id":12076,"name":"uint80","nodeType":"ElementaryTypeName","src":"12489:6:44","typeDescriptions":{}}},"id":12079,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12489:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"functionReturnParameters":12061,"id":12080,"nodeType":"Return","src":"12482:20:44"}]},"documentation":{"id":12055,"nodeType":"StructuredDocumentation","src":"12015:276:44","text":" @dev Returns the downcasted uint80 from uint256, reverting on\n overflow (when the input is greater than largest uint80).\n Counterpart to Solidity's `uint80` operator.\n Requirements:\n - input must fit into 80 bits"},"id":12082,"implemented":true,"kind":"function","modifiers":[],"name":"toUint80","nameLocation":"12305:8:44","nodeType":"FunctionDefinition","parameters":{"id":12058,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12057,"mutability":"mutable","name":"value","nameLocation":"12322:5:44","nodeType":"VariableDeclaration","scope":12082,"src":"12314:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12056,"name":"uint256","nodeType":"ElementaryTypeName","src":"12314:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12313:15:44"},"returnParameters":{"id":12061,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12060,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12082,"src":"12352:6:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"},"typeName":{"id":12059,"name":"uint80","nodeType":"ElementaryTypeName","src":"12352:6:44","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"visibility":"internal"}],"src":"12351:8:44"},"scope":13204,"src":"12296:213:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12109,"nodeType":"Block","src":"12860:149:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12096,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12090,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12085,"src":"12874:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":12093,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12887:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"},"typeName":{"id":12092,"name":"uint72","nodeType":"ElementaryTypeName","src":"12887:6:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"}],"id":12091,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"12882:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":12094,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12882:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint72","typeString":"type(uint72)"}},"id":12095,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12895:3:44","memberName":"max","nodeType":"MemberAccess","src":"12882:16:44","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"src":"12874:24:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12103,"nodeType":"IfStatement","src":"12870:103:44","trueBody":{"id":12102,"nodeType":"Block","src":"12900:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3732","id":12098,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12952:2:44","typeDescriptions":{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},"value":"72"},{"id":12099,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12085,"src":"12956:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12097,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"12921:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":12100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12921:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12101,"nodeType":"RevertStatement","src":"12914:48:44"}]}},{"expression":{"arguments":[{"id":12106,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12085,"src":"12996:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12105,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12989:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"},"typeName":{"id":12104,"name":"uint72","nodeType":"ElementaryTypeName","src":"12989:6:44","typeDescriptions":{}}},"id":12107,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12989:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"functionReturnParameters":12089,"id":12108,"nodeType":"Return","src":"12982:20:44"}]},"documentation":{"id":12083,"nodeType":"StructuredDocumentation","src":"12515:276:44","text":" @dev Returns the downcasted uint72 from uint256, reverting on\n overflow (when the input is greater than largest uint72).\n Counterpart to Solidity's `uint72` operator.\n Requirements:\n - input must fit into 72 bits"},"id":12110,"implemented":true,"kind":"function","modifiers":[],"name":"toUint72","nameLocation":"12805:8:44","nodeType":"FunctionDefinition","parameters":{"id":12086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12085,"mutability":"mutable","name":"value","nameLocation":"12822:5:44","nodeType":"VariableDeclaration","scope":12110,"src":"12814:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12084,"name":"uint256","nodeType":"ElementaryTypeName","src":"12814:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12813:15:44"},"returnParameters":{"id":12089,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12088,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12110,"src":"12852:6:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"},"typeName":{"id":12087,"name":"uint72","nodeType":"ElementaryTypeName","src":"12852:6:44","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"visibility":"internal"}],"src":"12851:8:44"},"scope":13204,"src":"12796:213:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12137,"nodeType":"Block","src":"13360:149:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12118,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12113,"src":"13374:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":12121,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13387:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":12120,"name":"uint64","nodeType":"ElementaryTypeName","src":"13387:6:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":12119,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"13382:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":12122,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13382:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":12123,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13395:3:44","memberName":"max","nodeType":"MemberAccess","src":"13382:16:44","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13374:24:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12131,"nodeType":"IfStatement","src":"13370:103:44","trueBody":{"id":12130,"nodeType":"Block","src":"13400:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3634","id":12126,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13452:2:44","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},{"id":12127,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12113,"src":"13456:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12125,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"13421:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":12128,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13421:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12129,"nodeType":"RevertStatement","src":"13414:48:44"}]}},{"expression":{"arguments":[{"id":12134,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12113,"src":"13496:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12133,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13489:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":12132,"name":"uint64","nodeType":"ElementaryTypeName","src":"13489:6:44","typeDescriptions":{}}},"id":12135,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13489:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":12117,"id":12136,"nodeType":"Return","src":"13482:20:44"}]},"documentation":{"id":12111,"nodeType":"StructuredDocumentation","src":"13015:276:44","text":" @dev Returns the downcasted uint64 from uint256, reverting on\n overflow (when the input is greater than largest uint64).\n Counterpart to Solidity's `uint64` operator.\n Requirements:\n - input must fit into 64 bits"},"id":12138,"implemented":true,"kind":"function","modifiers":[],"name":"toUint64","nameLocation":"13305:8:44","nodeType":"FunctionDefinition","parameters":{"id":12114,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12113,"mutability":"mutable","name":"value","nameLocation":"13322:5:44","nodeType":"VariableDeclaration","scope":12138,"src":"13314:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12112,"name":"uint256","nodeType":"ElementaryTypeName","src":"13314:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13313:15:44"},"returnParameters":{"id":12117,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12116,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12138,"src":"13352:6:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":12115,"name":"uint64","nodeType":"ElementaryTypeName","src":"13352:6:44","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"13351:8:44"},"scope":13204,"src":"13296:213:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12165,"nodeType":"Block","src":"13860:149:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12146,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12141,"src":"13874:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":12149,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13887:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"},"typeName":{"id":12148,"name":"uint56","nodeType":"ElementaryTypeName","src":"13887:6:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"}],"id":12147,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"13882:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":12150,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13882:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint56","typeString":"type(uint56)"}},"id":12151,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13895:3:44","memberName":"max","nodeType":"MemberAccess","src":"13882:16:44","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"src":"13874:24:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12159,"nodeType":"IfStatement","src":"13870:103:44","trueBody":{"id":12158,"nodeType":"Block","src":"13900:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3536","id":12154,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13952:2:44","typeDescriptions":{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},"value":"56"},{"id":12155,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12141,"src":"13956:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12153,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"13921:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":12156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13921:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12157,"nodeType":"RevertStatement","src":"13914:48:44"}]}},{"expression":{"arguments":[{"id":12162,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12141,"src":"13996:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12161,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13989:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"},"typeName":{"id":12160,"name":"uint56","nodeType":"ElementaryTypeName","src":"13989:6:44","typeDescriptions":{}}},"id":12163,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13989:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"functionReturnParameters":12145,"id":12164,"nodeType":"Return","src":"13982:20:44"}]},"documentation":{"id":12139,"nodeType":"StructuredDocumentation","src":"13515:276:44","text":" @dev Returns the downcasted uint56 from uint256, reverting on\n overflow (when the input is greater than largest uint56).\n Counterpart to Solidity's `uint56` operator.\n Requirements:\n - input must fit into 56 bits"},"id":12166,"implemented":true,"kind":"function","modifiers":[],"name":"toUint56","nameLocation":"13805:8:44","nodeType":"FunctionDefinition","parameters":{"id":12142,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12141,"mutability":"mutable","name":"value","nameLocation":"13822:5:44","nodeType":"VariableDeclaration","scope":12166,"src":"13814:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12140,"name":"uint256","nodeType":"ElementaryTypeName","src":"13814:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13813:15:44"},"returnParameters":{"id":12145,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12144,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12166,"src":"13852:6:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"},"typeName":{"id":12143,"name":"uint56","nodeType":"ElementaryTypeName","src":"13852:6:44","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"visibility":"internal"}],"src":"13851:8:44"},"scope":13204,"src":"13796:213:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12193,"nodeType":"Block","src":"14360:149:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12174,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12169,"src":"14374:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":12177,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14387:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":12176,"name":"uint48","nodeType":"ElementaryTypeName","src":"14387:6:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"}],"id":12175,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"14382:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":12178,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14382:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint48","typeString":"type(uint48)"}},"id":12179,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14395:3:44","memberName":"max","nodeType":"MemberAccess","src":"14382:16:44","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"14374:24:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12187,"nodeType":"IfStatement","src":"14370:103:44","trueBody":{"id":12186,"nodeType":"Block","src":"14400:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3438","id":12182,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14452:2:44","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},{"id":12183,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12169,"src":"14456:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12181,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"14421:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":12184,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14421:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12185,"nodeType":"RevertStatement","src":"14414:48:44"}]}},{"expression":{"arguments":[{"id":12190,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12169,"src":"14496:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12189,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14489:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":12188,"name":"uint48","nodeType":"ElementaryTypeName","src":"14489:6:44","typeDescriptions":{}}},"id":12191,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14489:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":12173,"id":12192,"nodeType":"Return","src":"14482:20:44"}]},"documentation":{"id":12167,"nodeType":"StructuredDocumentation","src":"14015:276:44","text":" @dev Returns the downcasted uint48 from uint256, reverting on\n overflow (when the input is greater than largest uint48).\n Counterpart to Solidity's `uint48` operator.\n Requirements:\n - input must fit into 48 bits"},"id":12194,"implemented":true,"kind":"function","modifiers":[],"name":"toUint48","nameLocation":"14305:8:44","nodeType":"FunctionDefinition","parameters":{"id":12170,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12169,"mutability":"mutable","name":"value","nameLocation":"14322:5:44","nodeType":"VariableDeclaration","scope":12194,"src":"14314:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12168,"name":"uint256","nodeType":"ElementaryTypeName","src":"14314:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14313:15:44"},"returnParameters":{"id":12173,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12172,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12194,"src":"14352:6:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":12171,"name":"uint48","nodeType":"ElementaryTypeName","src":"14352:6:44","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"14351:8:44"},"scope":13204,"src":"14296:213:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12221,"nodeType":"Block","src":"14860:149:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12202,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12197,"src":"14874:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":12205,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14887:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":12204,"name":"uint40","nodeType":"ElementaryTypeName","src":"14887:6:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"}],"id":12203,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"14882:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":12206,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14882:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint40","typeString":"type(uint40)"}},"id":12207,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14895:3:44","memberName":"max","nodeType":"MemberAccess","src":"14882:16:44","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"14874:24:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12215,"nodeType":"IfStatement","src":"14870:103:44","trueBody":{"id":12214,"nodeType":"Block","src":"14900:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3430","id":12210,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14952:2:44","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},{"id":12211,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12197,"src":"14956:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12209,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"14921:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":12212,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14921:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12213,"nodeType":"RevertStatement","src":"14914:48:44"}]}},{"expression":{"arguments":[{"id":12218,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12197,"src":"14996:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12217,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14989:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":12216,"name":"uint40","nodeType":"ElementaryTypeName","src":"14989:6:44","typeDescriptions":{}}},"id":12219,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14989:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"functionReturnParameters":12201,"id":12220,"nodeType":"Return","src":"14982:20:44"}]},"documentation":{"id":12195,"nodeType":"StructuredDocumentation","src":"14515:276:44","text":" @dev Returns the downcasted uint40 from uint256, reverting on\n overflow (when the input is greater than largest uint40).\n Counterpart to Solidity's `uint40` operator.\n Requirements:\n - input must fit into 40 bits"},"id":12222,"implemented":true,"kind":"function","modifiers":[],"name":"toUint40","nameLocation":"14805:8:44","nodeType":"FunctionDefinition","parameters":{"id":12198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12197,"mutability":"mutable","name":"value","nameLocation":"14822:5:44","nodeType":"VariableDeclaration","scope":12222,"src":"14814:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12196,"name":"uint256","nodeType":"ElementaryTypeName","src":"14814:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14813:15:44"},"returnParameters":{"id":12201,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12200,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12222,"src":"14852:6:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":12199,"name":"uint40","nodeType":"ElementaryTypeName","src":"14852:6:44","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"14851:8:44"},"scope":13204,"src":"14796:213:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12249,"nodeType":"Block","src":"15360:149:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12230,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12225,"src":"15374:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":12233,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15387:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":12232,"name":"uint32","nodeType":"ElementaryTypeName","src":"15387:6:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"}],"id":12231,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"15382:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":12234,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15382:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint32","typeString":"type(uint32)"}},"id":12235,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15395:3:44","memberName":"max","nodeType":"MemberAccess","src":"15382:16:44","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"15374:24:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12243,"nodeType":"IfStatement","src":"15370:103:44","trueBody":{"id":12242,"nodeType":"Block","src":"15400:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3332","id":12238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15452:2:44","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},{"id":12239,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12225,"src":"15456:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12237,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"15421:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":12240,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15421:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12241,"nodeType":"RevertStatement","src":"15414:48:44"}]}},{"expression":{"arguments":[{"id":12246,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12225,"src":"15496:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12245,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15489:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":12244,"name":"uint32","nodeType":"ElementaryTypeName","src":"15489:6:44","typeDescriptions":{}}},"id":12247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15489:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":12229,"id":12248,"nodeType":"Return","src":"15482:20:44"}]},"documentation":{"id":12223,"nodeType":"StructuredDocumentation","src":"15015:276:44","text":" @dev Returns the downcasted uint32 from uint256, reverting on\n overflow (when the input is greater than largest uint32).\n Counterpart to Solidity's `uint32` operator.\n Requirements:\n - input must fit into 32 bits"},"id":12250,"implemented":true,"kind":"function","modifiers":[],"name":"toUint32","nameLocation":"15305:8:44","nodeType":"FunctionDefinition","parameters":{"id":12226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12225,"mutability":"mutable","name":"value","nameLocation":"15322:5:44","nodeType":"VariableDeclaration","scope":12250,"src":"15314:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12224,"name":"uint256","nodeType":"ElementaryTypeName","src":"15314:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15313:15:44"},"returnParameters":{"id":12229,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12228,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12250,"src":"15352:6:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":12227,"name":"uint32","nodeType":"ElementaryTypeName","src":"15352:6:44","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"15351:8:44"},"scope":13204,"src":"15296:213:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12277,"nodeType":"Block","src":"15860:149:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12264,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12258,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12253,"src":"15874:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":12261,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15887:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"},"typeName":{"id":12260,"name":"uint24","nodeType":"ElementaryTypeName","src":"15887:6:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"}],"id":12259,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"15882:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":12262,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15882:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint24","typeString":"type(uint24)"}},"id":12263,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15895:3:44","memberName":"max","nodeType":"MemberAccess","src":"15882:16:44","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"src":"15874:24:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12271,"nodeType":"IfStatement","src":"15870:103:44","trueBody":{"id":12270,"nodeType":"Block","src":"15900:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3234","id":12266,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15952:2:44","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},{"id":12267,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12253,"src":"15956:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12265,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"15921:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":12268,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15921:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12269,"nodeType":"RevertStatement","src":"15914:48:44"}]}},{"expression":{"arguments":[{"id":12274,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12253,"src":"15996:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12273,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15989:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"},"typeName":{"id":12272,"name":"uint24","nodeType":"ElementaryTypeName","src":"15989:6:44","typeDescriptions":{}}},"id":12275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15989:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"functionReturnParameters":12257,"id":12276,"nodeType":"Return","src":"15982:20:44"}]},"documentation":{"id":12251,"nodeType":"StructuredDocumentation","src":"15515:276:44","text":" @dev Returns the downcasted uint24 from uint256, reverting on\n overflow (when the input is greater than largest uint24).\n Counterpart to Solidity's `uint24` operator.\n Requirements:\n - input must fit into 24 bits"},"id":12278,"implemented":true,"kind":"function","modifiers":[],"name":"toUint24","nameLocation":"15805:8:44","nodeType":"FunctionDefinition","parameters":{"id":12254,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12253,"mutability":"mutable","name":"value","nameLocation":"15822:5:44","nodeType":"VariableDeclaration","scope":12278,"src":"15814:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12252,"name":"uint256","nodeType":"ElementaryTypeName","src":"15814:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15813:15:44"},"returnParameters":{"id":12257,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12256,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12278,"src":"15852:6:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":12255,"name":"uint24","nodeType":"ElementaryTypeName","src":"15852:6:44","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"src":"15851:8:44"},"scope":13204,"src":"15796:213:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12305,"nodeType":"Block","src":"16360:149:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12286,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12281,"src":"16374:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":12289,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16387:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"},"typeName":{"id":12288,"name":"uint16","nodeType":"ElementaryTypeName","src":"16387:6:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"}],"id":12287,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"16382:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":12290,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16382:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint16","typeString":"type(uint16)"}},"id":12291,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16395:3:44","memberName":"max","nodeType":"MemberAccess","src":"16382:16:44","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"16374:24:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12299,"nodeType":"IfStatement","src":"16370:103:44","trueBody":{"id":12298,"nodeType":"Block","src":"16400:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3136","id":12294,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16452:2:44","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},{"id":12295,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12281,"src":"16456:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12293,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"16421:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":12296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16421:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12297,"nodeType":"RevertStatement","src":"16414:48:44"}]}},{"expression":{"arguments":[{"id":12302,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12281,"src":"16496:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12301,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16489:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"},"typeName":{"id":12300,"name":"uint16","nodeType":"ElementaryTypeName","src":"16489:6:44","typeDescriptions":{}}},"id":12303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16489:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"functionReturnParameters":12285,"id":12304,"nodeType":"Return","src":"16482:20:44"}]},"documentation":{"id":12279,"nodeType":"StructuredDocumentation","src":"16015:276:44","text":" @dev Returns the downcasted uint16 from uint256, reverting on\n overflow (when the input is greater than largest uint16).\n Counterpart to Solidity's `uint16` operator.\n Requirements:\n - input must fit into 16 bits"},"id":12306,"implemented":true,"kind":"function","modifiers":[],"name":"toUint16","nameLocation":"16305:8:44","nodeType":"FunctionDefinition","parameters":{"id":12282,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12281,"mutability":"mutable","name":"value","nameLocation":"16322:5:44","nodeType":"VariableDeclaration","scope":12306,"src":"16314:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12280,"name":"uint256","nodeType":"ElementaryTypeName","src":"16314:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16313:15:44"},"returnParameters":{"id":12285,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12284,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12306,"src":"16352:6:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":12283,"name":"uint16","nodeType":"ElementaryTypeName","src":"16352:6:44","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"src":"16351:8:44"},"scope":13204,"src":"16296:213:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12333,"nodeType":"Block","src":"16854:146:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12314,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12309,"src":"16868:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":12317,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16881:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":12316,"name":"uint8","nodeType":"ElementaryTypeName","src":"16881:5:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":12315,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"16876:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":12318,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16876:11:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":12319,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16888:3:44","memberName":"max","nodeType":"MemberAccess","src":"16876:15:44","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"16868:23:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12327,"nodeType":"IfStatement","src":"16864:101:44","trueBody":{"id":12326,"nodeType":"Block","src":"16893:72:44","statements":[{"errorCall":{"arguments":[{"hexValue":"38","id":12322,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16945:1:44","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"id":12323,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12309,"src":"16948:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12321,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11449,"src":"16914:30:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$__$","typeString":"function (uint8,uint256) pure"}},"id":12324,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16914:40:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12325,"nodeType":"RevertStatement","src":"16907:47:44"}]}},{"expression":{"arguments":[{"id":12330,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12309,"src":"16987:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12329,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16981:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":12328,"name":"uint8","nodeType":"ElementaryTypeName","src":"16981:5:44","typeDescriptions":{}}},"id":12331,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16981:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":12313,"id":12332,"nodeType":"Return","src":"16974:19:44"}]},"documentation":{"id":12307,"nodeType":"StructuredDocumentation","src":"16515:272:44","text":" @dev Returns the downcasted uint8 from uint256, reverting on\n overflow (when the input is greater than largest uint8).\n Counterpart to Solidity's `uint8` operator.\n Requirements:\n - input must fit into 8 bits"},"id":12334,"implemented":true,"kind":"function","modifiers":[],"name":"toUint8","nameLocation":"16801:7:44","nodeType":"FunctionDefinition","parameters":{"id":12310,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12309,"mutability":"mutable","name":"value","nameLocation":"16817:5:44","nodeType":"VariableDeclaration","scope":12334,"src":"16809:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12308,"name":"uint256","nodeType":"ElementaryTypeName","src":"16809:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16808:15:44"},"returnParameters":{"id":12313,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12312,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12334,"src":"16847:5:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":12311,"name":"uint8","nodeType":"ElementaryTypeName","src":"16847:5:44","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"16846:7:44"},"scope":13204,"src":"16792:208:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12356,"nodeType":"Block","src":"17236:128:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12342,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"17250:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":12343,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17258:1:44","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17250:9:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12350,"nodeType":"IfStatement","src":"17246:81:44","trueBody":{"id":12349,"nodeType":"Block","src":"17261:66:44","statements":[{"errorCall":{"arguments":[{"id":12346,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"17310:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12345,"name":"SafeCastOverflowedIntToUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11454,"src":"17282:27:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_int256_$returns$__$","typeString":"function (int256) pure"}},"id":12347,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17282:34:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12348,"nodeType":"RevertStatement","src":"17275:41:44"}]}},{"expression":{"arguments":[{"id":12353,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"17351:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12352,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17343:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":12351,"name":"uint256","nodeType":"ElementaryTypeName","src":"17343:7:44","typeDescriptions":{}}},"id":12354,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17343:14:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":12341,"id":12355,"nodeType":"Return","src":"17336:21:44"}]},"documentation":{"id":12335,"nodeType":"StructuredDocumentation","src":"17006:160:44","text":" @dev Converts a signed int256 into an unsigned uint256.\n Requirements:\n - input must be greater than or equal to 0."},"id":12357,"implemented":true,"kind":"function","modifiers":[],"name":"toUint256","nameLocation":"17180:9:44","nodeType":"FunctionDefinition","parameters":{"id":12338,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12337,"mutability":"mutable","name":"value","nameLocation":"17197:5:44","nodeType":"VariableDeclaration","scope":12357,"src":"17190:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12336,"name":"int256","nodeType":"ElementaryTypeName","src":"17190:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"17189:14:44"},"returnParameters":{"id":12341,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12340,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12357,"src":"17227:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12339,"name":"uint256","nodeType":"ElementaryTypeName","src":"17227:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17226:9:44"},"scope":13204,"src":"17171:193:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12382,"nodeType":"Block","src":"17761:150:44","statements":[{"expression":{"id":12370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12365,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12363,"src":"17771:10:44","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12368,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12360,"src":"17791:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12367,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17784:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int248_$","typeString":"type(int248)"},"typeName":{"id":12366,"name":"int248","nodeType":"ElementaryTypeName","src":"17784:6:44","typeDescriptions":{}}},"id":12369,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17784:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"src":"17771:26:44","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"id":12371,"nodeType":"ExpressionStatement","src":"17771:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12372,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12363,"src":"17811:10:44","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12373,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12360,"src":"17825:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"17811:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12381,"nodeType":"IfStatement","src":"17807:98:44","trueBody":{"id":12380,"nodeType":"Block","src":"17832:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"323438","id":12376,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17883:3:44","typeDescriptions":{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},"value":"248"},{"id":12377,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12360,"src":"17888:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12375,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"17853:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12378,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17853:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12379,"nodeType":"RevertStatement","src":"17846:48:44"}]}}]},"documentation":{"id":12358,"nodeType":"StructuredDocumentation","src":"17370:312:44","text":" @dev Returns the downcasted int248 from int256, reverting on\n overflow (when the input is less than smallest int248 or\n greater than largest int248).\n Counterpart to Solidity's `int248` operator.\n Requirements:\n - input must fit into 248 bits"},"id":12383,"implemented":true,"kind":"function","modifiers":[],"name":"toInt248","nameLocation":"17696:8:44","nodeType":"FunctionDefinition","parameters":{"id":12361,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12360,"mutability":"mutable","name":"value","nameLocation":"17712:5:44","nodeType":"VariableDeclaration","scope":12383,"src":"17705:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12359,"name":"int256","nodeType":"ElementaryTypeName","src":"17705:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"17704:14:44"},"returnParameters":{"id":12364,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12363,"mutability":"mutable","name":"downcasted","nameLocation":"17749:10:44","nodeType":"VariableDeclaration","scope":12383,"src":"17742:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"},"typeName":{"id":12362,"name":"int248","nodeType":"ElementaryTypeName","src":"17742:6:44","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"visibility":"internal"}],"src":"17741:19:44"},"scope":13204,"src":"17687:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12408,"nodeType":"Block","src":"18308:150:44","statements":[{"expression":{"id":12396,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12391,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12389,"src":"18318:10:44","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12394,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12386,"src":"18338:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12393,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18331:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int240_$","typeString":"type(int240)"},"typeName":{"id":12392,"name":"int240","nodeType":"ElementaryTypeName","src":"18331:6:44","typeDescriptions":{}}},"id":12395,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18331:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"src":"18318:26:44","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"id":12397,"nodeType":"ExpressionStatement","src":"18318:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12400,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12398,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12389,"src":"18358:10:44","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12399,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12386,"src":"18372:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"18358:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12407,"nodeType":"IfStatement","src":"18354:98:44","trueBody":{"id":12406,"nodeType":"Block","src":"18379:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"323430","id":12402,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18430:3:44","typeDescriptions":{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},"value":"240"},{"id":12403,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12386,"src":"18435:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12401,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"18400:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12404,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18400:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12405,"nodeType":"RevertStatement","src":"18393:48:44"}]}}]},"documentation":{"id":12384,"nodeType":"StructuredDocumentation","src":"17917:312:44","text":" @dev Returns the downcasted int240 from int256, reverting on\n overflow (when the input is less than smallest int240 or\n greater than largest int240).\n Counterpart to Solidity's `int240` operator.\n Requirements:\n - input must fit into 240 bits"},"id":12409,"implemented":true,"kind":"function","modifiers":[],"name":"toInt240","nameLocation":"18243:8:44","nodeType":"FunctionDefinition","parameters":{"id":12387,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12386,"mutability":"mutable","name":"value","nameLocation":"18259:5:44","nodeType":"VariableDeclaration","scope":12409,"src":"18252:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12385,"name":"int256","nodeType":"ElementaryTypeName","src":"18252:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18251:14:44"},"returnParameters":{"id":12390,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12389,"mutability":"mutable","name":"downcasted","nameLocation":"18296:10:44","nodeType":"VariableDeclaration","scope":12409,"src":"18289:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"},"typeName":{"id":12388,"name":"int240","nodeType":"ElementaryTypeName","src":"18289:6:44","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"visibility":"internal"}],"src":"18288:19:44"},"scope":13204,"src":"18234:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12434,"nodeType":"Block","src":"18855:150:44","statements":[{"expression":{"id":12422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12417,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12415,"src":"18865:10:44","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12420,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12412,"src":"18885:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12419,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18878:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int232_$","typeString":"type(int232)"},"typeName":{"id":12418,"name":"int232","nodeType":"ElementaryTypeName","src":"18878:6:44","typeDescriptions":{}}},"id":12421,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18878:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"src":"18865:26:44","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"id":12423,"nodeType":"ExpressionStatement","src":"18865:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12424,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12415,"src":"18905:10:44","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12425,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12412,"src":"18919:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"18905:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12433,"nodeType":"IfStatement","src":"18901:98:44","trueBody":{"id":12432,"nodeType":"Block","src":"18926:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"323332","id":12428,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18977:3:44","typeDescriptions":{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},"value":"232"},{"id":12429,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12412,"src":"18982:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12427,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"18947:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12430,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18947:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12431,"nodeType":"RevertStatement","src":"18940:48:44"}]}}]},"documentation":{"id":12410,"nodeType":"StructuredDocumentation","src":"18464:312:44","text":" @dev Returns the downcasted int232 from int256, reverting on\n overflow (when the input is less than smallest int232 or\n greater than largest int232).\n Counterpart to Solidity's `int232` operator.\n Requirements:\n - input must fit into 232 bits"},"id":12435,"implemented":true,"kind":"function","modifiers":[],"name":"toInt232","nameLocation":"18790:8:44","nodeType":"FunctionDefinition","parameters":{"id":12413,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12412,"mutability":"mutable","name":"value","nameLocation":"18806:5:44","nodeType":"VariableDeclaration","scope":12435,"src":"18799:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12411,"name":"int256","nodeType":"ElementaryTypeName","src":"18799:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18798:14:44"},"returnParameters":{"id":12416,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12415,"mutability":"mutable","name":"downcasted","nameLocation":"18843:10:44","nodeType":"VariableDeclaration","scope":12435,"src":"18836:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"},"typeName":{"id":12414,"name":"int232","nodeType":"ElementaryTypeName","src":"18836:6:44","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"visibility":"internal"}],"src":"18835:19:44"},"scope":13204,"src":"18781:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12460,"nodeType":"Block","src":"19402:150:44","statements":[{"expression":{"id":12448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12443,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12441,"src":"19412:10:44","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12446,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12438,"src":"19432:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12445,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19425:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int224_$","typeString":"type(int224)"},"typeName":{"id":12444,"name":"int224","nodeType":"ElementaryTypeName","src":"19425:6:44","typeDescriptions":{}}},"id":12447,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19425:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"src":"19412:26:44","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"id":12449,"nodeType":"ExpressionStatement","src":"19412:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12450,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12441,"src":"19452:10:44","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12451,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12438,"src":"19466:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19452:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12459,"nodeType":"IfStatement","src":"19448:98:44","trueBody":{"id":12458,"nodeType":"Block","src":"19473:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"323234","id":12454,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19524:3:44","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"224"},{"id":12455,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12438,"src":"19529:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12453,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"19494:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12456,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19494:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12457,"nodeType":"RevertStatement","src":"19487:48:44"}]}}]},"documentation":{"id":12436,"nodeType":"StructuredDocumentation","src":"19011:312:44","text":" @dev Returns the downcasted int224 from int256, reverting on\n overflow (when the input is less than smallest int224 or\n greater than largest int224).\n Counterpart to Solidity's `int224` operator.\n Requirements:\n - input must fit into 224 bits"},"id":12461,"implemented":true,"kind":"function","modifiers":[],"name":"toInt224","nameLocation":"19337:8:44","nodeType":"FunctionDefinition","parameters":{"id":12439,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12438,"mutability":"mutable","name":"value","nameLocation":"19353:5:44","nodeType":"VariableDeclaration","scope":12461,"src":"19346:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12437,"name":"int256","nodeType":"ElementaryTypeName","src":"19346:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19345:14:44"},"returnParameters":{"id":12442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12441,"mutability":"mutable","name":"downcasted","nameLocation":"19390:10:44","nodeType":"VariableDeclaration","scope":12461,"src":"19383:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"},"typeName":{"id":12440,"name":"int224","nodeType":"ElementaryTypeName","src":"19383:6:44","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"visibility":"internal"}],"src":"19382:19:44"},"scope":13204,"src":"19328:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12486,"nodeType":"Block","src":"19949:150:44","statements":[{"expression":{"id":12474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12469,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12467,"src":"19959:10:44","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12472,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12464,"src":"19979:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12471,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19972:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int216_$","typeString":"type(int216)"},"typeName":{"id":12470,"name":"int216","nodeType":"ElementaryTypeName","src":"19972:6:44","typeDescriptions":{}}},"id":12473,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19972:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"src":"19959:26:44","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"id":12475,"nodeType":"ExpressionStatement","src":"19959:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12476,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12467,"src":"19999:10:44","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12477,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12464,"src":"20013:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19999:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12485,"nodeType":"IfStatement","src":"19995:98:44","trueBody":{"id":12484,"nodeType":"Block","src":"20020:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"323136","id":12480,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20071:3:44","typeDescriptions":{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},"value":"216"},{"id":12481,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12464,"src":"20076:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12479,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"20041:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12482,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20041:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12483,"nodeType":"RevertStatement","src":"20034:48:44"}]}}]},"documentation":{"id":12462,"nodeType":"StructuredDocumentation","src":"19558:312:44","text":" @dev Returns the downcasted int216 from int256, reverting on\n overflow (when the input is less than smallest int216 or\n greater than largest int216).\n Counterpart to Solidity's `int216` operator.\n Requirements:\n - input must fit into 216 bits"},"id":12487,"implemented":true,"kind":"function","modifiers":[],"name":"toInt216","nameLocation":"19884:8:44","nodeType":"FunctionDefinition","parameters":{"id":12465,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12464,"mutability":"mutable","name":"value","nameLocation":"19900:5:44","nodeType":"VariableDeclaration","scope":12487,"src":"19893:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12463,"name":"int256","nodeType":"ElementaryTypeName","src":"19893:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19892:14:44"},"returnParameters":{"id":12468,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12467,"mutability":"mutable","name":"downcasted","nameLocation":"19937:10:44","nodeType":"VariableDeclaration","scope":12487,"src":"19930:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"},"typeName":{"id":12466,"name":"int216","nodeType":"ElementaryTypeName","src":"19930:6:44","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"visibility":"internal"}],"src":"19929:19:44"},"scope":13204,"src":"19875:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12512,"nodeType":"Block","src":"20496:150:44","statements":[{"expression":{"id":12500,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12495,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12493,"src":"20506:10:44","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12498,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12490,"src":"20526:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12497,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"20519:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int208_$","typeString":"type(int208)"},"typeName":{"id":12496,"name":"int208","nodeType":"ElementaryTypeName","src":"20519:6:44","typeDescriptions":{}}},"id":12499,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20519:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"src":"20506:26:44","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"id":12501,"nodeType":"ExpressionStatement","src":"20506:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12504,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12502,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12493,"src":"20546:10:44","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12503,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12490,"src":"20560:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"20546:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12511,"nodeType":"IfStatement","src":"20542:98:44","trueBody":{"id":12510,"nodeType":"Block","src":"20567:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"323038","id":12506,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20618:3:44","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"value":"208"},{"id":12507,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12490,"src":"20623:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12505,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"20588:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12508,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20588:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12509,"nodeType":"RevertStatement","src":"20581:48:44"}]}}]},"documentation":{"id":12488,"nodeType":"StructuredDocumentation","src":"20105:312:44","text":" @dev Returns the downcasted int208 from int256, reverting on\n overflow (when the input is less than smallest int208 or\n greater than largest int208).\n Counterpart to Solidity's `int208` operator.\n Requirements:\n - input must fit into 208 bits"},"id":12513,"implemented":true,"kind":"function","modifiers":[],"name":"toInt208","nameLocation":"20431:8:44","nodeType":"FunctionDefinition","parameters":{"id":12491,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12490,"mutability":"mutable","name":"value","nameLocation":"20447:5:44","nodeType":"VariableDeclaration","scope":12513,"src":"20440:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12489,"name":"int256","nodeType":"ElementaryTypeName","src":"20440:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"20439:14:44"},"returnParameters":{"id":12494,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12493,"mutability":"mutable","name":"downcasted","nameLocation":"20484:10:44","nodeType":"VariableDeclaration","scope":12513,"src":"20477:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"},"typeName":{"id":12492,"name":"int208","nodeType":"ElementaryTypeName","src":"20477:6:44","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"visibility":"internal"}],"src":"20476:19:44"},"scope":13204,"src":"20422:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12538,"nodeType":"Block","src":"21043:150:44","statements":[{"expression":{"id":12526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12521,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12519,"src":"21053:10:44","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12524,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12516,"src":"21073:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12523,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21066:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int200_$","typeString":"type(int200)"},"typeName":{"id":12522,"name":"int200","nodeType":"ElementaryTypeName","src":"21066:6:44","typeDescriptions":{}}},"id":12525,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21066:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"src":"21053:26:44","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"id":12527,"nodeType":"ExpressionStatement","src":"21053:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12530,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12528,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12519,"src":"21093:10:44","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12529,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12516,"src":"21107:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"21093:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12537,"nodeType":"IfStatement","src":"21089:98:44","trueBody":{"id":12536,"nodeType":"Block","src":"21114:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"323030","id":12532,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21165:3:44","typeDescriptions":{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},"value":"200"},{"id":12533,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12516,"src":"21170:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12531,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"21135:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12534,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21135:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12535,"nodeType":"RevertStatement","src":"21128:48:44"}]}}]},"documentation":{"id":12514,"nodeType":"StructuredDocumentation","src":"20652:312:44","text":" @dev Returns the downcasted int200 from int256, reverting on\n overflow (when the input is less than smallest int200 or\n greater than largest int200).\n Counterpart to Solidity's `int200` operator.\n Requirements:\n - input must fit into 200 bits"},"id":12539,"implemented":true,"kind":"function","modifiers":[],"name":"toInt200","nameLocation":"20978:8:44","nodeType":"FunctionDefinition","parameters":{"id":12517,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12516,"mutability":"mutable","name":"value","nameLocation":"20994:5:44","nodeType":"VariableDeclaration","scope":12539,"src":"20987:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12515,"name":"int256","nodeType":"ElementaryTypeName","src":"20987:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"20986:14:44"},"returnParameters":{"id":12520,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12519,"mutability":"mutable","name":"downcasted","nameLocation":"21031:10:44","nodeType":"VariableDeclaration","scope":12539,"src":"21024:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"},"typeName":{"id":12518,"name":"int200","nodeType":"ElementaryTypeName","src":"21024:6:44","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"visibility":"internal"}],"src":"21023:19:44"},"scope":13204,"src":"20969:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12564,"nodeType":"Block","src":"21590:150:44","statements":[{"expression":{"id":12552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12547,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12545,"src":"21600:10:44","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12550,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12542,"src":"21620:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12549,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21613:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int192_$","typeString":"type(int192)"},"typeName":{"id":12548,"name":"int192","nodeType":"ElementaryTypeName","src":"21613:6:44","typeDescriptions":{}}},"id":12551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21613:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"src":"21600:26:44","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"id":12553,"nodeType":"ExpressionStatement","src":"21600:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12556,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12554,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12545,"src":"21640:10:44","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12555,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12542,"src":"21654:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"21640:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12563,"nodeType":"IfStatement","src":"21636:98:44","trueBody":{"id":12562,"nodeType":"Block","src":"21661:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313932","id":12558,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21712:3:44","typeDescriptions":{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},"value":"192"},{"id":12559,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12542,"src":"21717:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12557,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"21682:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12560,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21682:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12561,"nodeType":"RevertStatement","src":"21675:48:44"}]}}]},"documentation":{"id":12540,"nodeType":"StructuredDocumentation","src":"21199:312:44","text":" @dev Returns the downcasted int192 from int256, reverting on\n overflow (when the input is less than smallest int192 or\n greater than largest int192).\n Counterpart to Solidity's `int192` operator.\n Requirements:\n - input must fit into 192 bits"},"id":12565,"implemented":true,"kind":"function","modifiers":[],"name":"toInt192","nameLocation":"21525:8:44","nodeType":"FunctionDefinition","parameters":{"id":12543,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12542,"mutability":"mutable","name":"value","nameLocation":"21541:5:44","nodeType":"VariableDeclaration","scope":12565,"src":"21534:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12541,"name":"int256","nodeType":"ElementaryTypeName","src":"21534:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"21533:14:44"},"returnParameters":{"id":12546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12545,"mutability":"mutable","name":"downcasted","nameLocation":"21578:10:44","nodeType":"VariableDeclaration","scope":12565,"src":"21571:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"},"typeName":{"id":12544,"name":"int192","nodeType":"ElementaryTypeName","src":"21571:6:44","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"visibility":"internal"}],"src":"21570:19:44"},"scope":13204,"src":"21516:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12590,"nodeType":"Block","src":"22137:150:44","statements":[{"expression":{"id":12578,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12573,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12571,"src":"22147:10:44","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12576,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12568,"src":"22167:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12575,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22160:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int184_$","typeString":"type(int184)"},"typeName":{"id":12574,"name":"int184","nodeType":"ElementaryTypeName","src":"22160:6:44","typeDescriptions":{}}},"id":12577,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22160:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"src":"22147:26:44","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"id":12579,"nodeType":"ExpressionStatement","src":"22147:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12582,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12580,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12571,"src":"22187:10:44","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12581,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12568,"src":"22201:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22187:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12589,"nodeType":"IfStatement","src":"22183:98:44","trueBody":{"id":12588,"nodeType":"Block","src":"22208:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313834","id":12584,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22259:3:44","typeDescriptions":{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},"value":"184"},{"id":12585,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12568,"src":"22264:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12583,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"22229:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12586,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22229:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12587,"nodeType":"RevertStatement","src":"22222:48:44"}]}}]},"documentation":{"id":12566,"nodeType":"StructuredDocumentation","src":"21746:312:44","text":" @dev Returns the downcasted int184 from int256, reverting on\n overflow (when the input is less than smallest int184 or\n greater than largest int184).\n Counterpart to Solidity's `int184` operator.\n Requirements:\n - input must fit into 184 bits"},"id":12591,"implemented":true,"kind":"function","modifiers":[],"name":"toInt184","nameLocation":"22072:8:44","nodeType":"FunctionDefinition","parameters":{"id":12569,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12568,"mutability":"mutable","name":"value","nameLocation":"22088:5:44","nodeType":"VariableDeclaration","scope":12591,"src":"22081:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12567,"name":"int256","nodeType":"ElementaryTypeName","src":"22081:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"22080:14:44"},"returnParameters":{"id":12572,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12571,"mutability":"mutable","name":"downcasted","nameLocation":"22125:10:44","nodeType":"VariableDeclaration","scope":12591,"src":"22118:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"},"typeName":{"id":12570,"name":"int184","nodeType":"ElementaryTypeName","src":"22118:6:44","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"visibility":"internal"}],"src":"22117:19:44"},"scope":13204,"src":"22063:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12616,"nodeType":"Block","src":"22684:150:44","statements":[{"expression":{"id":12604,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12599,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12597,"src":"22694:10:44","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12602,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12594,"src":"22714:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12601,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22707:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int176_$","typeString":"type(int176)"},"typeName":{"id":12600,"name":"int176","nodeType":"ElementaryTypeName","src":"22707:6:44","typeDescriptions":{}}},"id":12603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22707:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"src":"22694:26:44","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"id":12605,"nodeType":"ExpressionStatement","src":"22694:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12608,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12606,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12597,"src":"22734:10:44","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12607,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12594,"src":"22748:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22734:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12615,"nodeType":"IfStatement","src":"22730:98:44","trueBody":{"id":12614,"nodeType":"Block","src":"22755:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313736","id":12610,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22806:3:44","typeDescriptions":{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},"value":"176"},{"id":12611,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12594,"src":"22811:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12609,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"22776:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12612,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22776:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12613,"nodeType":"RevertStatement","src":"22769:48:44"}]}}]},"documentation":{"id":12592,"nodeType":"StructuredDocumentation","src":"22293:312:44","text":" @dev Returns the downcasted int176 from int256, reverting on\n overflow (when the input is less than smallest int176 or\n greater than largest int176).\n Counterpart to Solidity's `int176` operator.\n Requirements:\n - input must fit into 176 bits"},"id":12617,"implemented":true,"kind":"function","modifiers":[],"name":"toInt176","nameLocation":"22619:8:44","nodeType":"FunctionDefinition","parameters":{"id":12595,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12594,"mutability":"mutable","name":"value","nameLocation":"22635:5:44","nodeType":"VariableDeclaration","scope":12617,"src":"22628:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12593,"name":"int256","nodeType":"ElementaryTypeName","src":"22628:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"22627:14:44"},"returnParameters":{"id":12598,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12597,"mutability":"mutable","name":"downcasted","nameLocation":"22672:10:44","nodeType":"VariableDeclaration","scope":12617,"src":"22665:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"},"typeName":{"id":12596,"name":"int176","nodeType":"ElementaryTypeName","src":"22665:6:44","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"visibility":"internal"}],"src":"22664:19:44"},"scope":13204,"src":"22610:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12642,"nodeType":"Block","src":"23231:150:44","statements":[{"expression":{"id":12630,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12625,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12623,"src":"23241:10:44","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12628,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12620,"src":"23261:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12627,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23254:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int168_$","typeString":"type(int168)"},"typeName":{"id":12626,"name":"int168","nodeType":"ElementaryTypeName","src":"23254:6:44","typeDescriptions":{}}},"id":12629,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23254:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"src":"23241:26:44","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"id":12631,"nodeType":"ExpressionStatement","src":"23241:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12634,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12632,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12623,"src":"23281:10:44","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12633,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12620,"src":"23295:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23281:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12641,"nodeType":"IfStatement","src":"23277:98:44","trueBody":{"id":12640,"nodeType":"Block","src":"23302:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313638","id":12636,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23353:3:44","typeDescriptions":{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},"value":"168"},{"id":12637,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12620,"src":"23358:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12635,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"23323:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12638,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23323:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12639,"nodeType":"RevertStatement","src":"23316:48:44"}]}}]},"documentation":{"id":12618,"nodeType":"StructuredDocumentation","src":"22840:312:44","text":" @dev Returns the downcasted int168 from int256, reverting on\n overflow (when the input is less than smallest int168 or\n greater than largest int168).\n Counterpart to Solidity's `int168` operator.\n Requirements:\n - input must fit into 168 bits"},"id":12643,"implemented":true,"kind":"function","modifiers":[],"name":"toInt168","nameLocation":"23166:8:44","nodeType":"FunctionDefinition","parameters":{"id":12621,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12620,"mutability":"mutable","name":"value","nameLocation":"23182:5:44","nodeType":"VariableDeclaration","scope":12643,"src":"23175:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12619,"name":"int256","nodeType":"ElementaryTypeName","src":"23175:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"23174:14:44"},"returnParameters":{"id":12624,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12623,"mutability":"mutable","name":"downcasted","nameLocation":"23219:10:44","nodeType":"VariableDeclaration","scope":12643,"src":"23212:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"},"typeName":{"id":12622,"name":"int168","nodeType":"ElementaryTypeName","src":"23212:6:44","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"visibility":"internal"}],"src":"23211:19:44"},"scope":13204,"src":"23157:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12668,"nodeType":"Block","src":"23778:150:44","statements":[{"expression":{"id":12656,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12651,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12649,"src":"23788:10:44","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12654,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12646,"src":"23808:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12653,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23801:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int160_$","typeString":"type(int160)"},"typeName":{"id":12652,"name":"int160","nodeType":"ElementaryTypeName","src":"23801:6:44","typeDescriptions":{}}},"id":12655,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23801:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"src":"23788:26:44","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"id":12657,"nodeType":"ExpressionStatement","src":"23788:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12660,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12658,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12649,"src":"23828:10:44","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12659,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12646,"src":"23842:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23828:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12667,"nodeType":"IfStatement","src":"23824:98:44","trueBody":{"id":12666,"nodeType":"Block","src":"23849:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313630","id":12662,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23900:3:44","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},{"id":12663,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12646,"src":"23905:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12661,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"23870:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23870:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12665,"nodeType":"RevertStatement","src":"23863:48:44"}]}}]},"documentation":{"id":12644,"nodeType":"StructuredDocumentation","src":"23387:312:44","text":" @dev Returns the downcasted int160 from int256, reverting on\n overflow (when the input is less than smallest int160 or\n greater than largest int160).\n Counterpart to Solidity's `int160` operator.\n Requirements:\n - input must fit into 160 bits"},"id":12669,"implemented":true,"kind":"function","modifiers":[],"name":"toInt160","nameLocation":"23713:8:44","nodeType":"FunctionDefinition","parameters":{"id":12647,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12646,"mutability":"mutable","name":"value","nameLocation":"23729:5:44","nodeType":"VariableDeclaration","scope":12669,"src":"23722:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12645,"name":"int256","nodeType":"ElementaryTypeName","src":"23722:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"23721:14:44"},"returnParameters":{"id":12650,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12649,"mutability":"mutable","name":"downcasted","nameLocation":"23766:10:44","nodeType":"VariableDeclaration","scope":12669,"src":"23759:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"},"typeName":{"id":12648,"name":"int160","nodeType":"ElementaryTypeName","src":"23759:6:44","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"visibility":"internal"}],"src":"23758:19:44"},"scope":13204,"src":"23704:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12694,"nodeType":"Block","src":"24325:150:44","statements":[{"expression":{"id":12682,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12677,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12675,"src":"24335:10:44","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12680,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12672,"src":"24355:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12679,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24348:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int152_$","typeString":"type(int152)"},"typeName":{"id":12678,"name":"int152","nodeType":"ElementaryTypeName","src":"24348:6:44","typeDescriptions":{}}},"id":12681,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24348:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"src":"24335:26:44","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"id":12683,"nodeType":"ExpressionStatement","src":"24335:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12684,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12675,"src":"24375:10:44","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12685,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12672,"src":"24389:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24375:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12693,"nodeType":"IfStatement","src":"24371:98:44","trueBody":{"id":12692,"nodeType":"Block","src":"24396:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313532","id":12688,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24447:3:44","typeDescriptions":{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},"value":"152"},{"id":12689,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12672,"src":"24452:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12687,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"24417:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12690,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24417:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12691,"nodeType":"RevertStatement","src":"24410:48:44"}]}}]},"documentation":{"id":12670,"nodeType":"StructuredDocumentation","src":"23934:312:44","text":" @dev Returns the downcasted int152 from int256, reverting on\n overflow (when the input is less than smallest int152 or\n greater than largest int152).\n Counterpart to Solidity's `int152` operator.\n Requirements:\n - input must fit into 152 bits"},"id":12695,"implemented":true,"kind":"function","modifiers":[],"name":"toInt152","nameLocation":"24260:8:44","nodeType":"FunctionDefinition","parameters":{"id":12673,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12672,"mutability":"mutable","name":"value","nameLocation":"24276:5:44","nodeType":"VariableDeclaration","scope":12695,"src":"24269:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12671,"name":"int256","nodeType":"ElementaryTypeName","src":"24269:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"24268:14:44"},"returnParameters":{"id":12676,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12675,"mutability":"mutable","name":"downcasted","nameLocation":"24313:10:44","nodeType":"VariableDeclaration","scope":12695,"src":"24306:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"},"typeName":{"id":12674,"name":"int152","nodeType":"ElementaryTypeName","src":"24306:6:44","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"visibility":"internal"}],"src":"24305:19:44"},"scope":13204,"src":"24251:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12720,"nodeType":"Block","src":"24872:150:44","statements":[{"expression":{"id":12708,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12703,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12701,"src":"24882:10:44","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12706,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12698,"src":"24902:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12705,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24895:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int144_$","typeString":"type(int144)"},"typeName":{"id":12704,"name":"int144","nodeType":"ElementaryTypeName","src":"24895:6:44","typeDescriptions":{}}},"id":12707,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24895:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"src":"24882:26:44","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"id":12709,"nodeType":"ExpressionStatement","src":"24882:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12712,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12710,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12701,"src":"24922:10:44","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12711,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12698,"src":"24936:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24922:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12719,"nodeType":"IfStatement","src":"24918:98:44","trueBody":{"id":12718,"nodeType":"Block","src":"24943:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313434","id":12714,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24994:3:44","typeDescriptions":{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},"value":"144"},{"id":12715,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12698,"src":"24999:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12713,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"24964:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12716,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24964:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12717,"nodeType":"RevertStatement","src":"24957:48:44"}]}}]},"documentation":{"id":12696,"nodeType":"StructuredDocumentation","src":"24481:312:44","text":" @dev Returns the downcasted int144 from int256, reverting on\n overflow (when the input is less than smallest int144 or\n greater than largest int144).\n Counterpart to Solidity's `int144` operator.\n Requirements:\n - input must fit into 144 bits"},"id":12721,"implemented":true,"kind":"function","modifiers":[],"name":"toInt144","nameLocation":"24807:8:44","nodeType":"FunctionDefinition","parameters":{"id":12699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12698,"mutability":"mutable","name":"value","nameLocation":"24823:5:44","nodeType":"VariableDeclaration","scope":12721,"src":"24816:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12697,"name":"int256","nodeType":"ElementaryTypeName","src":"24816:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"24815:14:44"},"returnParameters":{"id":12702,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12701,"mutability":"mutable","name":"downcasted","nameLocation":"24860:10:44","nodeType":"VariableDeclaration","scope":12721,"src":"24853:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"},"typeName":{"id":12700,"name":"int144","nodeType":"ElementaryTypeName","src":"24853:6:44","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"visibility":"internal"}],"src":"24852:19:44"},"scope":13204,"src":"24798:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12746,"nodeType":"Block","src":"25419:150:44","statements":[{"expression":{"id":12734,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12729,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12727,"src":"25429:10:44","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12732,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"25449:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12731,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25442:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int136_$","typeString":"type(int136)"},"typeName":{"id":12730,"name":"int136","nodeType":"ElementaryTypeName","src":"25442:6:44","typeDescriptions":{}}},"id":12733,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25442:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"src":"25429:26:44","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"id":12735,"nodeType":"ExpressionStatement","src":"25429:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12738,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12736,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12727,"src":"25469:10:44","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12737,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"25483:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"25469:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12745,"nodeType":"IfStatement","src":"25465:98:44","trueBody":{"id":12744,"nodeType":"Block","src":"25490:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313336","id":12740,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25541:3:44","typeDescriptions":{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},"value":"136"},{"id":12741,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"25546:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12739,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"25511:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12742,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25511:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12743,"nodeType":"RevertStatement","src":"25504:48:44"}]}}]},"documentation":{"id":12722,"nodeType":"StructuredDocumentation","src":"25028:312:44","text":" @dev Returns the downcasted int136 from int256, reverting on\n overflow (when the input is less than smallest int136 or\n greater than largest int136).\n Counterpart to Solidity's `int136` operator.\n Requirements:\n - input must fit into 136 bits"},"id":12747,"implemented":true,"kind":"function","modifiers":[],"name":"toInt136","nameLocation":"25354:8:44","nodeType":"FunctionDefinition","parameters":{"id":12725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12724,"mutability":"mutable","name":"value","nameLocation":"25370:5:44","nodeType":"VariableDeclaration","scope":12747,"src":"25363:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12723,"name":"int256","nodeType":"ElementaryTypeName","src":"25363:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"25362:14:44"},"returnParameters":{"id":12728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12727,"mutability":"mutable","name":"downcasted","nameLocation":"25407:10:44","nodeType":"VariableDeclaration","scope":12747,"src":"25400:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"},"typeName":{"id":12726,"name":"int136","nodeType":"ElementaryTypeName","src":"25400:6:44","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"visibility":"internal"}],"src":"25399:19:44"},"scope":13204,"src":"25345:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12772,"nodeType":"Block","src":"25966:150:44","statements":[{"expression":{"id":12760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12755,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12753,"src":"25976:10:44","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12758,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12750,"src":"25996:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12757,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25989:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int128_$","typeString":"type(int128)"},"typeName":{"id":12756,"name":"int128","nodeType":"ElementaryTypeName","src":"25989:6:44","typeDescriptions":{}}},"id":12759,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25989:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"src":"25976:26:44","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"id":12761,"nodeType":"ExpressionStatement","src":"25976:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12764,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12762,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12753,"src":"26016:10:44","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12763,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12750,"src":"26030:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26016:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12771,"nodeType":"IfStatement","src":"26012:98:44","trueBody":{"id":12770,"nodeType":"Block","src":"26037:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313238","id":12766,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26088:3:44","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},{"id":12767,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12750,"src":"26093:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12765,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"26058:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12768,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26058:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12769,"nodeType":"RevertStatement","src":"26051:48:44"}]}}]},"documentation":{"id":12748,"nodeType":"StructuredDocumentation","src":"25575:312:44","text":" @dev Returns the downcasted int128 from int256, reverting on\n overflow (when the input is less than smallest int128 or\n greater than largest int128).\n Counterpart to Solidity's `int128` operator.\n Requirements:\n - input must fit into 128 bits"},"id":12773,"implemented":true,"kind":"function","modifiers":[],"name":"toInt128","nameLocation":"25901:8:44","nodeType":"FunctionDefinition","parameters":{"id":12751,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12750,"mutability":"mutable","name":"value","nameLocation":"25917:5:44","nodeType":"VariableDeclaration","scope":12773,"src":"25910:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12749,"name":"int256","nodeType":"ElementaryTypeName","src":"25910:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"25909:14:44"},"returnParameters":{"id":12754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12753,"mutability":"mutable","name":"downcasted","nameLocation":"25954:10:44","nodeType":"VariableDeclaration","scope":12773,"src":"25947:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"},"typeName":{"id":12752,"name":"int128","nodeType":"ElementaryTypeName","src":"25947:6:44","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"visibility":"internal"}],"src":"25946:19:44"},"scope":13204,"src":"25892:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12798,"nodeType":"Block","src":"26513:150:44","statements":[{"expression":{"id":12786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12781,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12779,"src":"26523:10:44","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12784,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12776,"src":"26543:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12783,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26536:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int120_$","typeString":"type(int120)"},"typeName":{"id":12782,"name":"int120","nodeType":"ElementaryTypeName","src":"26536:6:44","typeDescriptions":{}}},"id":12785,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26536:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"src":"26523:26:44","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"id":12787,"nodeType":"ExpressionStatement","src":"26523:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12790,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12788,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12779,"src":"26563:10:44","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12789,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12776,"src":"26577:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26563:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12797,"nodeType":"IfStatement","src":"26559:98:44","trueBody":{"id":12796,"nodeType":"Block","src":"26584:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313230","id":12792,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26635:3:44","typeDescriptions":{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},"value":"120"},{"id":12793,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12776,"src":"26640:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12791,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"26605:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12794,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26605:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12795,"nodeType":"RevertStatement","src":"26598:48:44"}]}}]},"documentation":{"id":12774,"nodeType":"StructuredDocumentation","src":"26122:312:44","text":" @dev Returns the downcasted int120 from int256, reverting on\n overflow (when the input is less than smallest int120 or\n greater than largest int120).\n Counterpart to Solidity's `int120` operator.\n Requirements:\n - input must fit into 120 bits"},"id":12799,"implemented":true,"kind":"function","modifiers":[],"name":"toInt120","nameLocation":"26448:8:44","nodeType":"FunctionDefinition","parameters":{"id":12777,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12776,"mutability":"mutable","name":"value","nameLocation":"26464:5:44","nodeType":"VariableDeclaration","scope":12799,"src":"26457:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12775,"name":"int256","nodeType":"ElementaryTypeName","src":"26457:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"26456:14:44"},"returnParameters":{"id":12780,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12779,"mutability":"mutable","name":"downcasted","nameLocation":"26501:10:44","nodeType":"VariableDeclaration","scope":12799,"src":"26494:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"},"typeName":{"id":12778,"name":"int120","nodeType":"ElementaryTypeName","src":"26494:6:44","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"visibility":"internal"}],"src":"26493:19:44"},"scope":13204,"src":"26439:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12824,"nodeType":"Block","src":"27060:150:44","statements":[{"expression":{"id":12812,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12807,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12805,"src":"27070:10:44","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12810,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12802,"src":"27090:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12809,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27083:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int112_$","typeString":"type(int112)"},"typeName":{"id":12808,"name":"int112","nodeType":"ElementaryTypeName","src":"27083:6:44","typeDescriptions":{}}},"id":12811,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27083:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"src":"27070:26:44","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"id":12813,"nodeType":"ExpressionStatement","src":"27070:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12816,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12814,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12805,"src":"27110:10:44","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12815,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12802,"src":"27124:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"27110:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12823,"nodeType":"IfStatement","src":"27106:98:44","trueBody":{"id":12822,"nodeType":"Block","src":"27131:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313132","id":12818,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27182:3:44","typeDescriptions":{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},"value":"112"},{"id":12819,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12802,"src":"27187:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12817,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"27152:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12820,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27152:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12821,"nodeType":"RevertStatement","src":"27145:48:44"}]}}]},"documentation":{"id":12800,"nodeType":"StructuredDocumentation","src":"26669:312:44","text":" @dev Returns the downcasted int112 from int256, reverting on\n overflow (when the input is less than smallest int112 or\n greater than largest int112).\n Counterpart to Solidity's `int112` operator.\n Requirements:\n - input must fit into 112 bits"},"id":12825,"implemented":true,"kind":"function","modifiers":[],"name":"toInt112","nameLocation":"26995:8:44","nodeType":"FunctionDefinition","parameters":{"id":12803,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12802,"mutability":"mutable","name":"value","nameLocation":"27011:5:44","nodeType":"VariableDeclaration","scope":12825,"src":"27004:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12801,"name":"int256","nodeType":"ElementaryTypeName","src":"27004:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"27003:14:44"},"returnParameters":{"id":12806,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12805,"mutability":"mutable","name":"downcasted","nameLocation":"27048:10:44","nodeType":"VariableDeclaration","scope":12825,"src":"27041:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"},"typeName":{"id":12804,"name":"int112","nodeType":"ElementaryTypeName","src":"27041:6:44","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"visibility":"internal"}],"src":"27040:19:44"},"scope":13204,"src":"26986:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12850,"nodeType":"Block","src":"27607:150:44","statements":[{"expression":{"id":12838,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12833,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12831,"src":"27617:10:44","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12836,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12828,"src":"27637:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12835,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27630:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int104_$","typeString":"type(int104)"},"typeName":{"id":12834,"name":"int104","nodeType":"ElementaryTypeName","src":"27630:6:44","typeDescriptions":{}}},"id":12837,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27630:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"src":"27617:26:44","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"id":12839,"nodeType":"ExpressionStatement","src":"27617:26:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12842,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12840,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12831,"src":"27657:10:44","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12841,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12828,"src":"27671:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"27657:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12849,"nodeType":"IfStatement","src":"27653:98:44","trueBody":{"id":12848,"nodeType":"Block","src":"27678:73:44","statements":[{"errorCall":{"arguments":[{"hexValue":"313034","id":12844,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27729:3:44","typeDescriptions":{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},"value":"104"},{"id":12845,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12828,"src":"27734:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12843,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"27699:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12846,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27699:41:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12847,"nodeType":"RevertStatement","src":"27692:48:44"}]}}]},"documentation":{"id":12826,"nodeType":"StructuredDocumentation","src":"27216:312:44","text":" @dev Returns the downcasted int104 from int256, reverting on\n overflow (when the input is less than smallest int104 or\n greater than largest int104).\n Counterpart to Solidity's `int104` operator.\n Requirements:\n - input must fit into 104 bits"},"id":12851,"implemented":true,"kind":"function","modifiers":[],"name":"toInt104","nameLocation":"27542:8:44","nodeType":"FunctionDefinition","parameters":{"id":12829,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12828,"mutability":"mutable","name":"value","nameLocation":"27558:5:44","nodeType":"VariableDeclaration","scope":12851,"src":"27551:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12827,"name":"int256","nodeType":"ElementaryTypeName","src":"27551:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"27550:14:44"},"returnParameters":{"id":12832,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12831,"mutability":"mutable","name":"downcasted","nameLocation":"27595:10:44","nodeType":"VariableDeclaration","scope":12851,"src":"27588:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"},"typeName":{"id":12830,"name":"int104","nodeType":"ElementaryTypeName","src":"27588:6:44","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"visibility":"internal"}],"src":"27587:19:44"},"scope":13204,"src":"27533:224:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12876,"nodeType":"Block","src":"28147:148:44","statements":[{"expression":{"id":12864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12859,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12857,"src":"28157:10:44","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12862,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12854,"src":"28176:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12861,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28170:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int96_$","typeString":"type(int96)"},"typeName":{"id":12860,"name":"int96","nodeType":"ElementaryTypeName","src":"28170:5:44","typeDescriptions":{}}},"id":12863,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28170:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"src":"28157:25:44","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"id":12865,"nodeType":"ExpressionStatement","src":"28157:25:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12868,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12866,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12857,"src":"28196:10:44","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12867,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12854,"src":"28210:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"28196:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12875,"nodeType":"IfStatement","src":"28192:97:44","trueBody":{"id":12874,"nodeType":"Block","src":"28217:72:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3936","id":12870,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28268:2:44","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},{"id":12871,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12854,"src":"28272:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12869,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"28238:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12872,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28238:40:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12873,"nodeType":"RevertStatement","src":"28231:47:44"}]}}]},"documentation":{"id":12852,"nodeType":"StructuredDocumentation","src":"27763:307:44","text":" @dev Returns the downcasted int96 from int256, reverting on\n overflow (when the input is less than smallest int96 or\n greater than largest int96).\n Counterpart to Solidity's `int96` operator.\n Requirements:\n - input must fit into 96 bits"},"id":12877,"implemented":true,"kind":"function","modifiers":[],"name":"toInt96","nameLocation":"28084:7:44","nodeType":"FunctionDefinition","parameters":{"id":12855,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12854,"mutability":"mutable","name":"value","nameLocation":"28099:5:44","nodeType":"VariableDeclaration","scope":12877,"src":"28092:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12853,"name":"int256","nodeType":"ElementaryTypeName","src":"28092:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"28091:14:44"},"returnParameters":{"id":12858,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12857,"mutability":"mutable","name":"downcasted","nameLocation":"28135:10:44","nodeType":"VariableDeclaration","scope":12877,"src":"28129:16:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"},"typeName":{"id":12856,"name":"int96","nodeType":"ElementaryTypeName","src":"28129:5:44","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"visibility":"internal"}],"src":"28128:18:44"},"scope":13204,"src":"28075:220:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12902,"nodeType":"Block","src":"28685:148:44","statements":[{"expression":{"id":12890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12885,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12883,"src":"28695:10:44","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12888,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12880,"src":"28714:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12887,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28708:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int88_$","typeString":"type(int88)"},"typeName":{"id":12886,"name":"int88","nodeType":"ElementaryTypeName","src":"28708:5:44","typeDescriptions":{}}},"id":12889,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28708:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"src":"28695:25:44","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"id":12891,"nodeType":"ExpressionStatement","src":"28695:25:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12892,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12883,"src":"28734:10:44","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12893,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12880,"src":"28748:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"28734:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12901,"nodeType":"IfStatement","src":"28730:97:44","trueBody":{"id":12900,"nodeType":"Block","src":"28755:72:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3838","id":12896,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28806:2:44","typeDescriptions":{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},"value":"88"},{"id":12897,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12880,"src":"28810:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12895,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"28776:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12898,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28776:40:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12899,"nodeType":"RevertStatement","src":"28769:47:44"}]}}]},"documentation":{"id":12878,"nodeType":"StructuredDocumentation","src":"28301:307:44","text":" @dev Returns the downcasted int88 from int256, reverting on\n overflow (when the input is less than smallest int88 or\n greater than largest int88).\n Counterpart to Solidity's `int88` operator.\n Requirements:\n - input must fit into 88 bits"},"id":12903,"implemented":true,"kind":"function","modifiers":[],"name":"toInt88","nameLocation":"28622:7:44","nodeType":"FunctionDefinition","parameters":{"id":12881,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12880,"mutability":"mutable","name":"value","nameLocation":"28637:5:44","nodeType":"VariableDeclaration","scope":12903,"src":"28630:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12879,"name":"int256","nodeType":"ElementaryTypeName","src":"28630:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"28629:14:44"},"returnParameters":{"id":12884,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12883,"mutability":"mutable","name":"downcasted","nameLocation":"28673:10:44","nodeType":"VariableDeclaration","scope":12903,"src":"28667:16:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"},"typeName":{"id":12882,"name":"int88","nodeType":"ElementaryTypeName","src":"28667:5:44","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"visibility":"internal"}],"src":"28666:18:44"},"scope":13204,"src":"28613:220:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12928,"nodeType":"Block","src":"29223:148:44","statements":[{"expression":{"id":12916,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12911,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12909,"src":"29233:10:44","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12914,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12906,"src":"29252:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12913,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29246:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int80_$","typeString":"type(int80)"},"typeName":{"id":12912,"name":"int80","nodeType":"ElementaryTypeName","src":"29246:5:44","typeDescriptions":{}}},"id":12915,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29246:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"src":"29233:25:44","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"id":12917,"nodeType":"ExpressionStatement","src":"29233:25:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12918,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12909,"src":"29272:10:44","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12919,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12906,"src":"29286:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"29272:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12927,"nodeType":"IfStatement","src":"29268:97:44","trueBody":{"id":12926,"nodeType":"Block","src":"29293:72:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3830","id":12922,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29344:2:44","typeDescriptions":{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},"value":"80"},{"id":12923,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12906,"src":"29348:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12921,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"29314:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12924,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29314:40:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12925,"nodeType":"RevertStatement","src":"29307:47:44"}]}}]},"documentation":{"id":12904,"nodeType":"StructuredDocumentation","src":"28839:307:44","text":" @dev Returns the downcasted int80 from int256, reverting on\n overflow (when the input is less than smallest int80 or\n greater than largest int80).\n Counterpart to Solidity's `int80` operator.\n Requirements:\n - input must fit into 80 bits"},"id":12929,"implemented":true,"kind":"function","modifiers":[],"name":"toInt80","nameLocation":"29160:7:44","nodeType":"FunctionDefinition","parameters":{"id":12907,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12906,"mutability":"mutable","name":"value","nameLocation":"29175:5:44","nodeType":"VariableDeclaration","scope":12929,"src":"29168:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12905,"name":"int256","nodeType":"ElementaryTypeName","src":"29168:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"29167:14:44"},"returnParameters":{"id":12910,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12909,"mutability":"mutable","name":"downcasted","nameLocation":"29211:10:44","nodeType":"VariableDeclaration","scope":12929,"src":"29205:16:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"},"typeName":{"id":12908,"name":"int80","nodeType":"ElementaryTypeName","src":"29205:5:44","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"visibility":"internal"}],"src":"29204:18:44"},"scope":13204,"src":"29151:220:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12954,"nodeType":"Block","src":"29761:148:44","statements":[{"expression":{"id":12942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12937,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12935,"src":"29771:10:44","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12940,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12932,"src":"29790:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12939,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29784:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int72_$","typeString":"type(int72)"},"typeName":{"id":12938,"name":"int72","nodeType":"ElementaryTypeName","src":"29784:5:44","typeDescriptions":{}}},"id":12941,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29784:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"src":"29771:25:44","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"id":12943,"nodeType":"ExpressionStatement","src":"29771:25:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12946,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12944,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12935,"src":"29810:10:44","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12945,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12932,"src":"29824:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"29810:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12953,"nodeType":"IfStatement","src":"29806:97:44","trueBody":{"id":12952,"nodeType":"Block","src":"29831:72:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3732","id":12948,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29882:2:44","typeDescriptions":{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},"value":"72"},{"id":12949,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12932,"src":"29886:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12947,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"29852:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12950,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29852:40:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12951,"nodeType":"RevertStatement","src":"29845:47:44"}]}}]},"documentation":{"id":12930,"nodeType":"StructuredDocumentation","src":"29377:307:44","text":" @dev Returns the downcasted int72 from int256, reverting on\n overflow (when the input is less than smallest int72 or\n greater than largest int72).\n Counterpart to Solidity's `int72` operator.\n Requirements:\n - input must fit into 72 bits"},"id":12955,"implemented":true,"kind":"function","modifiers":[],"name":"toInt72","nameLocation":"29698:7:44","nodeType":"FunctionDefinition","parameters":{"id":12933,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12932,"mutability":"mutable","name":"value","nameLocation":"29713:5:44","nodeType":"VariableDeclaration","scope":12955,"src":"29706:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12931,"name":"int256","nodeType":"ElementaryTypeName","src":"29706:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"29705:14:44"},"returnParameters":{"id":12936,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12935,"mutability":"mutable","name":"downcasted","nameLocation":"29749:10:44","nodeType":"VariableDeclaration","scope":12955,"src":"29743:16:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"},"typeName":{"id":12934,"name":"int72","nodeType":"ElementaryTypeName","src":"29743:5:44","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"visibility":"internal"}],"src":"29742:18:44"},"scope":13204,"src":"29689:220:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12980,"nodeType":"Block","src":"30299:148:44","statements":[{"expression":{"id":12968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12963,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12961,"src":"30309:10:44","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12966,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12958,"src":"30328:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12965,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30322:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int64_$","typeString":"type(int64)"},"typeName":{"id":12964,"name":"int64","nodeType":"ElementaryTypeName","src":"30322:5:44","typeDescriptions":{}}},"id":12967,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30322:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"src":"30309:25:44","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"id":12969,"nodeType":"ExpressionStatement","src":"30309:25:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12970,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12961,"src":"30348:10:44","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12971,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12958,"src":"30362:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"30348:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12979,"nodeType":"IfStatement","src":"30344:97:44","trueBody":{"id":12978,"nodeType":"Block","src":"30369:72:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3634","id":12974,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30420:2:44","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},{"id":12975,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12958,"src":"30424:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12973,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"30390:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":12976,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30390:40:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12977,"nodeType":"RevertStatement","src":"30383:47:44"}]}}]},"documentation":{"id":12956,"nodeType":"StructuredDocumentation","src":"29915:307:44","text":" @dev Returns the downcasted int64 from int256, reverting on\n overflow (when the input is less than smallest int64 or\n greater than largest int64).\n Counterpart to Solidity's `int64` operator.\n Requirements:\n - input must fit into 64 bits"},"id":12981,"implemented":true,"kind":"function","modifiers":[],"name":"toInt64","nameLocation":"30236:7:44","nodeType":"FunctionDefinition","parameters":{"id":12959,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12958,"mutability":"mutable","name":"value","nameLocation":"30251:5:44","nodeType":"VariableDeclaration","scope":12981,"src":"30244:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12957,"name":"int256","nodeType":"ElementaryTypeName","src":"30244:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30243:14:44"},"returnParameters":{"id":12962,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12961,"mutability":"mutable","name":"downcasted","nameLocation":"30287:10:44","nodeType":"VariableDeclaration","scope":12981,"src":"30281:16:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"},"typeName":{"id":12960,"name":"int64","nodeType":"ElementaryTypeName","src":"30281:5:44","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"visibility":"internal"}],"src":"30280:18:44"},"scope":13204,"src":"30227:220:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13006,"nodeType":"Block","src":"30837:148:44","statements":[{"expression":{"id":12994,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12989,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12987,"src":"30847:10:44","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12992,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12984,"src":"30866:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12991,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30860:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int56_$","typeString":"type(int56)"},"typeName":{"id":12990,"name":"int56","nodeType":"ElementaryTypeName","src":"30860:5:44","typeDescriptions":{}}},"id":12993,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30860:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"src":"30847:25:44","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"id":12995,"nodeType":"ExpressionStatement","src":"30847:25:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12996,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12987,"src":"30886:10:44","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12997,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12984,"src":"30900:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"30886:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13005,"nodeType":"IfStatement","src":"30882:97:44","trueBody":{"id":13004,"nodeType":"Block","src":"30907:72:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3536","id":13000,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30958:2:44","typeDescriptions":{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},"value":"56"},{"id":13001,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12984,"src":"30962:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12999,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"30928:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":13002,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30928:40:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13003,"nodeType":"RevertStatement","src":"30921:47:44"}]}}]},"documentation":{"id":12982,"nodeType":"StructuredDocumentation","src":"30453:307:44","text":" @dev Returns the downcasted int56 from int256, reverting on\n overflow (when the input is less than smallest int56 or\n greater than largest int56).\n Counterpart to Solidity's `int56` operator.\n Requirements:\n - input must fit into 56 bits"},"id":13007,"implemented":true,"kind":"function","modifiers":[],"name":"toInt56","nameLocation":"30774:7:44","nodeType":"FunctionDefinition","parameters":{"id":12985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12984,"mutability":"mutable","name":"value","nameLocation":"30789:5:44","nodeType":"VariableDeclaration","scope":13007,"src":"30782:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12983,"name":"int256","nodeType":"ElementaryTypeName","src":"30782:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30781:14:44"},"returnParameters":{"id":12988,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12987,"mutability":"mutable","name":"downcasted","nameLocation":"30825:10:44","nodeType":"VariableDeclaration","scope":13007,"src":"30819:16:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"},"typeName":{"id":12986,"name":"int56","nodeType":"ElementaryTypeName","src":"30819:5:44","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"visibility":"internal"}],"src":"30818:18:44"},"scope":13204,"src":"30765:220:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13032,"nodeType":"Block","src":"31375:148:44","statements":[{"expression":{"id":13020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13015,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13013,"src":"31385:10:44","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":13018,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13010,"src":"31404:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13017,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31398:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int48_$","typeString":"type(int48)"},"typeName":{"id":13016,"name":"int48","nodeType":"ElementaryTypeName","src":"31398:5:44","typeDescriptions":{}}},"id":13019,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31398:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"src":"31385:25:44","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"id":13021,"nodeType":"ExpressionStatement","src":"31385:25:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13024,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13022,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13013,"src":"31424:10:44","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":13023,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13010,"src":"31438:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"31424:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13031,"nodeType":"IfStatement","src":"31420:97:44","trueBody":{"id":13030,"nodeType":"Block","src":"31445:72:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3438","id":13026,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31496:2:44","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},{"id":13027,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13010,"src":"31500:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13025,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"31466:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":13028,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31466:40:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13029,"nodeType":"RevertStatement","src":"31459:47:44"}]}}]},"documentation":{"id":13008,"nodeType":"StructuredDocumentation","src":"30991:307:44","text":" @dev Returns the downcasted int48 from int256, reverting on\n overflow (when the input is less than smallest int48 or\n greater than largest int48).\n Counterpart to Solidity's `int48` operator.\n Requirements:\n - input must fit into 48 bits"},"id":13033,"implemented":true,"kind":"function","modifiers":[],"name":"toInt48","nameLocation":"31312:7:44","nodeType":"FunctionDefinition","parameters":{"id":13011,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13010,"mutability":"mutable","name":"value","nameLocation":"31327:5:44","nodeType":"VariableDeclaration","scope":13033,"src":"31320:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13009,"name":"int256","nodeType":"ElementaryTypeName","src":"31320:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"31319:14:44"},"returnParameters":{"id":13014,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13013,"mutability":"mutable","name":"downcasted","nameLocation":"31363:10:44","nodeType":"VariableDeclaration","scope":13033,"src":"31357:16:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"},"typeName":{"id":13012,"name":"int48","nodeType":"ElementaryTypeName","src":"31357:5:44","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"visibility":"internal"}],"src":"31356:18:44"},"scope":13204,"src":"31303:220:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13058,"nodeType":"Block","src":"31913:148:44","statements":[{"expression":{"id":13046,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13041,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13039,"src":"31923:10:44","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":13044,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13036,"src":"31942:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13043,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31936:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int40_$","typeString":"type(int40)"},"typeName":{"id":13042,"name":"int40","nodeType":"ElementaryTypeName","src":"31936:5:44","typeDescriptions":{}}},"id":13045,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31936:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"src":"31923:25:44","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"id":13047,"nodeType":"ExpressionStatement","src":"31923:25:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13050,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13048,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13039,"src":"31962:10:44","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":13049,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13036,"src":"31976:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"31962:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13057,"nodeType":"IfStatement","src":"31958:97:44","trueBody":{"id":13056,"nodeType":"Block","src":"31983:72:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3430","id":13052,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32034:2:44","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},{"id":13053,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13036,"src":"32038:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13051,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"32004:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":13054,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32004:40:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13055,"nodeType":"RevertStatement","src":"31997:47:44"}]}}]},"documentation":{"id":13034,"nodeType":"StructuredDocumentation","src":"31529:307:44","text":" @dev Returns the downcasted int40 from int256, reverting on\n overflow (when the input is less than smallest int40 or\n greater than largest int40).\n Counterpart to Solidity's `int40` operator.\n Requirements:\n - input must fit into 40 bits"},"id":13059,"implemented":true,"kind":"function","modifiers":[],"name":"toInt40","nameLocation":"31850:7:44","nodeType":"FunctionDefinition","parameters":{"id":13037,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13036,"mutability":"mutable","name":"value","nameLocation":"31865:5:44","nodeType":"VariableDeclaration","scope":13059,"src":"31858:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13035,"name":"int256","nodeType":"ElementaryTypeName","src":"31858:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"31857:14:44"},"returnParameters":{"id":13040,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13039,"mutability":"mutable","name":"downcasted","nameLocation":"31901:10:44","nodeType":"VariableDeclaration","scope":13059,"src":"31895:16:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"},"typeName":{"id":13038,"name":"int40","nodeType":"ElementaryTypeName","src":"31895:5:44","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"visibility":"internal"}],"src":"31894:18:44"},"scope":13204,"src":"31841:220:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13084,"nodeType":"Block","src":"32451:148:44","statements":[{"expression":{"id":13072,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13067,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13065,"src":"32461:10:44","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":13070,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13062,"src":"32480:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13069,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32474:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int32_$","typeString":"type(int32)"},"typeName":{"id":13068,"name":"int32","nodeType":"ElementaryTypeName","src":"32474:5:44","typeDescriptions":{}}},"id":13071,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32474:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"src":"32461:25:44","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":13073,"nodeType":"ExpressionStatement","src":"32461:25:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13074,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13065,"src":"32500:10:44","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":13075,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13062,"src":"32514:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"32500:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13083,"nodeType":"IfStatement","src":"32496:97:44","trueBody":{"id":13082,"nodeType":"Block","src":"32521:72:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3332","id":13078,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32572:2:44","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},{"id":13079,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13062,"src":"32576:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13077,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"32542:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":13080,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32542:40:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13081,"nodeType":"RevertStatement","src":"32535:47:44"}]}}]},"documentation":{"id":13060,"nodeType":"StructuredDocumentation","src":"32067:307:44","text":" @dev Returns the downcasted int32 from int256, reverting on\n overflow (when the input is less than smallest int32 or\n greater than largest int32).\n Counterpart to Solidity's `int32` operator.\n Requirements:\n - input must fit into 32 bits"},"id":13085,"implemented":true,"kind":"function","modifiers":[],"name":"toInt32","nameLocation":"32388:7:44","nodeType":"FunctionDefinition","parameters":{"id":13063,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13062,"mutability":"mutable","name":"value","nameLocation":"32403:5:44","nodeType":"VariableDeclaration","scope":13085,"src":"32396:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13061,"name":"int256","nodeType":"ElementaryTypeName","src":"32396:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"32395:14:44"},"returnParameters":{"id":13066,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13065,"mutability":"mutable","name":"downcasted","nameLocation":"32439:10:44","nodeType":"VariableDeclaration","scope":13085,"src":"32433:16:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":13064,"name":"int32","nodeType":"ElementaryTypeName","src":"32433:5:44","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"src":"32432:18:44"},"scope":13204,"src":"32379:220:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13110,"nodeType":"Block","src":"32989:148:44","statements":[{"expression":{"id":13098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13093,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13091,"src":"32999:10:44","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":13096,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13088,"src":"33018:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13095,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33012:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int24_$","typeString":"type(int24)"},"typeName":{"id":13094,"name":"int24","nodeType":"ElementaryTypeName","src":"33012:5:44","typeDescriptions":{}}},"id":13097,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33012:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"src":"32999:25:44","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"id":13099,"nodeType":"ExpressionStatement","src":"32999:25:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13102,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13100,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13091,"src":"33038:10:44","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":13101,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13088,"src":"33052:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"33038:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13109,"nodeType":"IfStatement","src":"33034:97:44","trueBody":{"id":13108,"nodeType":"Block","src":"33059:72:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3234","id":13104,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33110:2:44","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},{"id":13105,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13088,"src":"33114:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13103,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"33080:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":13106,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33080:40:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13107,"nodeType":"RevertStatement","src":"33073:47:44"}]}}]},"documentation":{"id":13086,"nodeType":"StructuredDocumentation","src":"32605:307:44","text":" @dev Returns the downcasted int24 from int256, reverting on\n overflow (when the input is less than smallest int24 or\n greater than largest int24).\n Counterpart to Solidity's `int24` operator.\n Requirements:\n - input must fit into 24 bits"},"id":13111,"implemented":true,"kind":"function","modifiers":[],"name":"toInt24","nameLocation":"32926:7:44","nodeType":"FunctionDefinition","parameters":{"id":13089,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13088,"mutability":"mutable","name":"value","nameLocation":"32941:5:44","nodeType":"VariableDeclaration","scope":13111,"src":"32934:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13087,"name":"int256","nodeType":"ElementaryTypeName","src":"32934:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"32933:14:44"},"returnParameters":{"id":13092,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13091,"mutability":"mutable","name":"downcasted","nameLocation":"32977:10:44","nodeType":"VariableDeclaration","scope":13111,"src":"32971:16:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":13090,"name":"int24","nodeType":"ElementaryTypeName","src":"32971:5:44","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"}],"src":"32970:18:44"},"scope":13204,"src":"32917:220:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13136,"nodeType":"Block","src":"33527:148:44","statements":[{"expression":{"id":13124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13119,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13117,"src":"33537:10:44","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":13122,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13114,"src":"33556:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13121,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33550:5:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int16_$","typeString":"type(int16)"},"typeName":{"id":13120,"name":"int16","nodeType":"ElementaryTypeName","src":"33550:5:44","typeDescriptions":{}}},"id":13123,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33550:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"src":"33537:25:44","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"id":13125,"nodeType":"ExpressionStatement","src":"33537:25:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13128,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13126,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13117,"src":"33576:10:44","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":13127,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13114,"src":"33590:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"33576:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13135,"nodeType":"IfStatement","src":"33572:97:44","trueBody":{"id":13134,"nodeType":"Block","src":"33597:72:44","statements":[{"errorCall":{"arguments":[{"hexValue":"3136","id":13130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33648:2:44","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},{"id":13131,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13114,"src":"33652:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13129,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"33618:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":13132,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33618:40:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13133,"nodeType":"RevertStatement","src":"33611:47:44"}]}}]},"documentation":{"id":13112,"nodeType":"StructuredDocumentation","src":"33143:307:44","text":" @dev Returns the downcasted int16 from int256, reverting on\n overflow (when the input is less than smallest int16 or\n greater than largest int16).\n Counterpart to Solidity's `int16` operator.\n Requirements:\n - input must fit into 16 bits"},"id":13137,"implemented":true,"kind":"function","modifiers":[],"name":"toInt16","nameLocation":"33464:7:44","nodeType":"FunctionDefinition","parameters":{"id":13115,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13114,"mutability":"mutable","name":"value","nameLocation":"33479:5:44","nodeType":"VariableDeclaration","scope":13137,"src":"33472:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13113,"name":"int256","nodeType":"ElementaryTypeName","src":"33472:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"33471:14:44"},"returnParameters":{"id":13118,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13117,"mutability":"mutable","name":"downcasted","nameLocation":"33515:10:44","nodeType":"VariableDeclaration","scope":13137,"src":"33509:16:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"},"typeName":{"id":13116,"name":"int16","nodeType":"ElementaryTypeName","src":"33509:5:44","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"visibility":"internal"}],"src":"33508:18:44"},"scope":13204,"src":"33455:220:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13162,"nodeType":"Block","src":"34058:146:44","statements":[{"expression":{"id":13150,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13145,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13143,"src":"34068:10:44","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":13148,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13140,"src":"34086:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13147,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34081:4:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int8_$","typeString":"type(int8)"},"typeName":{"id":13146,"name":"int8","nodeType":"ElementaryTypeName","src":"34081:4:44","typeDescriptions":{}}},"id":13149,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34081:11:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"src":"34068:24:44","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"id":13151,"nodeType":"ExpressionStatement","src":"34068:24:44"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13154,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13152,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13143,"src":"34106:10:44","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":13153,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13140,"src":"34120:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"34106:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13161,"nodeType":"IfStatement","src":"34102:96:44","trueBody":{"id":13160,"nodeType":"Block","src":"34127:71:44","statements":[{"errorCall":{"arguments":[{"hexValue":"38","id":13156,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"34178:1:44","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"id":13157,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13140,"src":"34181:5:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13155,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11461,"src":"34148:29:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$__$","typeString":"function (uint8,int256) pure"}},"id":13158,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34148:39:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13159,"nodeType":"RevertStatement","src":"34141:46:44"}]}}]},"documentation":{"id":13138,"nodeType":"StructuredDocumentation","src":"33681:302:44","text":" @dev Returns the downcasted int8 from int256, reverting on\n overflow (when the input is less than smallest int8 or\n greater than largest int8).\n Counterpart to Solidity's `int8` operator.\n Requirements:\n - input must fit into 8 bits"},"id":13163,"implemented":true,"kind":"function","modifiers":[],"name":"toInt8","nameLocation":"33997:6:44","nodeType":"FunctionDefinition","parameters":{"id":13141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13140,"mutability":"mutable","name":"value","nameLocation":"34011:5:44","nodeType":"VariableDeclaration","scope":13163,"src":"34004:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13139,"name":"int256","nodeType":"ElementaryTypeName","src":"34004:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"34003:14:44"},"returnParameters":{"id":13144,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13143,"mutability":"mutable","name":"downcasted","nameLocation":"34046:10:44","nodeType":"VariableDeclaration","scope":13163,"src":"34041:15:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"},"typeName":{"id":13142,"name":"int8","nodeType":"ElementaryTypeName","src":"34041:4:44","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"visibility":"internal"}],"src":"34040:17:44"},"scope":13204,"src":"33988:216:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13192,"nodeType":"Block","src":"34444:250:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13171,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13166,"src":"34557:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[{"expression":{"arguments":[{"id":13176,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34578:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":13175,"name":"int256","nodeType":"ElementaryTypeName","src":"34578:6:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"}],"id":13174,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967269,"src":"34573:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":13177,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34573:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_int256","typeString":"type(int256)"}},"id":13178,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"34586:3:44","memberName":"max","nodeType":"MemberAccess","src":"34573:16:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13173,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34565:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":13172,"name":"uint256","nodeType":"ElementaryTypeName","src":"34565:7:44","typeDescriptions":{}}},"id":13179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34565:25:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"34557:33:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13186,"nodeType":"IfStatement","src":"34553:105:44","trueBody":{"id":13185,"nodeType":"Block","src":"34592:66:44","statements":[{"errorCall":{"arguments":[{"id":13182,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13166,"src":"34641:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13181,"name":"SafeCastOverflowedUintToInt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11466,"src":"34613:27:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":13183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34613:34:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13184,"nodeType":"RevertStatement","src":"34606:41:44"}]}},{"expression":{"arguments":[{"id":13189,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13166,"src":"34681:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13188,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34674:6:44","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":13187,"name":"int256","nodeType":"ElementaryTypeName","src":"34674:6:44","typeDescriptions":{}}},"id":13190,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34674:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":13170,"id":13191,"nodeType":"Return","src":"34667:20:44"}]},"documentation":{"id":13164,"nodeType":"StructuredDocumentation","src":"34210:165:44","text":" @dev Converts an unsigned uint256 into a signed int256.\n Requirements:\n - input must be less than or equal to maxInt256."},"id":13193,"implemented":true,"kind":"function","modifiers":[],"name":"toInt256","nameLocation":"34389:8:44","nodeType":"FunctionDefinition","parameters":{"id":13167,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13166,"mutability":"mutable","name":"value","nameLocation":"34406:5:44","nodeType":"VariableDeclaration","scope":13193,"src":"34398:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13165,"name":"uint256","nodeType":"ElementaryTypeName","src":"34398:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34397:15:44"},"returnParameters":{"id":13170,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13169,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13193,"src":"34436:6:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13168,"name":"int256","nodeType":"ElementaryTypeName","src":"34436:6:44","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"34435:8:44"},"scope":13204,"src":"34380:314:44","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13202,"nodeType":"Block","src":"34853:87:44","statements":[{"AST":{"nodeType":"YulBlock","src":"34888:46:44","statements":[{"nodeType":"YulAssignment","src":"34902:22:44","value":{"arguments":[{"arguments":[{"name":"b","nodeType":"YulIdentifier","src":"34921:1:44"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"34914:6:44"},"nodeType":"YulFunctionCall","src":"34914:9:44"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"34907:6:44"},"nodeType":"YulFunctionCall","src":"34907:17:44"},"variableNames":[{"name":"u","nodeType":"YulIdentifier","src":"34902:1:44"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":13196,"isOffset":false,"isSlot":false,"src":"34921:1:44","valueSize":1},{"declaration":13199,"isOffset":false,"isSlot":false,"src":"34902:1:44","valueSize":1}],"flags":["memory-safe"],"id":13201,"nodeType":"InlineAssembly","src":"34863:71:44"}]},"documentation":{"id":13194,"nodeType":"StructuredDocumentation","src":"34700:90:44","text":" @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump."},"id":13203,"implemented":true,"kind":"function","modifiers":[],"name":"toUint","nameLocation":"34804:6:44","nodeType":"FunctionDefinition","parameters":{"id":13197,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13196,"mutability":"mutable","name":"b","nameLocation":"34816:1:44","nodeType":"VariableDeclaration","scope":13203,"src":"34811:6:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13195,"name":"bool","nodeType":"ElementaryTypeName","src":"34811:4:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"34810:8:44"},"returnParameters":{"id":13200,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13199,"mutability":"mutable","name":"u","nameLocation":"34850:1:44","nodeType":"VariableDeclaration","scope":13203,"src":"34842:9:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13198,"name":"uint256","nodeType":"ElementaryTypeName","src":"34842:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34841:11:44"},"scope":13204,"src":"34795:145:44","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":13205,"src":"769:34173:44","usedErrors":[11449,11454,11461,11466],"usedEvents":[]}],"src":"192:34751:44"},"id":44},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/SignedMath.sol","exportedSymbols":{"SafeCast":[13204],"SignedMath":[13348]},"id":13349,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":13206,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:45"},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./SafeCast.sol","id":13208,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":13349,"sourceUnit":13205,"src":"135:40:45","symbolAliases":[{"foreign":{"id":13207,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"143:8:45","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"SignedMath","contractDependencies":[],"contractKind":"library","documentation":{"id":13209,"nodeType":"StructuredDocumentation","src":"177:80:45","text":" @dev Standard signed math utilities missing in the Solidity language."},"fullyImplemented":true,"id":13348,"linearizedBaseContracts":[13348],"name":"SignedMath","nameLocation":"266:10:45","nodeType":"ContractDefinition","nodes":[{"body":{"id":13238,"nodeType":"Block","src":"746:215:45","statements":[{"id":13237,"nodeType":"UncheckedBlock","src":"756:199:45","statements":[{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13235,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13221,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13216,"src":"894:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13233,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13224,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13222,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13214,"src":"900:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":13223,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13216,"src":"904:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"900:5:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":13225,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"899:7:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"arguments":[{"id":13230,"name":"condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13212,"src":"932:9:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":13228,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"916:8:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":13229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"925:6:45","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":13203,"src":"916:15:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":13231,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"916:26:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13227,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"909:6:45","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":13226,"name":"int256","nodeType":"ElementaryTypeName","src":"909:6:45","typeDescriptions":{}}},"id":13232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"909:34:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"899:44:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":13234,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"898:46:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"894:50:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":13220,"id":13236,"nodeType":"Return","src":"887:57:45"}]}]},"documentation":{"id":13210,"nodeType":"StructuredDocumentation","src":"283:374:45","text":" @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n one branch when needed, making this function more expensive."},"id":13239,"implemented":true,"kind":"function","modifiers":[],"name":"ternary","nameLocation":"671:7:45","nodeType":"FunctionDefinition","parameters":{"id":13217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13212,"mutability":"mutable","name":"condition","nameLocation":"684:9:45","nodeType":"VariableDeclaration","scope":13239,"src":"679:14:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13211,"name":"bool","nodeType":"ElementaryTypeName","src":"679:4:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":13214,"mutability":"mutable","name":"a","nameLocation":"702:1:45","nodeType":"VariableDeclaration","scope":13239,"src":"695:8:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13213,"name":"int256","nodeType":"ElementaryTypeName","src":"695:6:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":13216,"mutability":"mutable","name":"b","nameLocation":"712:1:45","nodeType":"VariableDeclaration","scope":13239,"src":"705:8:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13215,"name":"int256","nodeType":"ElementaryTypeName","src":"705:6:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"678:36:45"},"returnParameters":{"id":13220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13219,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13239,"src":"738:6:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13218,"name":"int256","nodeType":"ElementaryTypeName","src":"738:6:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"737:8:45"},"scope":13348,"src":"662:299:45","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13257,"nodeType":"Block","src":"1102:44:45","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13252,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13250,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13242,"src":"1127:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":13251,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13244,"src":"1131:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1127:5:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":13253,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13242,"src":"1134:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":13254,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13244,"src":"1137:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13249,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13239,"src":"1119:7:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_int256_$_t_int256_$returns$_t_int256_$","typeString":"function (bool,int256,int256) pure returns (int256)"}},"id":13255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1119:20:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":13248,"id":13256,"nodeType":"Return","src":"1112:27:45"}]},"documentation":{"id":13240,"nodeType":"StructuredDocumentation","src":"967:66:45","text":" @dev Returns the largest of two signed numbers."},"id":13258,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"1047:3:45","nodeType":"FunctionDefinition","parameters":{"id":13245,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13242,"mutability":"mutable","name":"a","nameLocation":"1058:1:45","nodeType":"VariableDeclaration","scope":13258,"src":"1051:8:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13241,"name":"int256","nodeType":"ElementaryTypeName","src":"1051:6:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":13244,"mutability":"mutable","name":"b","nameLocation":"1068:1:45","nodeType":"VariableDeclaration","scope":13258,"src":"1061:8:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13243,"name":"int256","nodeType":"ElementaryTypeName","src":"1061:6:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1050:20:45"},"returnParameters":{"id":13248,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13247,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13258,"src":"1094:6:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13246,"name":"int256","nodeType":"ElementaryTypeName","src":"1094:6:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1093:8:45"},"scope":13348,"src":"1038:108:45","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13276,"nodeType":"Block","src":"1288:44:45","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13269,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13261,"src":"1313:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":13270,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13263,"src":"1317:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1313:5:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":13272,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13261,"src":"1320:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":13273,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13263,"src":"1323:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13268,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13239,"src":"1305:7:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_int256_$_t_int256_$returns$_t_int256_$","typeString":"function (bool,int256,int256) pure returns (int256)"}},"id":13274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1305:20:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":13267,"id":13275,"nodeType":"Return","src":"1298:27:45"}]},"documentation":{"id":13259,"nodeType":"StructuredDocumentation","src":"1152:67:45","text":" @dev Returns the smallest of two signed numbers."},"id":13277,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"1233:3:45","nodeType":"FunctionDefinition","parameters":{"id":13264,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13261,"mutability":"mutable","name":"a","nameLocation":"1244:1:45","nodeType":"VariableDeclaration","scope":13277,"src":"1237:8:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13260,"name":"int256","nodeType":"ElementaryTypeName","src":"1237:6:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":13263,"mutability":"mutable","name":"b","nameLocation":"1254:1:45","nodeType":"VariableDeclaration","scope":13277,"src":"1247:8:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13262,"name":"int256","nodeType":"ElementaryTypeName","src":"1247:6:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1236:20:45"},"returnParameters":{"id":13267,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13266,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13277,"src":"1280:6:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13265,"name":"int256","nodeType":"ElementaryTypeName","src":"1280:6:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1279:8:45"},"scope":13348,"src":"1224:108:45","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13320,"nodeType":"Block","src":"1537:162:45","statements":[{"assignments":[13288],"declarations":[{"constant":false,"id":13288,"mutability":"mutable","name":"x","nameLocation":"1606:1:45","nodeType":"VariableDeclaration","scope":13320,"src":"1599:8:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13287,"name":"int256","nodeType":"ElementaryTypeName","src":"1599:6:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":13301,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13291,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13289,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13280,"src":"1611:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":13290,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13282,"src":"1615:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1611:5:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":13292,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1610:7:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13293,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13280,"src":"1622:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":13294,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13282,"src":"1626:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1622:5:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":13296,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1621:7:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":13297,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1632:1:45","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1621:12:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":13299,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1620:14:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1610:24:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"1599:35:45"},{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13302,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13288,"src":"1651:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13307,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13288,"src":"1671:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13306,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1663:7:45","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":13305,"name":"uint256","nodeType":"ElementaryTypeName","src":"1663:7:45","typeDescriptions":{}}},"id":13308,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1663:10:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":13309,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1677:3:45","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"1663:17:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13304,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1656:6:45","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":13303,"name":"int256","nodeType":"ElementaryTypeName","src":"1656:6:45","typeDescriptions":{}}},"id":13311,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1656:25:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13312,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13280,"src":"1685:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":13313,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13282,"src":"1689:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1685:5:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":13315,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1684:7:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1656:35:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":13317,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1655:37:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1651:41:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":13286,"id":13319,"nodeType":"Return","src":"1644:48:45"}]},"documentation":{"id":13278,"nodeType":"StructuredDocumentation","src":"1338:126:45","text":" @dev Returns the average of two signed numbers without overflow.\n The result is rounded towards zero."},"id":13321,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"1478:7:45","nodeType":"FunctionDefinition","parameters":{"id":13283,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13280,"mutability":"mutable","name":"a","nameLocation":"1493:1:45","nodeType":"VariableDeclaration","scope":13321,"src":"1486:8:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13279,"name":"int256","nodeType":"ElementaryTypeName","src":"1486:6:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":13282,"mutability":"mutable","name":"b","nameLocation":"1503:1:45","nodeType":"VariableDeclaration","scope":13321,"src":"1496:8:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13281,"name":"int256","nodeType":"ElementaryTypeName","src":"1496:6:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1485:20:45"},"returnParameters":{"id":13286,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13285,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13321,"src":"1529:6:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13284,"name":"int256","nodeType":"ElementaryTypeName","src":"1529:6:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1528:8:45"},"scope":13348,"src":"1469:230:45","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13346,"nodeType":"Block","src":"1843:767:45","statements":[{"id":13345,"nodeType":"UncheckedBlock","src":"1853:751:45","statements":[{"assignments":[13330],"declarations":[{"constant":false,"id":13330,"mutability":"mutable","name":"mask","nameLocation":"2424:4:45","nodeType":"VariableDeclaration","scope":13345,"src":"2417:11:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13329,"name":"int256","nodeType":"ElementaryTypeName","src":"2417:6:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":13334,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13331,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13324,"src":"2431:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":13332,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2436:3:45","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"2431:8:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"2417:22:45"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13342,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13337,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13324,"src":"2576:1:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":13338,"name":"mask","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13330,"src":"2580:4:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"2576:8:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":13340,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2575:10:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":13341,"name":"mask","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13330,"src":"2588:4:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"2575:17:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13336,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2567:7:45","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":13335,"name":"uint256","nodeType":"ElementaryTypeName","src":"2567:7:45","typeDescriptions":{}}},"id":13343,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2567:26:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13328,"id":13344,"nodeType":"Return","src":"2560:33:45"}]}]},"documentation":{"id":13322,"nodeType":"StructuredDocumentation","src":"1705:78:45","text":" @dev Returns the absolute unsigned value of a signed value."},"id":13347,"implemented":true,"kind":"function","modifiers":[],"name":"abs","nameLocation":"1797:3:45","nodeType":"FunctionDefinition","parameters":{"id":13325,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13324,"mutability":"mutable","name":"n","nameLocation":"1808:1:45","nodeType":"VariableDeclaration","scope":13347,"src":"1801:8:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13323,"name":"int256","nodeType":"ElementaryTypeName","src":"1801:6:45","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1800:10:45"},"returnParameters":{"id":13328,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13327,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13347,"src":"1834:7:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13326,"name":"uint256","nodeType":"ElementaryTypeName","src":"1834:7:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1833:9:45"},"scope":13348,"src":"1788:822:45","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":13349,"src":"258:2354:45","usedErrors":[],"usedEvents":[]}],"src":"109:2504:45"},"id":45},"@openzeppelin/contracts/utils/structs/Checkpoints.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/structs/Checkpoints.sol","exportedSymbols":{"Checkpoints":[14929],"Math":[11439]},"id":14930,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":13350,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"201:24:46"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"../math/Math.sol","id":13352,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14930,"sourceUnit":11440,"src":"227:38:46","symbolAliases":[{"foreign":{"id":13351,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11439,"src":"235:4:46","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Checkpoints","contractDependencies":[],"contractKind":"library","documentation":{"id":13353,"nodeType":"StructuredDocumentation","src":"267:400:46","text":" @dev This library defines the `Trace*` struct, for checkpointing values as they change at different points in\n time, and later looking up past values by block number. See {Votes} as an example.\n To create a history of checkpoints define a variable type `Checkpoints.Trace*` in your contract, and store a new\n checkpoint for the current transaction block using the {push} function."},"fullyImplemented":true,"id":14929,"linearizedBaseContracts":[14929],"name":"Checkpoints","nameLocation":"676:11:46","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":13354,"nodeType":"StructuredDocumentation","src":"694:82:46","text":" @dev A value was attempted to be inserted on a past checkpoint."},"errorSelector":"2520601d","id":13356,"name":"CheckpointUnorderedInsertion","nameLocation":"787:28:46","nodeType":"ErrorDefinition","parameters":{"id":13355,"nodeType":"ParameterList","parameters":[],"src":"815:2:46"},"src":"781:37:46"},{"canonicalName":"Checkpoints.Trace224","id":13361,"members":[{"constant":false,"id":13360,"mutability":"mutable","name":"_checkpoints","nameLocation":"866:12:46","nodeType":"VariableDeclaration","scope":13361,"src":"850:28:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"},"typeName":{"baseType":{"id":13358,"nodeType":"UserDefinedTypeName","pathNode":{"id":13357,"name":"Checkpoint224","nameLocations":["850:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":13366,"src":"850:13:46"},"referencedDeclaration":13366,"src":"850:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"id":13359,"nodeType":"ArrayTypeName","src":"850:15:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"}},"visibility":"internal"}],"name":"Trace224","nameLocation":"831:8:46","nodeType":"StructDefinition","scope":14929,"src":"824:61:46","visibility":"public"},{"canonicalName":"Checkpoints.Checkpoint224","id":13366,"members":[{"constant":false,"id":13363,"mutability":"mutable","name":"_key","nameLocation":"929:4:46","nodeType":"VariableDeclaration","scope":13366,"src":"922:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13362,"name":"uint32","nodeType":"ElementaryTypeName","src":"922:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":13365,"mutability":"mutable","name":"_value","nameLocation":"951:6:46","nodeType":"VariableDeclaration","scope":13366,"src":"943:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13364,"name":"uint224","nodeType":"ElementaryTypeName","src":"943:7:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"name":"Checkpoint224","nameLocation":"898:13:46","nodeType":"StructDefinition","scope":14929,"src":"891:73:46","visibility":"public"},{"body":{"id":13388,"nodeType":"Block","src":"1425:62:46","statements":[{"expression":{"arguments":[{"expression":{"id":13382,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13370,"src":"1450:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13383,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1455:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13360,"src":"1450:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"id":13384,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13372,"src":"1469:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":13385,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13374,"src":"1474:5:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint224","typeString":"uint224"}],"id":13381,"name":"_insert","nodeType":"Identifier","overloadedDeclarations":[13761,14285,14809],"referencedDeclaration":13761,"src":"1442:7:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr_$_t_uint32_$_t_uint224_$returns$_t_uint224_$_t_uint224_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint32,uint224) returns (uint224,uint224)"}},"id":13386,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1442:38:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint224_$_t_uint224_$","typeString":"tuple(uint224,uint224)"}},"functionReturnParameters":13380,"id":13387,"nodeType":"Return","src":"1435:45:46"}]},"documentation":{"id":13367,"nodeType":"StructuredDocumentation","src":"970:302:46","text":" @dev Pushes a (`key`, `value`) pair into a Trace224 so that it is stored as the checkpoint.\n Returns previous value and new value.\n IMPORTANT: Never accept `key` as a user input, since an arbitrary `type(uint32).max` key set will disable the\n library."},"id":13389,"implemented":true,"kind":"function","modifiers":[],"name":"push","nameLocation":"1286:4:46","nodeType":"FunctionDefinition","parameters":{"id":13375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13370,"mutability":"mutable","name":"self","nameLocation":"1317:4:46","nodeType":"VariableDeclaration","scope":13389,"src":"1300:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":13369,"nodeType":"UserDefinedTypeName","pathNode":{"id":13368,"name":"Trace224","nameLocations":["1300:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":13361,"src":"1300:8:46"},"referencedDeclaration":13361,"src":"1300:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"},{"constant":false,"id":13372,"mutability":"mutable","name":"key","nameLocation":"1338:3:46","nodeType":"VariableDeclaration","scope":13389,"src":"1331:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13371,"name":"uint32","nodeType":"ElementaryTypeName","src":"1331:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":13374,"mutability":"mutable","name":"value","nameLocation":"1359:5:46","nodeType":"VariableDeclaration","scope":13389,"src":"1351:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13373,"name":"uint224","nodeType":"ElementaryTypeName","src":"1351:7:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"1290:80:46"},"returnParameters":{"id":13380,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13377,"mutability":"mutable","name":"oldValue","nameLocation":"1397:8:46","nodeType":"VariableDeclaration","scope":13389,"src":"1389:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13376,"name":"uint224","nodeType":"ElementaryTypeName","src":"1389:7:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"},{"constant":false,"id":13379,"mutability":"mutable","name":"newValue","nameLocation":"1415:8:46","nodeType":"VariableDeclaration","scope":13389,"src":"1407:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13378,"name":"uint224","nodeType":"ElementaryTypeName","src":"1407:7:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"1388:36:46"},"scope":14929,"src":"1277:210:46","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":13428,"nodeType":"Block","src":"1740:207:46","statements":[{"assignments":[13401],"declarations":[{"constant":false,"id":13401,"mutability":"mutable","name":"len","nameLocation":"1758:3:46","nodeType":"VariableDeclaration","scope":13428,"src":"1750:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13400,"name":"uint256","nodeType":"ElementaryTypeName","src":"1750:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13405,"initialValue":{"expression":{"expression":{"id":13402,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13393,"src":"1764:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13403,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1769:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13360,"src":"1764:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":13404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1782:6:46","memberName":"length","nodeType":"MemberAccess","src":"1764:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1750:38:46"},{"assignments":[13407],"declarations":[{"constant":false,"id":13407,"mutability":"mutable","name":"pos","nameLocation":"1806:3:46","nodeType":"VariableDeclaration","scope":13428,"src":"1798:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13406,"name":"uint256","nodeType":"ElementaryTypeName","src":"1798:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13415,"initialValue":{"arguments":[{"expression":{"id":13409,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13393,"src":"1831:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13410,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1836:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13360,"src":"1831:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"id":13411,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13395,"src":"1850:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":13412,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1855:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":13413,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13401,"src":"1858:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13408,"name":"_lowerBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13865,14389,14913],"referencedDeclaration":13865,"src":"1812:18:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr_$_t_uint32_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint32,uint256,uint256) view returns (uint256)"}},"id":13414,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1812:50:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1798:64:46"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13418,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13416,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13407,"src":"1879:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":13417,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13401,"src":"1886:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1879:10:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13421,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13393,"src":"1910:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13422,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1915:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13360,"src":"1910:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"id":13423,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13407,"src":"1929:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13420,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":13880,"src":"1896:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$13366_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13424,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1896:37:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13425,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1934:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13365,"src":"1896:44:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"id":13426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1879:61:46","trueExpression":{"hexValue":"30","id":13419,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1892:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":13399,"id":13427,"nodeType":"Return","src":"1872:68:46"}]},"documentation":{"id":13390,"nodeType":"StructuredDocumentation","src":"1493:154:46","text":" @dev Returns the value in the first (oldest) checkpoint with key greater or equal than the search key, or zero if\n there is none."},"id":13429,"implemented":true,"kind":"function","modifiers":[],"name":"lowerLookup","nameLocation":"1661:11:46","nodeType":"FunctionDefinition","parameters":{"id":13396,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13393,"mutability":"mutable","name":"self","nameLocation":"1690:4:46","nodeType":"VariableDeclaration","scope":13429,"src":"1673:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":13392,"nodeType":"UserDefinedTypeName","pathNode":{"id":13391,"name":"Trace224","nameLocations":["1673:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":13361,"src":"1673:8:46"},"referencedDeclaration":13361,"src":"1673:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"},{"constant":false,"id":13395,"mutability":"mutable","name":"key","nameLocation":"1703:3:46","nodeType":"VariableDeclaration","scope":13429,"src":"1696:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13394,"name":"uint32","nodeType":"ElementaryTypeName","src":"1696:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"1672:35:46"},"returnParameters":{"id":13399,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13398,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13429,"src":"1731:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13397,"name":"uint224","nodeType":"ElementaryTypeName","src":"1731:7:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"1730:9:46"},"scope":14929,"src":"1652:295:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13470,"nodeType":"Block","src":"2202:209:46","statements":[{"assignments":[13441],"declarations":[{"constant":false,"id":13441,"mutability":"mutable","name":"len","nameLocation":"2220:3:46","nodeType":"VariableDeclaration","scope":13470,"src":"2212:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13440,"name":"uint256","nodeType":"ElementaryTypeName","src":"2212:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13445,"initialValue":{"expression":{"expression":{"id":13442,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13433,"src":"2226:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13443,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2231:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13360,"src":"2226:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":13444,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2244:6:46","memberName":"length","nodeType":"MemberAccess","src":"2226:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2212:38:46"},{"assignments":[13447],"declarations":[{"constant":false,"id":13447,"mutability":"mutable","name":"pos","nameLocation":"2268:3:46","nodeType":"VariableDeclaration","scope":13470,"src":"2260:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13446,"name":"uint256","nodeType":"ElementaryTypeName","src":"2260:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13455,"initialValue":{"arguments":[{"expression":{"id":13449,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13433,"src":"2293:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13450,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2298:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13360,"src":"2293:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"id":13451,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13435,"src":"2312:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":13452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2317:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":13453,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13441,"src":"2320:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13448,"name":"_upperBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13813,14337,14861],"referencedDeclaration":13813,"src":"2274:18:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr_$_t_uint32_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint32,uint256,uint256) view returns (uint256)"}},"id":13454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2274:50:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2260:64:46"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13456,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13447,"src":"2341:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":13457,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2348:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2341:8:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13461,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13433,"src":"2370:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13462,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2375:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13360,"src":"2370:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13465,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13463,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13447,"src":"2389:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13464,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2395:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2389:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13460,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":13880,"src":"2356:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$13366_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13466,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2356:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13467,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2398:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13365,"src":"2356:48:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"id":13468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2341:63:46","trueExpression":{"hexValue":"30","id":13459,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2352:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":13439,"id":13469,"nodeType":"Return","src":"2334:70:46"}]},"documentation":{"id":13430,"nodeType":"StructuredDocumentation","src":"1953:156:46","text":" @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n if there is none."},"id":13471,"implemented":true,"kind":"function","modifiers":[],"name":"upperLookup","nameLocation":"2123:11:46","nodeType":"FunctionDefinition","parameters":{"id":13436,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13433,"mutability":"mutable","name":"self","nameLocation":"2152:4:46","nodeType":"VariableDeclaration","scope":13471,"src":"2135:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":13432,"nodeType":"UserDefinedTypeName","pathNode":{"id":13431,"name":"Trace224","nameLocations":["2135:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":13361,"src":"2135:8:46"},"referencedDeclaration":13361,"src":"2135:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"},{"constant":false,"id":13435,"mutability":"mutable","name":"key","nameLocation":"2165:3:46","nodeType":"VariableDeclaration","scope":13471,"src":"2158:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13434,"name":"uint32","nodeType":"ElementaryTypeName","src":"2158:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2134:35:46"},"returnParameters":{"id":13439,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13438,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13471,"src":"2193:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13437,"name":"uint224","nodeType":"ElementaryTypeName","src":"2193:7:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"2192:9:46"},"scope":14929,"src":"2114:297:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13555,"nodeType":"Block","src":"2810:512:46","statements":[{"assignments":[13483],"declarations":[{"constant":false,"id":13483,"mutability":"mutable","name":"len","nameLocation":"2828:3:46","nodeType":"VariableDeclaration","scope":13555,"src":"2820:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13482,"name":"uint256","nodeType":"ElementaryTypeName","src":"2820:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13487,"initialValue":{"expression":{"expression":{"id":13484,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13475,"src":"2834:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13485,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2839:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13360,"src":"2834:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":13486,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2852:6:46","memberName":"length","nodeType":"MemberAccess","src":"2834:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2820:38:46"},{"assignments":[13489],"declarations":[{"constant":false,"id":13489,"mutability":"mutable","name":"low","nameLocation":"2877:3:46","nodeType":"VariableDeclaration","scope":13555,"src":"2869:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13488,"name":"uint256","nodeType":"ElementaryTypeName","src":"2869:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13491,"initialValue":{"hexValue":"30","id":13490,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2883:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"2869:15:46"},{"assignments":[13493],"declarations":[{"constant":false,"id":13493,"mutability":"mutable","name":"high","nameLocation":"2902:4:46","nodeType":"VariableDeclaration","scope":13555,"src":"2894:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13492,"name":"uint256","nodeType":"ElementaryTypeName","src":"2894:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13495,"initialValue":{"id":13494,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13483,"src":"2909:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2894:18:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13498,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13496,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13483,"src":"2927:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"35","id":13497,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2933:1:46","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"2927:7:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13530,"nodeType":"IfStatement","src":"2923:234:46","trueBody":{"id":13529,"nodeType":"Block","src":"2936:221:46","statements":[{"assignments":[13500],"declarations":[{"constant":false,"id":13500,"mutability":"mutable","name":"mid","nameLocation":"2958:3:46","nodeType":"VariableDeclaration","scope":13529,"src":"2950:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13499,"name":"uint256","nodeType":"ElementaryTypeName","src":"2950:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13507,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13506,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13501,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13483,"src":"2964:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":13504,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13483,"src":"2980:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":13502,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11439,"src":"2970:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$11439_$","typeString":"type(library Math)"}},"id":13503,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2975:4:46","memberName":"sqrt","nodeType":"MemberAccess","referencedDeclaration":10983,"src":"2970:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":13505,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2970:14:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2964:20:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2950:34:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":13515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13508,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13477,"src":"3002:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"expression":{"id":13510,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13475,"src":"3022:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13511,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3027:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13360,"src":"3022:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"id":13512,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13500,"src":"3041:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13509,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":13880,"src":"3008:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$13366_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13513,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3008:37:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13514,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3046:4:46","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13363,"src":"3008:42:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"3002:48:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13527,"nodeType":"Block","src":"3101:46:46","statements":[{"expression":{"id":13525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13521,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13489,"src":"3119:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13522,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13500,"src":"3125:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":13523,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3131:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3125:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3119:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13526,"nodeType":"ExpressionStatement","src":"3119:13:46"}]},"id":13528,"nodeType":"IfStatement","src":"2998:149:46","trueBody":{"id":13520,"nodeType":"Block","src":"3052:43:46","statements":[{"expression":{"id":13518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13516,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13493,"src":"3070:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13517,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13500,"src":"3077:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3070:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13519,"nodeType":"ExpressionStatement","src":"3070:10:46"}]}}]}},{"assignments":[13532],"declarations":[{"constant":false,"id":13532,"mutability":"mutable","name":"pos","nameLocation":"3175:3:46","nodeType":"VariableDeclaration","scope":13555,"src":"3167:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13531,"name":"uint256","nodeType":"ElementaryTypeName","src":"3167:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13540,"initialValue":{"arguments":[{"expression":{"id":13534,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13475,"src":"3200:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13535,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3205:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13360,"src":"3200:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"id":13536,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13477,"src":"3219:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":13537,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13489,"src":"3224:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13538,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13493,"src":"3229:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13533,"name":"_upperBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13813,14337,14861],"referencedDeclaration":13813,"src":"3181:18:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr_$_t_uint32_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint32,uint256,uint256) view returns (uint256)"}},"id":13539,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3181:53:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3167:67:46"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13543,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13541,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13532,"src":"3252:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":13542,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3259:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3252:8:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13546,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13475,"src":"3281:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13547,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3286:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13360,"src":"3281:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13550,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13548,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13532,"src":"3300:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13549,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3306:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3300:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13545,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":13880,"src":"3267:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$13366_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3267:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13552,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3309:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13365,"src":"3267:48:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"id":13553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"3252:63:46","trueExpression":{"hexValue":"30","id":13544,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3263:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":13481,"id":13554,"nodeType":"Return","src":"3245:70:46"}]},"documentation":{"id":13472,"nodeType":"StructuredDocumentation","src":"2417:294:46","text":" @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n if there is none.\n NOTE: This is a variant of {upperLookup} that is optimised to find \"recent\" checkpoint (checkpoints with high\n keys)."},"id":13556,"implemented":true,"kind":"function","modifiers":[],"name":"upperLookupRecent","nameLocation":"2725:17:46","nodeType":"FunctionDefinition","parameters":{"id":13478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13475,"mutability":"mutable","name":"self","nameLocation":"2760:4:46","nodeType":"VariableDeclaration","scope":13556,"src":"2743:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":13474,"nodeType":"UserDefinedTypeName","pathNode":{"id":13473,"name":"Trace224","nameLocations":["2743:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":13361,"src":"2743:8:46"},"referencedDeclaration":13361,"src":"2743:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"},{"constant":false,"id":13477,"mutability":"mutable","name":"key","nameLocation":"2773:3:46","nodeType":"VariableDeclaration","scope":13556,"src":"2766:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13476,"name":"uint32","nodeType":"ElementaryTypeName","src":"2766:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2742:35:46"},"returnParameters":{"id":13481,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13480,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13556,"src":"2801:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13479,"name":"uint224","nodeType":"ElementaryTypeName","src":"2801:7:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"2800:9:46"},"scope":14929,"src":"2716:606:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13585,"nodeType":"Block","src":"3513:135:46","statements":[{"assignments":[13566],"declarations":[{"constant":false,"id":13566,"mutability":"mutable","name":"pos","nameLocation":"3531:3:46","nodeType":"VariableDeclaration","scope":13585,"src":"3523:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13565,"name":"uint256","nodeType":"ElementaryTypeName","src":"3523:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13570,"initialValue":{"expression":{"expression":{"id":13567,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13560,"src":"3537:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13568,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3542:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13360,"src":"3537:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":13569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3555:6:46","memberName":"length","nodeType":"MemberAccess","src":"3537:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3523:38:46"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13573,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13571,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13566,"src":"3578:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":13572,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3585:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3578:8:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13576,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13560,"src":"3607:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13577,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3612:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13360,"src":"3607:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13580,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13578,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13566,"src":"3626:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3632:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3626:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13575,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":13880,"src":"3593:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$13366_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13581,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3593:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13582,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3635:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13365,"src":"3593:48:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"id":13583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"3578:63:46","trueExpression":{"hexValue":"30","id":13574,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3589:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":13564,"id":13584,"nodeType":"Return","src":"3571:70:46"}]},"documentation":{"id":13557,"nodeType":"StructuredDocumentation","src":"3328:109:46","text":" @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints."},"id":13586,"implemented":true,"kind":"function","modifiers":[],"name":"latest","nameLocation":"3451:6:46","nodeType":"FunctionDefinition","parameters":{"id":13561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13560,"mutability":"mutable","name":"self","nameLocation":"3475:4:46","nodeType":"VariableDeclaration","scope":13586,"src":"3458:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":13559,"nodeType":"UserDefinedTypeName","pathNode":{"id":13558,"name":"Trace224","nameLocations":["3458:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":13361,"src":"3458:8:46"},"referencedDeclaration":13361,"src":"3458:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"}],"src":"3457:23:46"},"returnParameters":{"id":13564,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13563,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13586,"src":"3504:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13562,"name":"uint224","nodeType":"ElementaryTypeName","src":"3504:7:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"3503:9:46"},"scope":14929,"src":"3442:206:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13634,"nodeType":"Block","src":"3941:275:46","statements":[{"assignments":[13600],"declarations":[{"constant":false,"id":13600,"mutability":"mutable","name":"pos","nameLocation":"3959:3:46","nodeType":"VariableDeclaration","scope":13634,"src":"3951:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13599,"name":"uint256","nodeType":"ElementaryTypeName","src":"3951:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13604,"initialValue":{"expression":{"expression":{"id":13601,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13590,"src":"3965:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13602,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3970:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13360,"src":"3965:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":13603,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3983:6:46","memberName":"length","nodeType":"MemberAccess","src":"3965:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3951:38:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13607,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13605,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13600,"src":"4003:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":13606,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4010:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4003:8:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13632,"nodeType":"Block","src":"4064:146:46","statements":[{"assignments":[13616],"declarations":[{"constant":false,"id":13616,"mutability":"mutable","name":"ckpt","nameLocation":"4100:4:46","nodeType":"VariableDeclaration","scope":13632,"src":"4078:26:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"},"typeName":{"id":13615,"nodeType":"UserDefinedTypeName","pathNode":{"id":13614,"name":"Checkpoint224","nameLocations":["4078:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":13366,"src":"4078:13:46"},"referencedDeclaration":13366,"src":"4078:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"visibility":"internal"}],"id":13624,"initialValue":{"arguments":[{"expression":{"id":13618,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13590,"src":"4121:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13619,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4126:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13360,"src":"4121:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13622,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13620,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13600,"src":"4140:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13621,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4146:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4140:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13617,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":13880,"src":"4107:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$13366_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13623,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4107:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"4078:70:46"},{"expression":{"components":[{"hexValue":"74727565","id":13625,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4170:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"id":13626,"name":"ckpt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13616,"src":"4176:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13627,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4181:4:46","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13363,"src":"4176:9:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"expression":{"id":13628,"name":"ckpt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13616,"src":"4187:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13629,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4192:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13365,"src":"4187:11:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}}],"id":13630,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4169:30:46","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$_t_uint224_$","typeString":"tuple(bool,uint32,uint224)"}},"functionReturnParameters":13598,"id":13631,"nodeType":"Return","src":"4162:37:46"}]},"id":13633,"nodeType":"IfStatement","src":"3999:211:46","trueBody":{"id":13613,"nodeType":"Block","src":"4013:45:46","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":13608,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4035:5:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":13609,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4042:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":13610,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4045:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":13611,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"4034:13:46","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0,int_const 0)"}},"functionReturnParameters":13598,"id":13612,"nodeType":"Return","src":"4027:20:46"}]}}]},"documentation":{"id":13587,"nodeType":"StructuredDocumentation","src":"3654:168:46","text":" @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value\n in the most recent checkpoint."},"id":13635,"implemented":true,"kind":"function","modifiers":[],"name":"latestCheckpoint","nameLocation":"3836:16:46","nodeType":"FunctionDefinition","parameters":{"id":13591,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13590,"mutability":"mutable","name":"self","nameLocation":"3870:4:46","nodeType":"VariableDeclaration","scope":13635,"src":"3853:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":13589,"nodeType":"UserDefinedTypeName","pathNode":{"id":13588,"name":"Trace224","nameLocations":["3853:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":13361,"src":"3853:8:46"},"referencedDeclaration":13361,"src":"3853:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"}],"src":"3852:23:46"},"returnParameters":{"id":13598,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13593,"mutability":"mutable","name":"exists","nameLocation":"3904:6:46","nodeType":"VariableDeclaration","scope":13635,"src":"3899:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13592,"name":"bool","nodeType":"ElementaryTypeName","src":"3899:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":13595,"mutability":"mutable","name":"_key","nameLocation":"3919:4:46","nodeType":"VariableDeclaration","scope":13635,"src":"3912:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13594,"name":"uint32","nodeType":"ElementaryTypeName","src":"3912:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":13597,"mutability":"mutable","name":"_value","nameLocation":"3933:6:46","nodeType":"VariableDeclaration","scope":13635,"src":"3925:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13596,"name":"uint224","nodeType":"ElementaryTypeName","src":"3925:7:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"3898:42:46"},"scope":14929,"src":"3827:389:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13648,"nodeType":"Block","src":"4356:48:46","statements":[{"expression":{"expression":{"expression":{"id":13644,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13639,"src":"4373:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13645,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4378:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13360,"src":"4373:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":13646,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4391:6:46","memberName":"length","nodeType":"MemberAccess","src":"4373:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13643,"id":13647,"nodeType":"Return","src":"4366:31:46"}]},"documentation":{"id":13636,"nodeType":"StructuredDocumentation","src":"4222:58:46","text":" @dev Returns the number of checkpoints."},"id":13649,"implemented":true,"kind":"function","modifiers":[],"name":"length","nameLocation":"4294:6:46","nodeType":"FunctionDefinition","parameters":{"id":13640,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13639,"mutability":"mutable","name":"self","nameLocation":"4318:4:46","nodeType":"VariableDeclaration","scope":13649,"src":"4301:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":13638,"nodeType":"UserDefinedTypeName","pathNode":{"id":13637,"name":"Trace224","nameLocations":["4301:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":13361,"src":"4301:8:46"},"referencedDeclaration":13361,"src":"4301:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"}],"src":"4300:23:46"},"returnParameters":{"id":13643,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13642,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13649,"src":"4347:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13641,"name":"uint256","nodeType":"ElementaryTypeName","src":"4347:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4346:9:46"},"scope":14929,"src":"4285:119:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13666,"nodeType":"Block","src":"4568:46:46","statements":[{"expression":{"baseExpression":{"expression":{"id":13661,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13653,"src":"4585:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224 storage pointer"}},"id":13662,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4590:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13360,"src":"4585:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage ref"}},"id":13664,"indexExpression":{"id":13663,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13655,"src":"4603:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4585:22:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage","typeString":"struct Checkpoints.Checkpoint224 storage ref"}},"functionReturnParameters":13660,"id":13665,"nodeType":"Return","src":"4578:29:46"}]},"documentation":{"id":13650,"nodeType":"StructuredDocumentation","src":"4410:61:46","text":" @dev Returns checkpoint at given position."},"id":13667,"implemented":true,"kind":"function","modifiers":[],"name":"at","nameLocation":"4485:2:46","nodeType":"FunctionDefinition","parameters":{"id":13656,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13653,"mutability":"mutable","name":"self","nameLocation":"4505:4:46","nodeType":"VariableDeclaration","scope":13667,"src":"4488:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224"},"typeName":{"id":13652,"nodeType":"UserDefinedTypeName","pathNode":{"id":13651,"name":"Trace224","nameLocations":["4488:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":13361,"src":"4488:8:46"},"referencedDeclaration":13361,"src":"4488:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace224_$13361_storage_ptr","typeString":"struct Checkpoints.Trace224"}},"visibility":"internal"},{"constant":false,"id":13655,"mutability":"mutable","name":"pos","nameLocation":"4518:3:46","nodeType":"VariableDeclaration","scope":13667,"src":"4511:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13654,"name":"uint32","nodeType":"ElementaryTypeName","src":"4511:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"4487:35:46"},"returnParameters":{"id":13660,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13659,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13667,"src":"4546:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_memory_ptr","typeString":"struct Checkpoints.Checkpoint224"},"typeName":{"id":13658,"nodeType":"UserDefinedTypeName","pathNode":{"id":13657,"name":"Checkpoint224","nameLocations":["4546:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":13366,"src":"4546:13:46"},"referencedDeclaration":13366,"src":"4546:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"visibility":"internal"}],"src":"4545:22:46"},"scope":14929,"src":"4476:138:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13760,"nodeType":"Block","src":"4947:765:46","statements":[{"assignments":[13684],"declarations":[{"constant":false,"id":13684,"mutability":"mutable","name":"pos","nameLocation":"4965:3:46","nodeType":"VariableDeclaration","scope":13760,"src":"4957:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13683,"name":"uint256","nodeType":"ElementaryTypeName","src":"4957:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13687,"initialValue":{"expression":{"id":13685,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13672,"src":"4971:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"}},"id":13686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4976:6:46","memberName":"length","nodeType":"MemberAccess","src":"4971:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"4957:25:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13690,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13688,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13684,"src":"4997:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":13689,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5003:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4997:7:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13758,"nodeType":"Block","src":"5598:108:46","statements":[{"expression":{"arguments":[{"arguments":[{"id":13749,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13674,"src":"5643:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":13750,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13676,"src":"5656:5:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint224","typeString":"uint224"}],"id":13748,"name":"Checkpoint224","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13366,"src":"5622:13:46","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Checkpoint224_$13366_storage_ptr_$","typeString":"type(struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13751,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["5637:4:46","5648:6:46"],"names":["_key","_value"],"nodeType":"FunctionCall","src":"5622:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_memory_ptr","typeString":"struct Checkpoints.Checkpoint224 memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Checkpoint224_$13366_memory_ptr","typeString":"struct Checkpoints.Checkpoint224 memory"}],"expression":{"id":13745,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13672,"src":"5612:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"}},"id":13747,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5617:4:46","memberName":"push","nodeType":"MemberAccess","src":"5612:9:46","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr_$_t_struct$_Checkpoint224_$13366_storage_$returns$__$attached_to$_t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,struct Checkpoints.Checkpoint224 storage ref)"}},"id":13752,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5612:52:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13753,"nodeType":"ExpressionStatement","src":"5612:52:46"},{"expression":{"components":[{"hexValue":"30","id":13754,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5686:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":13755,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13676,"src":"5689:5:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}}],"id":13756,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5685:10:46","typeDescriptions":{"typeIdentifier":"t_tuple$_t_rational_0_by_1_$_t_uint224_$","typeString":"tuple(int_const 0,uint224)"}},"functionReturnParameters":13682,"id":13757,"nodeType":"Return","src":"5678:17:46"}]},"id":13759,"nodeType":"IfStatement","src":"4993:713:46","trueBody":{"id":13744,"nodeType":"Block","src":"5006:586:46","statements":[{"assignments":[13693],"declarations":[{"constant":false,"id":13693,"mutability":"mutable","name":"last","nameLocation":"5042:4:46","nodeType":"VariableDeclaration","scope":13744,"src":"5020:26:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"},"typeName":{"id":13692,"nodeType":"UserDefinedTypeName","pathNode":{"id":13691,"name":"Checkpoint224","nameLocations":["5020:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":13366,"src":"5020:13:46"},"referencedDeclaration":13366,"src":"5020:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"visibility":"internal"}],"id":13700,"initialValue":{"arguments":[{"id":13695,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13672,"src":"5063:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13696,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13684,"src":"5069:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13697,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5075:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"5069:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13694,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":13880,"src":"5049:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$13366_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13699,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5049:28:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"5020:57:46"},{"assignments":[13702],"declarations":[{"constant":false,"id":13702,"mutability":"mutable","name":"lastKey","nameLocation":"5098:7:46","nodeType":"VariableDeclaration","scope":13744,"src":"5091:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13701,"name":"uint32","nodeType":"ElementaryTypeName","src":"5091:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":13705,"initialValue":{"expression":{"id":13703,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13693,"src":"5108:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13704,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5113:4:46","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13363,"src":"5108:9:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"5091:26:46"},{"assignments":[13707],"declarations":[{"constant":false,"id":13707,"mutability":"mutable","name":"lastValue","nameLocation":"5139:9:46","nodeType":"VariableDeclaration","scope":13744,"src":"5131:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13706,"name":"uint224","nodeType":"ElementaryTypeName","src":"5131:7:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"id":13710,"initialValue":{"expression":{"id":13708,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13693,"src":"5151:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13709,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5156:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13365,"src":"5151:11:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"nodeType":"VariableDeclarationStatement","src":"5131:31:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":13713,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13711,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13702,"src":"5236:7:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":13712,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13674,"src":"5246:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"5236:13:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13718,"nodeType":"IfStatement","src":"5232:89:46","trueBody":{"id":13717,"nodeType":"Block","src":"5251:70:46","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13714,"name":"CheckpointUnorderedInsertion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13356,"src":"5276:28:46","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":13715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5276:30:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13716,"nodeType":"RevertStatement","src":"5269:37:46"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":13721,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13719,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13702,"src":"5384:7:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":13720,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13674,"src":"5395:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"5384:14:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13738,"nodeType":"Block","src":"5458:85:46","statements":[{"expression":{"arguments":[{"arguments":[{"id":13733,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13674,"src":"5507:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":13734,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13676,"src":"5520:5:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint224","typeString":"uint224"}],"id":13732,"name":"Checkpoint224","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13366,"src":"5486:13:46","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Checkpoint224_$13366_storage_ptr_$","typeString":"type(struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13735,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["5501:4:46","5512:6:46"],"names":["_key","_value"],"nodeType":"FunctionCall","src":"5486:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_memory_ptr","typeString":"struct Checkpoints.Checkpoint224 memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Checkpoint224_$13366_memory_ptr","typeString":"struct Checkpoints.Checkpoint224 memory"}],"expression":{"id":13729,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13672,"src":"5476:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"}},"id":13731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5481:4:46","memberName":"push","nodeType":"MemberAccess","src":"5476:9:46","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr_$_t_struct$_Checkpoint224_$13366_storage_$returns$__$attached_to$_t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,struct Checkpoints.Checkpoint224 storage ref)"}},"id":13736,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5476:52:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13737,"nodeType":"ExpressionStatement","src":"5476:52:46"}]},"id":13739,"nodeType":"IfStatement","src":"5380:163:46","trueBody":{"id":13728,"nodeType":"Block","src":"5400:52:46","statements":[{"expression":{"id":13726,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":13722,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13693,"src":"5418:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13724,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5423:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13365,"src":"5418:11:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13725,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13676,"src":"5432:5:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"src":"5418:19:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"id":13727,"nodeType":"ExpressionStatement","src":"5418:19:46"}]}},{"expression":{"components":[{"id":13740,"name":"lastValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13707,"src":"5564:9:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},{"id":13741,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13676,"src":"5575:5:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}}],"id":13742,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5563:18:46","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint224_$_t_uint224_$","typeString":"tuple(uint224,uint224)"}},"functionReturnParameters":13682,"id":13743,"nodeType":"Return","src":"5556:25:46"}]}}]},"documentation":{"id":13668,"nodeType":"StructuredDocumentation","src":"4620:165:46","text":" @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint,\n or by updating the last one."},"id":13761,"implemented":true,"kind":"function","modifiers":[],"name":"_insert","nameLocation":"4799:7:46","nodeType":"FunctionDefinition","parameters":{"id":13677,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13672,"mutability":"mutable","name":"self","nameLocation":"4840:4:46","nodeType":"VariableDeclaration","scope":13761,"src":"4816:28:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"},"typeName":{"baseType":{"id":13670,"nodeType":"UserDefinedTypeName","pathNode":{"id":13669,"name":"Checkpoint224","nameLocations":["4816:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":13366,"src":"4816:13:46"},"referencedDeclaration":13366,"src":"4816:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"id":13671,"nodeType":"ArrayTypeName","src":"4816:15:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"}},"visibility":"internal"},{"constant":false,"id":13674,"mutability":"mutable","name":"key","nameLocation":"4861:3:46","nodeType":"VariableDeclaration","scope":13761,"src":"4854:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13673,"name":"uint32","nodeType":"ElementaryTypeName","src":"4854:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":13676,"mutability":"mutable","name":"value","nameLocation":"4882:5:46","nodeType":"VariableDeclaration","scope":13761,"src":"4874:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13675,"name":"uint224","nodeType":"ElementaryTypeName","src":"4874:7:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"4806:87:46"},"returnParameters":{"id":13682,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13679,"mutability":"mutable","name":"oldValue","nameLocation":"4919:8:46","nodeType":"VariableDeclaration","scope":13761,"src":"4911:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13678,"name":"uint224","nodeType":"ElementaryTypeName","src":"4911:7:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"},{"constant":false,"id":13681,"mutability":"mutable","name":"newValue","nameLocation":"4937:8:46","nodeType":"VariableDeclaration","scope":13761,"src":"4929:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":13680,"name":"uint224","nodeType":"ElementaryTypeName","src":"4929:7:46","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"4910:36:46"},"scope":14929,"src":"4790:922:46","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":13812,"nodeType":"Block","src":"6228:267:46","statements":[{"body":{"id":13808,"nodeType":"Block","src":"6257:211:46","statements":[{"assignments":[13781],"declarations":[{"constant":false,"id":13781,"mutability":"mutable","name":"mid","nameLocation":"6279:3:46","nodeType":"VariableDeclaration","scope":13808,"src":"6271:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13780,"name":"uint256","nodeType":"ElementaryTypeName","src":"6271:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13787,"initialValue":{"arguments":[{"id":13784,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13770,"src":"6298:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13785,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13772,"src":"6303:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":13782,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11439,"src":"6285:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$11439_$","typeString":"type(library Math)"}},"id":13783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6290:7:46","memberName":"average","nodeType":"MemberAccess","referencedDeclaration":10168,"src":"6285:12:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":13786,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6285:23:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6271:37:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":13794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":13789,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13766,"src":"6340:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"}},{"id":13790,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13781,"src":"6346:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13788,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":13880,"src":"6326:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$13366_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13791,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6326:24:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13792,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6351:4:46","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13363,"src":"6326:29:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":13793,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13768,"src":"6358:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"6326:35:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13806,"nodeType":"Block","src":"6412:46:46","statements":[{"expression":{"id":13804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13800,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13770,"src":"6430:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13801,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13781,"src":"6436:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":13802,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6442:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"6436:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6430:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13805,"nodeType":"ExpressionStatement","src":"6430:13:46"}]},"id":13807,"nodeType":"IfStatement","src":"6322:136:46","trueBody":{"id":13799,"nodeType":"Block","src":"6363:43:46","statements":[{"expression":{"id":13797,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13795,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13772,"src":"6381:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13796,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13781,"src":"6388:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6381:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13798,"nodeType":"ExpressionStatement","src":"6381:10:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13777,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13770,"src":"6245:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":13778,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13772,"src":"6251:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6245:10:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13809,"nodeType":"WhileStatement","src":"6238:230:46"},{"expression":{"id":13810,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13772,"src":"6484:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13776,"id":13811,"nodeType":"Return","src":"6477:11:46"}]},"documentation":{"id":13762,"nodeType":"StructuredDocumentation","src":"5718:339:46","text":" @dev Return the index of the first (oldest) checkpoint with key strictly bigger than the search key, or `high`\n if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n `high`.\n WARNING: `high` should not be greater than the array's length."},"id":13813,"implemented":true,"kind":"function","modifiers":[],"name":"_upperBinaryLookup","nameLocation":"6071:18:46","nodeType":"FunctionDefinition","parameters":{"id":13773,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13766,"mutability":"mutable","name":"self","nameLocation":"6123:4:46","nodeType":"VariableDeclaration","scope":13813,"src":"6099:28:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"},"typeName":{"baseType":{"id":13764,"nodeType":"UserDefinedTypeName","pathNode":{"id":13763,"name":"Checkpoint224","nameLocations":["6099:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":13366,"src":"6099:13:46"},"referencedDeclaration":13366,"src":"6099:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"id":13765,"nodeType":"ArrayTypeName","src":"6099:15:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"}},"visibility":"internal"},{"constant":false,"id":13768,"mutability":"mutable","name":"key","nameLocation":"6144:3:46","nodeType":"VariableDeclaration","scope":13813,"src":"6137:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13767,"name":"uint32","nodeType":"ElementaryTypeName","src":"6137:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":13770,"mutability":"mutable","name":"low","nameLocation":"6165:3:46","nodeType":"VariableDeclaration","scope":13813,"src":"6157:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13769,"name":"uint256","nodeType":"ElementaryTypeName","src":"6157:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13772,"mutability":"mutable","name":"high","nameLocation":"6186:4:46","nodeType":"VariableDeclaration","scope":13813,"src":"6178:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13771,"name":"uint256","nodeType":"ElementaryTypeName","src":"6178:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6089:107:46"},"returnParameters":{"id":13776,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13775,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13813,"src":"6219:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13774,"name":"uint256","nodeType":"ElementaryTypeName","src":"6219:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6218:9:46"},"scope":14929,"src":"6062:433:46","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":13864,"nodeType":"Block","src":"7012:267:46","statements":[{"body":{"id":13860,"nodeType":"Block","src":"7041:211:46","statements":[{"assignments":[13833],"declarations":[{"constant":false,"id":13833,"mutability":"mutable","name":"mid","nameLocation":"7063:3:46","nodeType":"VariableDeclaration","scope":13860,"src":"7055:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13832,"name":"uint256","nodeType":"ElementaryTypeName","src":"7055:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13839,"initialValue":{"arguments":[{"id":13836,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13822,"src":"7082:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13837,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13824,"src":"7087:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":13834,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11439,"src":"7069:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$11439_$","typeString":"type(library Math)"}},"id":13835,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7074:7:46","memberName":"average","nodeType":"MemberAccess","referencedDeclaration":10168,"src":"7069:12:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":13838,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7069:23:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7055:37:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":13846,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":13841,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13818,"src":"7124:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"}},{"id":13842,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13833,"src":"7130:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13840,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":13880,"src":"7110:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint224_$13366_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint224 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint224 storage pointer)"}},"id":13843,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7110:24:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224 storage pointer"}},"id":13844,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7135:4:46","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13363,"src":"7110:29:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":13845,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13820,"src":"7142:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"7110:35:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13858,"nodeType":"Block","src":"7199:43:46","statements":[{"expression":{"id":13856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13854,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13824,"src":"7217:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13855,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13833,"src":"7224:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7217:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13857,"nodeType":"ExpressionStatement","src":"7217:10:46"}]},"id":13859,"nodeType":"IfStatement","src":"7106:136:46","trueBody":{"id":13853,"nodeType":"Block","src":"7147:46:46","statements":[{"expression":{"id":13851,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13847,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13822,"src":"7165:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13850,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13848,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13833,"src":"7171:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":13849,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7177:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7171:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7165:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13852,"nodeType":"ExpressionStatement","src":"7165:13:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13829,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13822,"src":"7029:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":13830,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13824,"src":"7035:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7029:10:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13861,"nodeType":"WhileStatement","src":"7022:230:46"},{"expression":{"id":13862,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13824,"src":"7268:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13828,"id":13863,"nodeType":"Return","src":"7261:11:46"}]},"documentation":{"id":13814,"nodeType":"StructuredDocumentation","src":"6501:340:46","text":" @dev Return the index of the first (oldest) checkpoint with key greater or equal than the search key, or `high`\n if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n `high`.\n WARNING: `high` should not be greater than the array's length."},"id":13865,"implemented":true,"kind":"function","modifiers":[],"name":"_lowerBinaryLookup","nameLocation":"6855:18:46","nodeType":"FunctionDefinition","parameters":{"id":13825,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13818,"mutability":"mutable","name":"self","nameLocation":"6907:4:46","nodeType":"VariableDeclaration","scope":13865,"src":"6883:28:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"},"typeName":{"baseType":{"id":13816,"nodeType":"UserDefinedTypeName","pathNode":{"id":13815,"name":"Checkpoint224","nameLocations":["6883:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":13366,"src":"6883:13:46"},"referencedDeclaration":13366,"src":"6883:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"id":13817,"nodeType":"ArrayTypeName","src":"6883:15:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"}},"visibility":"internal"},{"constant":false,"id":13820,"mutability":"mutable","name":"key","nameLocation":"6928:3:46","nodeType":"VariableDeclaration","scope":13865,"src":"6921:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13819,"name":"uint32","nodeType":"ElementaryTypeName","src":"6921:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":13822,"mutability":"mutable","name":"low","nameLocation":"6949:3:46","nodeType":"VariableDeclaration","scope":13865,"src":"6941:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13821,"name":"uint256","nodeType":"ElementaryTypeName","src":"6941:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13824,"mutability":"mutable","name":"high","nameLocation":"6970:4:46","nodeType":"VariableDeclaration","scope":13865,"src":"6962:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13823,"name":"uint256","nodeType":"ElementaryTypeName","src":"6962:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6873:107:46"},"returnParameters":{"id":13828,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13827,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13865,"src":"7003:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13826,"name":"uint256","nodeType":"ElementaryTypeName","src":"7003:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7002:9:46"},"scope":14929,"src":"6846:433:46","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":13879,"nodeType":"Block","src":"7562:125:46","statements":[{"AST":{"nodeType":"YulBlock","src":"7581:100:46","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7602:1:46","type":"","value":"0"},{"name":"self.slot","nodeType":"YulIdentifier","src":"7605:9:46"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"7595:6:46"},"nodeType":"YulFunctionCall","src":"7595:20:46"},"nodeType":"YulExpressionStatement","src":"7595:20:46"},{"nodeType":"YulAssignment","src":"7628:43:46","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7657:1:46","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7660:4:46","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"7647:9:46"},"nodeType":"YulFunctionCall","src":"7647:18:46"},{"name":"pos","nodeType":"YulIdentifier","src":"7667:3:46"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7643:3:46"},"nodeType":"YulFunctionCall","src":"7643:28:46"},"variableNames":[{"name":"result.slot","nodeType":"YulIdentifier","src":"7628:11:46"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":13872,"isOffset":false,"isSlot":false,"src":"7667:3:46","valueSize":1},{"declaration":13876,"isOffset":false,"isSlot":true,"src":"7628:11:46","suffix":"slot","valueSize":1},{"declaration":13870,"isOffset":false,"isSlot":true,"src":"7605:9:46","suffix":"slot","valueSize":1}],"id":13878,"nodeType":"InlineAssembly","src":"7572:109:46"}]},"documentation":{"id":13866,"nodeType":"StructuredDocumentation","src":"7285:132:46","text":" @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds."},"id":13880,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeAccess","nameLocation":"7431:13:46","nodeType":"FunctionDefinition","parameters":{"id":13873,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13870,"mutability":"mutable","name":"self","nameLocation":"7478:4:46","nodeType":"VariableDeclaration","scope":13880,"src":"7454:28:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"},"typeName":{"baseType":{"id":13868,"nodeType":"UserDefinedTypeName","pathNode":{"id":13867,"name":"Checkpoint224","nameLocations":["7454:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":13366,"src":"7454:13:46"},"referencedDeclaration":13366,"src":"7454:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"id":13869,"nodeType":"ArrayTypeName","src":"7454:15:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint224_$13366_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint224[]"}},"visibility":"internal"},{"constant":false,"id":13872,"mutability":"mutable","name":"pos","nameLocation":"7500:3:46","nodeType":"VariableDeclaration","scope":13880,"src":"7492:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13871,"name":"uint256","nodeType":"ElementaryTypeName","src":"7492:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7444:65:46"},"returnParameters":{"id":13877,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13876,"mutability":"mutable","name":"result","nameLocation":"7554:6:46","nodeType":"VariableDeclaration","scope":13880,"src":"7532:28:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"},"typeName":{"id":13875,"nodeType":"UserDefinedTypeName","pathNode":{"id":13874,"name":"Checkpoint224","nameLocations":["7532:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":13366,"src":"7532:13:46"},"referencedDeclaration":13366,"src":"7532:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint224_$13366_storage_ptr","typeString":"struct Checkpoints.Checkpoint224"}},"visibility":"internal"}],"src":"7531:30:46"},"scope":14929,"src":"7422:265:46","stateMutability":"pure","virtual":false,"visibility":"private"},{"canonicalName":"Checkpoints.Trace208","id":13885,"members":[{"constant":false,"id":13884,"mutability":"mutable","name":"_checkpoints","nameLocation":"7735:12:46","nodeType":"VariableDeclaration","scope":13885,"src":"7719:28:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"},"typeName":{"baseType":{"id":13882,"nodeType":"UserDefinedTypeName","pathNode":{"id":13881,"name":"Checkpoint208","nameLocations":["7719:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":13890,"src":"7719:13:46"},"referencedDeclaration":13890,"src":"7719:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"id":13883,"nodeType":"ArrayTypeName","src":"7719:15:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"}},"visibility":"internal"}],"name":"Trace208","nameLocation":"7700:8:46","nodeType":"StructDefinition","scope":14929,"src":"7693:61:46","visibility":"public"},{"canonicalName":"Checkpoints.Checkpoint208","id":13890,"members":[{"constant":false,"id":13887,"mutability":"mutable","name":"_key","nameLocation":"7798:4:46","nodeType":"VariableDeclaration","scope":13890,"src":"7791:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13886,"name":"uint48","nodeType":"ElementaryTypeName","src":"7791:6:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":13889,"mutability":"mutable","name":"_value","nameLocation":"7820:6:46","nodeType":"VariableDeclaration","scope":13890,"src":"7812:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13888,"name":"uint208","nodeType":"ElementaryTypeName","src":"7812:7:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"name":"Checkpoint208","nameLocation":"7767:13:46","nodeType":"StructDefinition","scope":14929,"src":"7760:73:46","visibility":"public"},{"body":{"id":13912,"nodeType":"Block","src":"8294:62:46","statements":[{"expression":{"arguments":[{"expression":{"id":13906,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13894,"src":"8319:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13907,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8324:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13884,"src":"8319:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"id":13908,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13896,"src":"8338:3:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":13909,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13898,"src":"8343:5:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":13905,"name":"_insert","nodeType":"Identifier","overloadedDeclarations":[13761,14285,14809],"referencedDeclaration":14285,"src":"8311:7:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr_$_t_uint48_$_t_uint208_$returns$_t_uint208_$_t_uint208_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint48,uint208) returns (uint208,uint208)"}},"id":13910,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8311:38:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"functionReturnParameters":13904,"id":13911,"nodeType":"Return","src":"8304:45:46"}]},"documentation":{"id":13891,"nodeType":"StructuredDocumentation","src":"7839:302:46","text":" @dev Pushes a (`key`, `value`) pair into a Trace208 so that it is stored as the checkpoint.\n Returns previous value and new value.\n IMPORTANT: Never accept `key` as a user input, since an arbitrary `type(uint48).max` key set will disable the\n library."},"id":13913,"implemented":true,"kind":"function","modifiers":[],"name":"push","nameLocation":"8155:4:46","nodeType":"FunctionDefinition","parameters":{"id":13899,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13894,"mutability":"mutable","name":"self","nameLocation":"8186:4:46","nodeType":"VariableDeclaration","scope":13913,"src":"8169:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13893,"nodeType":"UserDefinedTypeName","pathNode":{"id":13892,"name":"Trace208","nameLocations":["8169:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":13885,"src":"8169:8:46"},"referencedDeclaration":13885,"src":"8169:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":13896,"mutability":"mutable","name":"key","nameLocation":"8207:3:46","nodeType":"VariableDeclaration","scope":13913,"src":"8200:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13895,"name":"uint48","nodeType":"ElementaryTypeName","src":"8200:6:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":13898,"mutability":"mutable","name":"value","nameLocation":"8228:5:46","nodeType":"VariableDeclaration","scope":13913,"src":"8220:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13897,"name":"uint208","nodeType":"ElementaryTypeName","src":"8220:7:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"8159:80:46"},"returnParameters":{"id":13904,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13901,"mutability":"mutable","name":"oldValue","nameLocation":"8266:8:46","nodeType":"VariableDeclaration","scope":13913,"src":"8258:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13900,"name":"uint208","nodeType":"ElementaryTypeName","src":"8258:7:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"},{"constant":false,"id":13903,"mutability":"mutable","name":"newValue","nameLocation":"8284:8:46","nodeType":"VariableDeclaration","scope":13913,"src":"8276:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13902,"name":"uint208","nodeType":"ElementaryTypeName","src":"8276:7:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"8257:36:46"},"scope":14929,"src":"8146:210:46","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":13952,"nodeType":"Block","src":"8609:207:46","statements":[{"assignments":[13925],"declarations":[{"constant":false,"id":13925,"mutability":"mutable","name":"len","nameLocation":"8627:3:46","nodeType":"VariableDeclaration","scope":13952,"src":"8619:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13924,"name":"uint256","nodeType":"ElementaryTypeName","src":"8619:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13929,"initialValue":{"expression":{"expression":{"id":13926,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13917,"src":"8633:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13927,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8638:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13884,"src":"8633:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":13928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8651:6:46","memberName":"length","nodeType":"MemberAccess","src":"8633:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8619:38:46"},{"assignments":[13931],"declarations":[{"constant":false,"id":13931,"mutability":"mutable","name":"pos","nameLocation":"8675:3:46","nodeType":"VariableDeclaration","scope":13952,"src":"8667:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13930,"name":"uint256","nodeType":"ElementaryTypeName","src":"8667:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13939,"initialValue":{"arguments":[{"expression":{"id":13933,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13917,"src":"8700:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13934,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8705:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13884,"src":"8700:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"id":13935,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13919,"src":"8719:3:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"hexValue":"30","id":13936,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8724:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":13937,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13925,"src":"8727:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13932,"name":"_lowerBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13865,14389,14913],"referencedDeclaration":14389,"src":"8681:18:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr_$_t_uint48_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint48,uint256,uint256) view returns (uint256)"}},"id":13938,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8681:50:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8667:64:46"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13940,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13931,"src":"8748:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":13941,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13925,"src":"8755:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8748:10:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13945,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13917,"src":"8779:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13946,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8784:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13884,"src":"8779:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"id":13947,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13931,"src":"8798:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13944,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":14404,"src":"8765:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13890_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13948,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8765:37:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13949,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8803:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13889,"src":"8765:44:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"id":13950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"8748:61:46","trueExpression":{"hexValue":"30","id":13943,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8761:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":13923,"id":13951,"nodeType":"Return","src":"8741:68:46"}]},"documentation":{"id":13914,"nodeType":"StructuredDocumentation","src":"8362:154:46","text":" @dev Returns the value in the first (oldest) checkpoint with key greater or equal than the search key, or zero if\n there is none."},"id":13953,"implemented":true,"kind":"function","modifiers":[],"name":"lowerLookup","nameLocation":"8530:11:46","nodeType":"FunctionDefinition","parameters":{"id":13920,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13917,"mutability":"mutable","name":"self","nameLocation":"8559:4:46","nodeType":"VariableDeclaration","scope":13953,"src":"8542:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13916,"nodeType":"UserDefinedTypeName","pathNode":{"id":13915,"name":"Trace208","nameLocations":["8542:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":13885,"src":"8542:8:46"},"referencedDeclaration":13885,"src":"8542:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":13919,"mutability":"mutable","name":"key","nameLocation":"8572:3:46","nodeType":"VariableDeclaration","scope":13953,"src":"8565:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13918,"name":"uint48","nodeType":"ElementaryTypeName","src":"8565:6:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"8541:35:46"},"returnParameters":{"id":13923,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13922,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13953,"src":"8600:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13921,"name":"uint208","nodeType":"ElementaryTypeName","src":"8600:7:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"8599:9:46"},"scope":14929,"src":"8521:295:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13994,"nodeType":"Block","src":"9071:209:46","statements":[{"assignments":[13965],"declarations":[{"constant":false,"id":13965,"mutability":"mutable","name":"len","nameLocation":"9089:3:46","nodeType":"VariableDeclaration","scope":13994,"src":"9081:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13964,"name":"uint256","nodeType":"ElementaryTypeName","src":"9081:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13969,"initialValue":{"expression":{"expression":{"id":13966,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13957,"src":"9095:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13967,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9100:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13884,"src":"9095:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":13968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9113:6:46","memberName":"length","nodeType":"MemberAccess","src":"9095:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9081:38:46"},{"assignments":[13971],"declarations":[{"constant":false,"id":13971,"mutability":"mutable","name":"pos","nameLocation":"9137:3:46","nodeType":"VariableDeclaration","scope":13994,"src":"9129:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13970,"name":"uint256","nodeType":"ElementaryTypeName","src":"9129:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13979,"initialValue":{"arguments":[{"expression":{"id":13973,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13957,"src":"9162:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13974,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9167:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13884,"src":"9162:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"id":13975,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13959,"src":"9181:3:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"hexValue":"30","id":13976,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9186:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":13977,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13965,"src":"9189:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13972,"name":"_upperBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13813,14337,14861],"referencedDeclaration":14337,"src":"9143:18:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr_$_t_uint48_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint48,uint256,uint256) view returns (uint256)"}},"id":13978,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9143:50:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9129:64:46"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13982,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13980,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13971,"src":"9210:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":13981,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9217:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9210:8:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":13985,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13957,"src":"9239:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":13986,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9244:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13884,"src":"9239:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13989,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13987,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13971,"src":"9258:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":13988,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9264:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"9258:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13984,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":14404,"src":"9225:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13890_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":13990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9225:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":13991,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9267:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13889,"src":"9225:48:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"id":13992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9210:63:46","trueExpression":{"hexValue":"30","id":13983,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9221:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":13963,"id":13993,"nodeType":"Return","src":"9203:70:46"}]},"documentation":{"id":13954,"nodeType":"StructuredDocumentation","src":"8822:156:46","text":" @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n if there is none."},"id":13995,"implemented":true,"kind":"function","modifiers":[],"name":"upperLookup","nameLocation":"8992:11:46","nodeType":"FunctionDefinition","parameters":{"id":13960,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13957,"mutability":"mutable","name":"self","nameLocation":"9021:4:46","nodeType":"VariableDeclaration","scope":13995,"src":"9004:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13956,"nodeType":"UserDefinedTypeName","pathNode":{"id":13955,"name":"Trace208","nameLocations":["9004:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":13885,"src":"9004:8:46"},"referencedDeclaration":13885,"src":"9004:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":13959,"mutability":"mutable","name":"key","nameLocation":"9034:3:46","nodeType":"VariableDeclaration","scope":13995,"src":"9027:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":13958,"name":"uint48","nodeType":"ElementaryTypeName","src":"9027:6:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"9003:35:46"},"returnParameters":{"id":13963,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13962,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13995,"src":"9062:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":13961,"name":"uint208","nodeType":"ElementaryTypeName","src":"9062:7:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9061:9:46"},"scope":14929,"src":"8983:297:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14079,"nodeType":"Block","src":"9679:512:46","statements":[{"assignments":[14007],"declarations":[{"constant":false,"id":14007,"mutability":"mutable","name":"len","nameLocation":"9697:3:46","nodeType":"VariableDeclaration","scope":14079,"src":"9689:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14006,"name":"uint256","nodeType":"ElementaryTypeName","src":"9689:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14011,"initialValue":{"expression":{"expression":{"id":14008,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13999,"src":"9703:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":14009,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9708:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13884,"src":"9703:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":14010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9721:6:46","memberName":"length","nodeType":"MemberAccess","src":"9703:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9689:38:46"},{"assignments":[14013],"declarations":[{"constant":false,"id":14013,"mutability":"mutable","name":"low","nameLocation":"9746:3:46","nodeType":"VariableDeclaration","scope":14079,"src":"9738:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14012,"name":"uint256","nodeType":"ElementaryTypeName","src":"9738:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14015,"initialValue":{"hexValue":"30","id":14014,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9752:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"9738:15:46"},{"assignments":[14017],"declarations":[{"constant":false,"id":14017,"mutability":"mutable","name":"high","nameLocation":"9771:4:46","nodeType":"VariableDeclaration","scope":14079,"src":"9763:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14016,"name":"uint256","nodeType":"ElementaryTypeName","src":"9763:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14019,"initialValue":{"id":14018,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14007,"src":"9778:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9763:18:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14022,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14020,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14007,"src":"9796:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"35","id":14021,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9802:1:46","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"9796:7:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14054,"nodeType":"IfStatement","src":"9792:234:46","trueBody":{"id":14053,"nodeType":"Block","src":"9805:221:46","statements":[{"assignments":[14024],"declarations":[{"constant":false,"id":14024,"mutability":"mutable","name":"mid","nameLocation":"9827:3:46","nodeType":"VariableDeclaration","scope":14053,"src":"9819:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14023,"name":"uint256","nodeType":"ElementaryTypeName","src":"9819:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14031,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14030,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14025,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14007,"src":"9833:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":14028,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14007,"src":"9849:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14026,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11439,"src":"9839:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$11439_$","typeString":"type(library Math)"}},"id":14027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9844:4:46","memberName":"sqrt","nodeType":"MemberAccess","referencedDeclaration":10983,"src":"9839:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":14029,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9839:14:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9833:20:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9819:34:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":14039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14032,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14001,"src":"9871:3:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"expression":{"id":14034,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13999,"src":"9891:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":14035,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9896:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13884,"src":"9891:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"id":14036,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14024,"src":"9910:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14033,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":14404,"src":"9877:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13890_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":14037,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9877:37:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":14038,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9915:4:46","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13887,"src":"9877:42:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"9871:48:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14051,"nodeType":"Block","src":"9970:46:46","statements":[{"expression":{"id":14049,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14045,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14013,"src":"9988:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14048,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14046,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14024,"src":"9994:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14047,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10000:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"9994:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9988:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14050,"nodeType":"ExpressionStatement","src":"9988:13:46"}]},"id":14052,"nodeType":"IfStatement","src":"9867:149:46","trueBody":{"id":14044,"nodeType":"Block","src":"9921:43:46","statements":[{"expression":{"id":14042,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14040,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14017,"src":"9939:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14041,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14024,"src":"9946:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9939:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14043,"nodeType":"ExpressionStatement","src":"9939:10:46"}]}}]}},{"assignments":[14056],"declarations":[{"constant":false,"id":14056,"mutability":"mutable","name":"pos","nameLocation":"10044:3:46","nodeType":"VariableDeclaration","scope":14079,"src":"10036:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14055,"name":"uint256","nodeType":"ElementaryTypeName","src":"10036:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14064,"initialValue":{"arguments":[{"expression":{"id":14058,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13999,"src":"10069:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":14059,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10074:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13884,"src":"10069:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"id":14060,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14001,"src":"10088:3:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":14061,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14013,"src":"10093:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14062,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14017,"src":"10098:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14057,"name":"_upperBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13813,14337,14861],"referencedDeclaration":14337,"src":"10050:18:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr_$_t_uint48_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint48,uint256,uint256) view returns (uint256)"}},"id":14063,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10050:53:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10036:67:46"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14067,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14065,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14056,"src":"10121:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":14066,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10128:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10121:8:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":14070,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13999,"src":"10150:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":14071,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10155:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13884,"src":"10150:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14074,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14072,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14056,"src":"10169:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14073,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10175:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10169:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14069,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":14404,"src":"10136:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13890_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":14075,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10136:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":14076,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10178:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13889,"src":"10136:48:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"id":14077,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"10121:63:46","trueExpression":{"hexValue":"30","id":14068,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10132:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":14005,"id":14078,"nodeType":"Return","src":"10114:70:46"}]},"documentation":{"id":13996,"nodeType":"StructuredDocumentation","src":"9286:294:46","text":" @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n if there is none.\n NOTE: This is a variant of {upperLookup} that is optimised to find \"recent\" checkpoint (checkpoints with high\n keys)."},"id":14080,"implemented":true,"kind":"function","modifiers":[],"name":"upperLookupRecent","nameLocation":"9594:17:46","nodeType":"FunctionDefinition","parameters":{"id":14002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13999,"mutability":"mutable","name":"self","nameLocation":"9629:4:46","nodeType":"VariableDeclaration","scope":14080,"src":"9612:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":13998,"nodeType":"UserDefinedTypeName","pathNode":{"id":13997,"name":"Trace208","nameLocations":["9612:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":13885,"src":"9612:8:46"},"referencedDeclaration":13885,"src":"9612:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":14001,"mutability":"mutable","name":"key","nameLocation":"9642:3:46","nodeType":"VariableDeclaration","scope":14080,"src":"9635:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14000,"name":"uint48","nodeType":"ElementaryTypeName","src":"9635:6:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"9611:35:46"},"returnParameters":{"id":14005,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14004,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14080,"src":"9670:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":14003,"name":"uint208","nodeType":"ElementaryTypeName","src":"9670:7:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"9669:9:46"},"scope":14929,"src":"9585:606:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14109,"nodeType":"Block","src":"10382:135:46","statements":[{"assignments":[14090],"declarations":[{"constant":false,"id":14090,"mutability":"mutable","name":"pos","nameLocation":"10400:3:46","nodeType":"VariableDeclaration","scope":14109,"src":"10392:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14089,"name":"uint256","nodeType":"ElementaryTypeName","src":"10392:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14094,"initialValue":{"expression":{"expression":{"id":14091,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14084,"src":"10406:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":14092,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10411:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13884,"src":"10406:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":14093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10424:6:46","memberName":"length","nodeType":"MemberAccess","src":"10406:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10392:38:46"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14097,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14095,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14090,"src":"10447:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":14096,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10454:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10447:8:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":14100,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14084,"src":"10476:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":14101,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10481:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13884,"src":"10476:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14104,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14102,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14090,"src":"10495:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14103,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10501:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10495:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14099,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":14404,"src":"10462:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13890_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":14105,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10462:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":14106,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10504:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13889,"src":"10462:48:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"id":14107,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"10447:63:46","trueExpression":{"hexValue":"30","id":14098,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10458:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":14088,"id":14108,"nodeType":"Return","src":"10440:70:46"}]},"documentation":{"id":14081,"nodeType":"StructuredDocumentation","src":"10197:109:46","text":" @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints."},"id":14110,"implemented":true,"kind":"function","modifiers":[],"name":"latest","nameLocation":"10320:6:46","nodeType":"FunctionDefinition","parameters":{"id":14085,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14084,"mutability":"mutable","name":"self","nameLocation":"10344:4:46","nodeType":"VariableDeclaration","scope":14110,"src":"10327:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":14083,"nodeType":"UserDefinedTypeName","pathNode":{"id":14082,"name":"Trace208","nameLocations":["10327:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":13885,"src":"10327:8:46"},"referencedDeclaration":13885,"src":"10327:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"}],"src":"10326:23:46"},"returnParameters":{"id":14088,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14087,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14110,"src":"10373:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":14086,"name":"uint208","nodeType":"ElementaryTypeName","src":"10373:7:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"10372:9:46"},"scope":14929,"src":"10311:206:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14158,"nodeType":"Block","src":"10810:275:46","statements":[{"assignments":[14124],"declarations":[{"constant":false,"id":14124,"mutability":"mutable","name":"pos","nameLocation":"10828:3:46","nodeType":"VariableDeclaration","scope":14158,"src":"10820:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14123,"name":"uint256","nodeType":"ElementaryTypeName","src":"10820:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14128,"initialValue":{"expression":{"expression":{"id":14125,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14114,"src":"10834:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":14126,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10839:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13884,"src":"10834:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":14127,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10852:6:46","memberName":"length","nodeType":"MemberAccess","src":"10834:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10820:38:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14129,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14124,"src":"10872:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":14130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10879:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10872:8:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14156,"nodeType":"Block","src":"10933:146:46","statements":[{"assignments":[14140],"declarations":[{"constant":false,"id":14140,"mutability":"mutable","name":"ckpt","nameLocation":"10969:4:46","nodeType":"VariableDeclaration","scope":14156,"src":"10947:26:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":14139,"nodeType":"UserDefinedTypeName","pathNode":{"id":14138,"name":"Checkpoint208","nameLocations":["10947:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":13890,"src":"10947:13:46"},"referencedDeclaration":13890,"src":"10947:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"id":14148,"initialValue":{"arguments":[{"expression":{"id":14142,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14114,"src":"10990:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":14143,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10995:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13884,"src":"10990:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14144,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14124,"src":"11009:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14145,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11015:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11009:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14141,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":14404,"src":"10976:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13890_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":14147,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10976:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"10947:70:46"},{"expression":{"components":[{"hexValue":"74727565","id":14149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"11039:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"id":14150,"name":"ckpt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14140,"src":"11045:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":14151,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11050:4:46","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13887,"src":"11045:9:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"expression":{"id":14152,"name":"ckpt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14140,"src":"11056:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":14153,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11061:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13889,"src":"11056:11:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"id":14154,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11038:30:46","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint48_$_t_uint208_$","typeString":"tuple(bool,uint48,uint208)"}},"functionReturnParameters":14122,"id":14155,"nodeType":"Return","src":"11031:37:46"}]},"id":14157,"nodeType":"IfStatement","src":"10868:211:46","trueBody":{"id":14137,"nodeType":"Block","src":"10882:45:46","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":14132,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10904:5:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":14133,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10911:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":14134,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10914:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":14135,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"10903:13:46","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0,int_const 0)"}},"functionReturnParameters":14122,"id":14136,"nodeType":"Return","src":"10896:20:46"}]}}]},"documentation":{"id":14111,"nodeType":"StructuredDocumentation","src":"10523:168:46","text":" @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value\n in the most recent checkpoint."},"id":14159,"implemented":true,"kind":"function","modifiers":[],"name":"latestCheckpoint","nameLocation":"10705:16:46","nodeType":"FunctionDefinition","parameters":{"id":14115,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14114,"mutability":"mutable","name":"self","nameLocation":"10739:4:46","nodeType":"VariableDeclaration","scope":14159,"src":"10722:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":14113,"nodeType":"UserDefinedTypeName","pathNode":{"id":14112,"name":"Trace208","nameLocations":["10722:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":13885,"src":"10722:8:46"},"referencedDeclaration":13885,"src":"10722:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"}],"src":"10721:23:46"},"returnParameters":{"id":14122,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14117,"mutability":"mutable","name":"exists","nameLocation":"10773:6:46","nodeType":"VariableDeclaration","scope":14159,"src":"10768:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14116,"name":"bool","nodeType":"ElementaryTypeName","src":"10768:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":14119,"mutability":"mutable","name":"_key","nameLocation":"10788:4:46","nodeType":"VariableDeclaration","scope":14159,"src":"10781:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14118,"name":"uint48","nodeType":"ElementaryTypeName","src":"10781:6:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":14121,"mutability":"mutable","name":"_value","nameLocation":"10802:6:46","nodeType":"VariableDeclaration","scope":14159,"src":"10794:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":14120,"name":"uint208","nodeType":"ElementaryTypeName","src":"10794:7:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"10767:42:46"},"scope":14929,"src":"10696:389:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14172,"nodeType":"Block","src":"11225:48:46","statements":[{"expression":{"expression":{"expression":{"id":14168,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14163,"src":"11242:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":14169,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11247:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13884,"src":"11242:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":14170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11260:6:46","memberName":"length","nodeType":"MemberAccess","src":"11242:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14167,"id":14171,"nodeType":"Return","src":"11235:31:46"}]},"documentation":{"id":14160,"nodeType":"StructuredDocumentation","src":"11091:58:46","text":" @dev Returns the number of checkpoints."},"id":14173,"implemented":true,"kind":"function","modifiers":[],"name":"length","nameLocation":"11163:6:46","nodeType":"FunctionDefinition","parameters":{"id":14164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14163,"mutability":"mutable","name":"self","nameLocation":"11187:4:46","nodeType":"VariableDeclaration","scope":14173,"src":"11170:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":14162,"nodeType":"UserDefinedTypeName","pathNode":{"id":14161,"name":"Trace208","nameLocations":["11170:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":13885,"src":"11170:8:46"},"referencedDeclaration":13885,"src":"11170:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"}],"src":"11169:23:46"},"returnParameters":{"id":14167,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14166,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14173,"src":"11216:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14165,"name":"uint256","nodeType":"ElementaryTypeName","src":"11216:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11215:9:46"},"scope":14929,"src":"11154:119:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14190,"nodeType":"Block","src":"11437:46:46","statements":[{"expression":{"baseExpression":{"expression":{"id":14185,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14177,"src":"11454:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208 storage pointer"}},"id":14186,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11459:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":13884,"src":"11454:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage ref"}},"id":14188,"indexExpression":{"id":14187,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14179,"src":"11472:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11454:22:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage","typeString":"struct Checkpoints.Checkpoint208 storage ref"}},"functionReturnParameters":14184,"id":14189,"nodeType":"Return","src":"11447:29:46"}]},"documentation":{"id":14174,"nodeType":"StructuredDocumentation","src":"11279:61:46","text":" @dev Returns checkpoint at given position."},"id":14191,"implemented":true,"kind":"function","modifiers":[],"name":"at","nameLocation":"11354:2:46","nodeType":"FunctionDefinition","parameters":{"id":14180,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14177,"mutability":"mutable","name":"self","nameLocation":"11374:4:46","nodeType":"VariableDeclaration","scope":14191,"src":"11357:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"},"typeName":{"id":14176,"nodeType":"UserDefinedTypeName","pathNode":{"id":14175,"name":"Trace208","nameLocations":["11357:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":13885,"src":"11357:8:46"},"referencedDeclaration":13885,"src":"11357:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace208_$13885_storage_ptr","typeString":"struct Checkpoints.Trace208"}},"visibility":"internal"},{"constant":false,"id":14179,"mutability":"mutable","name":"pos","nameLocation":"11387:3:46","nodeType":"VariableDeclaration","scope":14191,"src":"11380:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14178,"name":"uint32","nodeType":"ElementaryTypeName","src":"11380:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"11356:35:46"},"returnParameters":{"id":14184,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14183,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14191,"src":"11415:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_memory_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":14182,"nodeType":"UserDefinedTypeName","pathNode":{"id":14181,"name":"Checkpoint208","nameLocations":["11415:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":13890,"src":"11415:13:46"},"referencedDeclaration":13890,"src":"11415:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"src":"11414:22:46"},"scope":14929,"src":"11345:138:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14284,"nodeType":"Block","src":"11816:765:46","statements":[{"assignments":[14208],"declarations":[{"constant":false,"id":14208,"mutability":"mutable","name":"pos","nameLocation":"11834:3:46","nodeType":"VariableDeclaration","scope":14284,"src":"11826:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14207,"name":"uint256","nodeType":"ElementaryTypeName","src":"11826:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14211,"initialValue":{"expression":{"id":14209,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14196,"src":"11840:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"}},"id":14210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11845:6:46","memberName":"length","nodeType":"MemberAccess","src":"11840:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11826:25:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14214,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14212,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14208,"src":"11866:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":14213,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11872:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11866:7:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14282,"nodeType":"Block","src":"12467:108:46","statements":[{"expression":{"arguments":[{"arguments":[{"id":14273,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14198,"src":"12512:3:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":14274,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14200,"src":"12525:5:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":14272,"name":"Checkpoint208","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13890,"src":"12491:13:46","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Checkpoint208_$13890_storage_ptr_$","typeString":"type(struct Checkpoints.Checkpoint208 storage pointer)"}},"id":14275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["12506:4:46","12517:6:46"],"names":["_key","_value"],"nodeType":"FunctionCall","src":"12491:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_memory_ptr","typeString":"struct Checkpoints.Checkpoint208 memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Checkpoint208_$13890_memory_ptr","typeString":"struct Checkpoints.Checkpoint208 memory"}],"expression":{"id":14269,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14196,"src":"12481:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"}},"id":14271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12486:4:46","memberName":"push","nodeType":"MemberAccess","src":"12481:9:46","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr_$_t_struct$_Checkpoint208_$13890_storage_$returns$__$attached_to$_t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,struct Checkpoints.Checkpoint208 storage ref)"}},"id":14276,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12481:52:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14277,"nodeType":"ExpressionStatement","src":"12481:52:46"},{"expression":{"components":[{"hexValue":"30","id":14278,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12555:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":14279,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14200,"src":"12558:5:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"id":14280,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12554:10:46","typeDescriptions":{"typeIdentifier":"t_tuple$_t_rational_0_by_1_$_t_uint208_$","typeString":"tuple(int_const 0,uint208)"}},"functionReturnParameters":14206,"id":14281,"nodeType":"Return","src":"12547:17:46"}]},"id":14283,"nodeType":"IfStatement","src":"11862:713:46","trueBody":{"id":14268,"nodeType":"Block","src":"11875:586:46","statements":[{"assignments":[14217],"declarations":[{"constant":false,"id":14217,"mutability":"mutable","name":"last","nameLocation":"11911:4:46","nodeType":"VariableDeclaration","scope":14268,"src":"11889:26:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":14216,"nodeType":"UserDefinedTypeName","pathNode":{"id":14215,"name":"Checkpoint208","nameLocations":["11889:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":13890,"src":"11889:13:46"},"referencedDeclaration":13890,"src":"11889:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"id":14224,"initialValue":{"arguments":[{"id":14219,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14196,"src":"11932:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14222,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14220,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14208,"src":"11938:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14221,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11944:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11938:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14218,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":14404,"src":"11918:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13890_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":14223,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11918:28:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"11889:57:46"},{"assignments":[14226],"declarations":[{"constant":false,"id":14226,"mutability":"mutable","name":"lastKey","nameLocation":"11967:7:46","nodeType":"VariableDeclaration","scope":14268,"src":"11960:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14225,"name":"uint48","nodeType":"ElementaryTypeName","src":"11960:6:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":14229,"initialValue":{"expression":{"id":14227,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14217,"src":"11977:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":14228,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11982:4:46","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13887,"src":"11977:9:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"11960:26:46"},{"assignments":[14231],"declarations":[{"constant":false,"id":14231,"mutability":"mutable","name":"lastValue","nameLocation":"12008:9:46","nodeType":"VariableDeclaration","scope":14268,"src":"12000:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":14230,"name":"uint208","nodeType":"ElementaryTypeName","src":"12000:7:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"id":14234,"initialValue":{"expression":{"id":14232,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14217,"src":"12020:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":14233,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12025:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13889,"src":"12020:11:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"nodeType":"VariableDeclarationStatement","src":"12000:31:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":14237,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14235,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14226,"src":"12105:7:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":14236,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14198,"src":"12115:3:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"12105:13:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14242,"nodeType":"IfStatement","src":"12101:89:46","trueBody":{"id":14241,"nodeType":"Block","src":"12120:70:46","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14238,"name":"CheckpointUnorderedInsertion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13356,"src":"12145:28:46","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":14239,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12145:30:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14240,"nodeType":"RevertStatement","src":"12138:37:46"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":14245,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14243,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14226,"src":"12253:7:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":14244,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14198,"src":"12264:3:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"12253:14:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14262,"nodeType":"Block","src":"12327:85:46","statements":[{"expression":{"arguments":[{"arguments":[{"id":14257,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14198,"src":"12376:3:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":14258,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14200,"src":"12389:5:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint208","typeString":"uint208"}],"id":14256,"name":"Checkpoint208","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13890,"src":"12355:13:46","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Checkpoint208_$13890_storage_ptr_$","typeString":"type(struct Checkpoints.Checkpoint208 storage pointer)"}},"id":14259,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["12370:4:46","12381:6:46"],"names":["_key","_value"],"nodeType":"FunctionCall","src":"12355:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_memory_ptr","typeString":"struct Checkpoints.Checkpoint208 memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Checkpoint208_$13890_memory_ptr","typeString":"struct Checkpoints.Checkpoint208 memory"}],"expression":{"id":14253,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14196,"src":"12345:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"}},"id":14255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12350:4:46","memberName":"push","nodeType":"MemberAccess","src":"12345:9:46","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr_$_t_struct$_Checkpoint208_$13890_storage_$returns$__$attached_to$_t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,struct Checkpoints.Checkpoint208 storage ref)"}},"id":14260,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12345:52:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14261,"nodeType":"ExpressionStatement","src":"12345:52:46"}]},"id":14263,"nodeType":"IfStatement","src":"12249:163:46","trueBody":{"id":14252,"nodeType":"Block","src":"12269:52:46","statements":[{"expression":{"id":14250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14246,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14217,"src":"12287:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":14248,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12292:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":13889,"src":"12287:11:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14249,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14200,"src":"12301:5:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"src":"12287:19:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"id":14251,"nodeType":"ExpressionStatement","src":"12287:19:46"}]}},{"expression":{"components":[{"id":14264,"name":"lastValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14231,"src":"12433:9:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},{"id":14265,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14200,"src":"12444:5:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}}],"id":14266,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12432:18:46","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint208_$_t_uint208_$","typeString":"tuple(uint208,uint208)"}},"functionReturnParameters":14206,"id":14267,"nodeType":"Return","src":"12425:25:46"}]}}]},"documentation":{"id":14192,"nodeType":"StructuredDocumentation","src":"11489:165:46","text":" @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint,\n or by updating the last one."},"id":14285,"implemented":true,"kind":"function","modifiers":[],"name":"_insert","nameLocation":"11668:7:46","nodeType":"FunctionDefinition","parameters":{"id":14201,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14196,"mutability":"mutable","name":"self","nameLocation":"11709:4:46","nodeType":"VariableDeclaration","scope":14285,"src":"11685:28:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"},"typeName":{"baseType":{"id":14194,"nodeType":"UserDefinedTypeName","pathNode":{"id":14193,"name":"Checkpoint208","nameLocations":["11685:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":13890,"src":"11685:13:46"},"referencedDeclaration":13890,"src":"11685:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"id":14195,"nodeType":"ArrayTypeName","src":"11685:15:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"}},"visibility":"internal"},{"constant":false,"id":14198,"mutability":"mutable","name":"key","nameLocation":"11730:3:46","nodeType":"VariableDeclaration","scope":14285,"src":"11723:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14197,"name":"uint48","nodeType":"ElementaryTypeName","src":"11723:6:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":14200,"mutability":"mutable","name":"value","nameLocation":"11751:5:46","nodeType":"VariableDeclaration","scope":14285,"src":"11743:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":14199,"name":"uint208","nodeType":"ElementaryTypeName","src":"11743:7:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"11675:87:46"},"returnParameters":{"id":14206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14203,"mutability":"mutable","name":"oldValue","nameLocation":"11788:8:46","nodeType":"VariableDeclaration","scope":14285,"src":"11780:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":14202,"name":"uint208","nodeType":"ElementaryTypeName","src":"11780:7:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"},{"constant":false,"id":14205,"mutability":"mutable","name":"newValue","nameLocation":"11806:8:46","nodeType":"VariableDeclaration","scope":14285,"src":"11798:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":14204,"name":"uint208","nodeType":"ElementaryTypeName","src":"11798:7:46","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"11779:36:46"},"scope":14929,"src":"11659:922:46","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":14336,"nodeType":"Block","src":"13097:267:46","statements":[{"body":{"id":14332,"nodeType":"Block","src":"13126:211:46","statements":[{"assignments":[14305],"declarations":[{"constant":false,"id":14305,"mutability":"mutable","name":"mid","nameLocation":"13148:3:46","nodeType":"VariableDeclaration","scope":14332,"src":"13140:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14304,"name":"uint256","nodeType":"ElementaryTypeName","src":"13140:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14311,"initialValue":{"arguments":[{"id":14308,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14294,"src":"13167:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14309,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14296,"src":"13172:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14306,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11439,"src":"13154:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$11439_$","typeString":"type(library Math)"}},"id":14307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13159:7:46","memberName":"average","nodeType":"MemberAccess","referencedDeclaration":10168,"src":"13154:12:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":14310,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13154:23:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13140:37:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":14318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":14313,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14290,"src":"13209:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"}},{"id":14314,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14305,"src":"13215:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14312,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":14404,"src":"13195:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13890_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":14315,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13195:24:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":14316,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13220:4:46","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13887,"src":"13195:29:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":14317,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14292,"src":"13227:3:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"13195:35:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14330,"nodeType":"Block","src":"13281:46:46","statements":[{"expression":{"id":14328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14324,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14294,"src":"13299:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14325,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14305,"src":"13305:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14326,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13311:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"13305:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13299:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14329,"nodeType":"ExpressionStatement","src":"13299:13:46"}]},"id":14331,"nodeType":"IfStatement","src":"13191:136:46","trueBody":{"id":14323,"nodeType":"Block","src":"13232:43:46","statements":[{"expression":{"id":14321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14319,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14296,"src":"13250:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14320,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14305,"src":"13257:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13250:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14322,"nodeType":"ExpressionStatement","src":"13250:10:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14301,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14294,"src":"13114:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":14302,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14296,"src":"13120:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13114:10:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14333,"nodeType":"WhileStatement","src":"13107:230:46"},{"expression":{"id":14334,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14296,"src":"13353:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14300,"id":14335,"nodeType":"Return","src":"13346:11:46"}]},"documentation":{"id":14286,"nodeType":"StructuredDocumentation","src":"12587:339:46","text":" @dev Return the index of the first (oldest) checkpoint with key strictly bigger than the search key, or `high`\n if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n `high`.\n WARNING: `high` should not be greater than the array's length."},"id":14337,"implemented":true,"kind":"function","modifiers":[],"name":"_upperBinaryLookup","nameLocation":"12940:18:46","nodeType":"FunctionDefinition","parameters":{"id":14297,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14290,"mutability":"mutable","name":"self","nameLocation":"12992:4:46","nodeType":"VariableDeclaration","scope":14337,"src":"12968:28:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"},"typeName":{"baseType":{"id":14288,"nodeType":"UserDefinedTypeName","pathNode":{"id":14287,"name":"Checkpoint208","nameLocations":["12968:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":13890,"src":"12968:13:46"},"referencedDeclaration":13890,"src":"12968:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"id":14289,"nodeType":"ArrayTypeName","src":"12968:15:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"}},"visibility":"internal"},{"constant":false,"id":14292,"mutability":"mutable","name":"key","nameLocation":"13013:3:46","nodeType":"VariableDeclaration","scope":14337,"src":"13006:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14291,"name":"uint48","nodeType":"ElementaryTypeName","src":"13006:6:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":14294,"mutability":"mutable","name":"low","nameLocation":"13034:3:46","nodeType":"VariableDeclaration","scope":14337,"src":"13026:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14293,"name":"uint256","nodeType":"ElementaryTypeName","src":"13026:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14296,"mutability":"mutable","name":"high","nameLocation":"13055:4:46","nodeType":"VariableDeclaration","scope":14337,"src":"13047:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14295,"name":"uint256","nodeType":"ElementaryTypeName","src":"13047:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12958:107:46"},"returnParameters":{"id":14300,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14299,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14337,"src":"13088:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14298,"name":"uint256","nodeType":"ElementaryTypeName","src":"13088:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13087:9:46"},"scope":14929,"src":"12931:433:46","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":14388,"nodeType":"Block","src":"13881:267:46","statements":[{"body":{"id":14384,"nodeType":"Block","src":"13910:211:46","statements":[{"assignments":[14357],"declarations":[{"constant":false,"id":14357,"mutability":"mutable","name":"mid","nameLocation":"13932:3:46","nodeType":"VariableDeclaration","scope":14384,"src":"13924:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14356,"name":"uint256","nodeType":"ElementaryTypeName","src":"13924:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14363,"initialValue":{"arguments":[{"id":14360,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14346,"src":"13951:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14361,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14348,"src":"13956:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14358,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11439,"src":"13938:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$11439_$","typeString":"type(library Math)"}},"id":14359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13943:7:46","memberName":"average","nodeType":"MemberAccess","referencedDeclaration":10168,"src":"13938:12:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":14362,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13938:23:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13924:37:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":14370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":14365,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14342,"src":"13993:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"}},{"id":14366,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14357,"src":"13999:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14364,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":14404,"src":"13979:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint208_$13890_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint208 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint208 storage pointer)"}},"id":14367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13979:24:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208 storage pointer"}},"id":14368,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14004:4:46","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":13887,"src":"13979:29:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":14369,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14344,"src":"14011:3:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"13979:35:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14382,"nodeType":"Block","src":"14068:43:46","statements":[{"expression":{"id":14380,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14378,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14348,"src":"14086:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14379,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14357,"src":"14093:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14086:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14381,"nodeType":"ExpressionStatement","src":"14086:10:46"}]},"id":14383,"nodeType":"IfStatement","src":"13975:136:46","trueBody":{"id":14377,"nodeType":"Block","src":"14016:46:46","statements":[{"expression":{"id":14375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14371,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14346,"src":"14034:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14372,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14357,"src":"14040:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14373,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14046:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"14040:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14034:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14376,"nodeType":"ExpressionStatement","src":"14034:13:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14353,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14346,"src":"13898:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":14354,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14348,"src":"13904:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13898:10:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14385,"nodeType":"WhileStatement","src":"13891:230:46"},{"expression":{"id":14386,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14348,"src":"14137:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14352,"id":14387,"nodeType":"Return","src":"14130:11:46"}]},"documentation":{"id":14338,"nodeType":"StructuredDocumentation","src":"13370:340:46","text":" @dev Return the index of the first (oldest) checkpoint with key greater or equal than the search key, or `high`\n if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n `high`.\n WARNING: `high` should not be greater than the array's length."},"id":14389,"implemented":true,"kind":"function","modifiers":[],"name":"_lowerBinaryLookup","nameLocation":"13724:18:46","nodeType":"FunctionDefinition","parameters":{"id":14349,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14342,"mutability":"mutable","name":"self","nameLocation":"13776:4:46","nodeType":"VariableDeclaration","scope":14389,"src":"13752:28:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"},"typeName":{"baseType":{"id":14340,"nodeType":"UserDefinedTypeName","pathNode":{"id":14339,"name":"Checkpoint208","nameLocations":["13752:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":13890,"src":"13752:13:46"},"referencedDeclaration":13890,"src":"13752:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"id":14341,"nodeType":"ArrayTypeName","src":"13752:15:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"}},"visibility":"internal"},{"constant":false,"id":14344,"mutability":"mutable","name":"key","nameLocation":"13797:3:46","nodeType":"VariableDeclaration","scope":14389,"src":"13790:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":14343,"name":"uint48","nodeType":"ElementaryTypeName","src":"13790:6:46","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":14346,"mutability":"mutable","name":"low","nameLocation":"13818:3:46","nodeType":"VariableDeclaration","scope":14389,"src":"13810:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14345,"name":"uint256","nodeType":"ElementaryTypeName","src":"13810:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14348,"mutability":"mutable","name":"high","nameLocation":"13839:4:46","nodeType":"VariableDeclaration","scope":14389,"src":"13831:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14347,"name":"uint256","nodeType":"ElementaryTypeName","src":"13831:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13742:107:46"},"returnParameters":{"id":14352,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14351,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14389,"src":"13872:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14350,"name":"uint256","nodeType":"ElementaryTypeName","src":"13872:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13871:9:46"},"scope":14929,"src":"13715:433:46","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":14403,"nodeType":"Block","src":"14431:125:46","statements":[{"AST":{"nodeType":"YulBlock","src":"14450:100:46","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"14471:1:46","type":"","value":"0"},{"name":"self.slot","nodeType":"YulIdentifier","src":"14474:9:46"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14464:6:46"},"nodeType":"YulFunctionCall","src":"14464:20:46"},"nodeType":"YulExpressionStatement","src":"14464:20:46"},{"nodeType":"YulAssignment","src":"14497:43:46","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"14526:1:46","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"14529:4:46","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"14516:9:46"},"nodeType":"YulFunctionCall","src":"14516:18:46"},{"name":"pos","nodeType":"YulIdentifier","src":"14536:3:46"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14512:3:46"},"nodeType":"YulFunctionCall","src":"14512:28:46"},"variableNames":[{"name":"result.slot","nodeType":"YulIdentifier","src":"14497:11:46"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":14396,"isOffset":false,"isSlot":false,"src":"14536:3:46","valueSize":1},{"declaration":14400,"isOffset":false,"isSlot":true,"src":"14497:11:46","suffix":"slot","valueSize":1},{"declaration":14394,"isOffset":false,"isSlot":true,"src":"14474:9:46","suffix":"slot","valueSize":1}],"id":14402,"nodeType":"InlineAssembly","src":"14441:109:46"}]},"documentation":{"id":14390,"nodeType":"StructuredDocumentation","src":"14154:132:46","text":" @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds."},"id":14404,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeAccess","nameLocation":"14300:13:46","nodeType":"FunctionDefinition","parameters":{"id":14397,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14394,"mutability":"mutable","name":"self","nameLocation":"14347:4:46","nodeType":"VariableDeclaration","scope":14404,"src":"14323:28:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"},"typeName":{"baseType":{"id":14392,"nodeType":"UserDefinedTypeName","pathNode":{"id":14391,"name":"Checkpoint208","nameLocations":["14323:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":13890,"src":"14323:13:46"},"referencedDeclaration":13890,"src":"14323:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"id":14393,"nodeType":"ArrayTypeName","src":"14323:15:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint208_$13890_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint208[]"}},"visibility":"internal"},{"constant":false,"id":14396,"mutability":"mutable","name":"pos","nameLocation":"14369:3:46","nodeType":"VariableDeclaration","scope":14404,"src":"14361:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14395,"name":"uint256","nodeType":"ElementaryTypeName","src":"14361:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14313:65:46"},"returnParameters":{"id":14401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14400,"mutability":"mutable","name":"result","nameLocation":"14423:6:46","nodeType":"VariableDeclaration","scope":14404,"src":"14401:28:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"},"typeName":{"id":14399,"nodeType":"UserDefinedTypeName","pathNode":{"id":14398,"name":"Checkpoint208","nameLocations":["14401:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":13890,"src":"14401:13:46"},"referencedDeclaration":13890,"src":"14401:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint208_$13890_storage_ptr","typeString":"struct Checkpoints.Checkpoint208"}},"visibility":"internal"}],"src":"14400:30:46"},"scope":14929,"src":"14291:265:46","stateMutability":"pure","virtual":false,"visibility":"private"},{"canonicalName":"Checkpoints.Trace160","id":14409,"members":[{"constant":false,"id":14408,"mutability":"mutable","name":"_checkpoints","nameLocation":"14604:12:46","nodeType":"VariableDeclaration","scope":14409,"src":"14588:28:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"},"typeName":{"baseType":{"id":14406,"nodeType":"UserDefinedTypeName","pathNode":{"id":14405,"name":"Checkpoint160","nameLocations":["14588:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":14414,"src":"14588:13:46"},"referencedDeclaration":14414,"src":"14588:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"id":14407,"nodeType":"ArrayTypeName","src":"14588:15:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"}},"visibility":"internal"}],"name":"Trace160","nameLocation":"14569:8:46","nodeType":"StructDefinition","scope":14929,"src":"14562:61:46","visibility":"public"},{"canonicalName":"Checkpoints.Checkpoint160","id":14414,"members":[{"constant":false,"id":14411,"mutability":"mutable","name":"_key","nameLocation":"14667:4:46","nodeType":"VariableDeclaration","scope":14414,"src":"14660:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14410,"name":"uint96","nodeType":"ElementaryTypeName","src":"14660:6:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":14413,"mutability":"mutable","name":"_value","nameLocation":"14689:6:46","nodeType":"VariableDeclaration","scope":14414,"src":"14681:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14412,"name":"uint160","nodeType":"ElementaryTypeName","src":"14681:7:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"name":"Checkpoint160","nameLocation":"14636:13:46","nodeType":"StructDefinition","scope":14929,"src":"14629:73:46","visibility":"public"},{"body":{"id":14436,"nodeType":"Block","src":"15163:62:46","statements":[{"expression":{"arguments":[{"expression":{"id":14430,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14418,"src":"15188:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14431,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15193:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":14408,"src":"15188:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"id":14432,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14420,"src":"15207:3:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":14433,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14422,"src":"15212:5:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":14429,"name":"_insert","nodeType":"Identifier","overloadedDeclarations":[13761,14285,14809],"referencedDeclaration":14809,"src":"15180:7:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr_$_t_uint96_$_t_uint160_$returns$_t_uint160_$_t_uint160_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint96,uint160) returns (uint160,uint160)"}},"id":14434,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15180:38:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint160_$_t_uint160_$","typeString":"tuple(uint160,uint160)"}},"functionReturnParameters":14428,"id":14435,"nodeType":"Return","src":"15173:45:46"}]},"documentation":{"id":14415,"nodeType":"StructuredDocumentation","src":"14708:302:46","text":" @dev Pushes a (`key`, `value`) pair into a Trace160 so that it is stored as the checkpoint.\n Returns previous value and new value.\n IMPORTANT: Never accept `key` as a user input, since an arbitrary `type(uint96).max` key set will disable the\n library."},"id":14437,"implemented":true,"kind":"function","modifiers":[],"name":"push","nameLocation":"15024:4:46","nodeType":"FunctionDefinition","parameters":{"id":14423,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14418,"mutability":"mutable","name":"self","nameLocation":"15055:4:46","nodeType":"VariableDeclaration","scope":14437,"src":"15038:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":14417,"nodeType":"UserDefinedTypeName","pathNode":{"id":14416,"name":"Trace160","nameLocations":["15038:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":14409,"src":"15038:8:46"},"referencedDeclaration":14409,"src":"15038:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"},{"constant":false,"id":14420,"mutability":"mutable","name":"key","nameLocation":"15076:3:46","nodeType":"VariableDeclaration","scope":14437,"src":"15069:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14419,"name":"uint96","nodeType":"ElementaryTypeName","src":"15069:6:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":14422,"mutability":"mutable","name":"value","nameLocation":"15097:5:46","nodeType":"VariableDeclaration","scope":14437,"src":"15089:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14421,"name":"uint160","nodeType":"ElementaryTypeName","src":"15089:7:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"15028:80:46"},"returnParameters":{"id":14428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14425,"mutability":"mutable","name":"oldValue","nameLocation":"15135:8:46","nodeType":"VariableDeclaration","scope":14437,"src":"15127:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14424,"name":"uint160","nodeType":"ElementaryTypeName","src":"15127:7:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"},{"constant":false,"id":14427,"mutability":"mutable","name":"newValue","nameLocation":"15153:8:46","nodeType":"VariableDeclaration","scope":14437,"src":"15145:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14426,"name":"uint160","nodeType":"ElementaryTypeName","src":"15145:7:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"15126:36:46"},"scope":14929,"src":"15015:210:46","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":14476,"nodeType":"Block","src":"15478:207:46","statements":[{"assignments":[14449],"declarations":[{"constant":false,"id":14449,"mutability":"mutable","name":"len","nameLocation":"15496:3:46","nodeType":"VariableDeclaration","scope":14476,"src":"15488:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14448,"name":"uint256","nodeType":"ElementaryTypeName","src":"15488:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14453,"initialValue":{"expression":{"expression":{"id":14450,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14441,"src":"15502:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14451,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15507:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":14408,"src":"15502:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":14452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15520:6:46","memberName":"length","nodeType":"MemberAccess","src":"15502:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15488:38:46"},{"assignments":[14455],"declarations":[{"constant":false,"id":14455,"mutability":"mutable","name":"pos","nameLocation":"15544:3:46","nodeType":"VariableDeclaration","scope":14476,"src":"15536:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14454,"name":"uint256","nodeType":"ElementaryTypeName","src":"15536:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14463,"initialValue":{"arguments":[{"expression":{"id":14457,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14441,"src":"15569:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14458,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15574:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":14408,"src":"15569:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"id":14459,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14443,"src":"15588:3:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"hexValue":"30","id":14460,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15593:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":14461,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"15596:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14456,"name":"_lowerBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13865,14389,14913],"referencedDeclaration":14913,"src":"15550:18:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr_$_t_uint96_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint96,uint256,uint256) view returns (uint256)"}},"id":14462,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15550:50:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15536:64:46"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14466,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14464,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14455,"src":"15617:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":14465,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"15624:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15617:10:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":14469,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14441,"src":"15648:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14470,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15653:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":14408,"src":"15648:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"id":14471,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14455,"src":"15667:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14468,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":14928,"src":"15634:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$14414_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14472,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15634:37:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14473,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15672:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":14413,"src":"15634:44:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"id":14474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"15617:61:46","trueExpression":{"hexValue":"30","id":14467,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15630:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":14447,"id":14475,"nodeType":"Return","src":"15610:68:46"}]},"documentation":{"id":14438,"nodeType":"StructuredDocumentation","src":"15231:154:46","text":" @dev Returns the value in the first (oldest) checkpoint with key greater or equal than the search key, or zero if\n there is none."},"id":14477,"implemented":true,"kind":"function","modifiers":[],"name":"lowerLookup","nameLocation":"15399:11:46","nodeType":"FunctionDefinition","parameters":{"id":14444,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14441,"mutability":"mutable","name":"self","nameLocation":"15428:4:46","nodeType":"VariableDeclaration","scope":14477,"src":"15411:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":14440,"nodeType":"UserDefinedTypeName","pathNode":{"id":14439,"name":"Trace160","nameLocations":["15411:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":14409,"src":"15411:8:46"},"referencedDeclaration":14409,"src":"15411:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"},{"constant":false,"id":14443,"mutability":"mutable","name":"key","nameLocation":"15441:3:46","nodeType":"VariableDeclaration","scope":14477,"src":"15434:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14442,"name":"uint96","nodeType":"ElementaryTypeName","src":"15434:6:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"15410:35:46"},"returnParameters":{"id":14447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14446,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14477,"src":"15469:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14445,"name":"uint160","nodeType":"ElementaryTypeName","src":"15469:7:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"15468:9:46"},"scope":14929,"src":"15390:295:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14518,"nodeType":"Block","src":"15940:209:46","statements":[{"assignments":[14489],"declarations":[{"constant":false,"id":14489,"mutability":"mutable","name":"len","nameLocation":"15958:3:46","nodeType":"VariableDeclaration","scope":14518,"src":"15950:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14488,"name":"uint256","nodeType":"ElementaryTypeName","src":"15950:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14493,"initialValue":{"expression":{"expression":{"id":14490,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14481,"src":"15964:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14491,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15969:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":14408,"src":"15964:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":14492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15982:6:46","memberName":"length","nodeType":"MemberAccess","src":"15964:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15950:38:46"},{"assignments":[14495],"declarations":[{"constant":false,"id":14495,"mutability":"mutable","name":"pos","nameLocation":"16006:3:46","nodeType":"VariableDeclaration","scope":14518,"src":"15998:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14494,"name":"uint256","nodeType":"ElementaryTypeName","src":"15998:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14503,"initialValue":{"arguments":[{"expression":{"id":14497,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14481,"src":"16031:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14498,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16036:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":14408,"src":"16031:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"id":14499,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14483,"src":"16050:3:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"hexValue":"30","id":14500,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16055:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":14501,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14489,"src":"16058:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14496,"name":"_upperBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13813,14337,14861],"referencedDeclaration":14861,"src":"16012:18:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr_$_t_uint96_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint96,uint256,uint256) view returns (uint256)"}},"id":14502,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16012:50:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15998:64:46"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14506,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14504,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14495,"src":"16079:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":14505,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16086:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"16079:8:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":14509,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14481,"src":"16108:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14510,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16113:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":14408,"src":"16108:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14511,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14495,"src":"16127:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14512,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16133:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"16127:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14508,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":14928,"src":"16094:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$14414_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16094:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14515,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16136:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":14413,"src":"16094:48:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"id":14516,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"16079:63:46","trueExpression":{"hexValue":"30","id":14507,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16090:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":14487,"id":14517,"nodeType":"Return","src":"16072:70:46"}]},"documentation":{"id":14478,"nodeType":"StructuredDocumentation","src":"15691:156:46","text":" @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n if there is none."},"id":14519,"implemented":true,"kind":"function","modifiers":[],"name":"upperLookup","nameLocation":"15861:11:46","nodeType":"FunctionDefinition","parameters":{"id":14484,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14481,"mutability":"mutable","name":"self","nameLocation":"15890:4:46","nodeType":"VariableDeclaration","scope":14519,"src":"15873:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":14480,"nodeType":"UserDefinedTypeName","pathNode":{"id":14479,"name":"Trace160","nameLocations":["15873:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":14409,"src":"15873:8:46"},"referencedDeclaration":14409,"src":"15873:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"},{"constant":false,"id":14483,"mutability":"mutable","name":"key","nameLocation":"15903:3:46","nodeType":"VariableDeclaration","scope":14519,"src":"15896:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14482,"name":"uint96","nodeType":"ElementaryTypeName","src":"15896:6:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"15872:35:46"},"returnParameters":{"id":14487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14486,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14519,"src":"15931:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14485,"name":"uint160","nodeType":"ElementaryTypeName","src":"15931:7:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"15930:9:46"},"scope":14929,"src":"15852:297:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14603,"nodeType":"Block","src":"16548:512:46","statements":[{"assignments":[14531],"declarations":[{"constant":false,"id":14531,"mutability":"mutable","name":"len","nameLocation":"16566:3:46","nodeType":"VariableDeclaration","scope":14603,"src":"16558:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14530,"name":"uint256","nodeType":"ElementaryTypeName","src":"16558:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14535,"initialValue":{"expression":{"expression":{"id":14532,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14523,"src":"16572:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14533,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16577:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":14408,"src":"16572:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":14534,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16590:6:46","memberName":"length","nodeType":"MemberAccess","src":"16572:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16558:38:46"},{"assignments":[14537],"declarations":[{"constant":false,"id":14537,"mutability":"mutable","name":"low","nameLocation":"16615:3:46","nodeType":"VariableDeclaration","scope":14603,"src":"16607:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14536,"name":"uint256","nodeType":"ElementaryTypeName","src":"16607:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14539,"initialValue":{"hexValue":"30","id":14538,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16621:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"16607:15:46"},{"assignments":[14541],"declarations":[{"constant":false,"id":14541,"mutability":"mutable","name":"high","nameLocation":"16640:4:46","nodeType":"VariableDeclaration","scope":14603,"src":"16632:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14540,"name":"uint256","nodeType":"ElementaryTypeName","src":"16632:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14543,"initialValue":{"id":14542,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14531,"src":"16647:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16632:18:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14546,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14544,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14531,"src":"16665:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"35","id":14545,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16671:1:46","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"16665:7:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14578,"nodeType":"IfStatement","src":"16661:234:46","trueBody":{"id":14577,"nodeType":"Block","src":"16674:221:46","statements":[{"assignments":[14548],"declarations":[{"constant":false,"id":14548,"mutability":"mutable","name":"mid","nameLocation":"16696:3:46","nodeType":"VariableDeclaration","scope":14577,"src":"16688:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14547,"name":"uint256","nodeType":"ElementaryTypeName","src":"16688:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14555,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14554,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14549,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14531,"src":"16702:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":14552,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14531,"src":"16718:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14550,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11439,"src":"16708:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$11439_$","typeString":"type(library Math)"}},"id":14551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16713:4:46","memberName":"sqrt","nodeType":"MemberAccess","referencedDeclaration":10983,"src":"16708:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":14553,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16708:14:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16702:20:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16688:34:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":14563,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14556,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14525,"src":"16740:3:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"expression":{"id":14558,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14523,"src":"16760:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14559,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16765:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":14408,"src":"16760:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"id":14560,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14548,"src":"16779:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14557,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":14928,"src":"16746:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$14414_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14561,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16746:37:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14562,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16784:4:46","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":14411,"src":"16746:42:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"16740:48:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14575,"nodeType":"Block","src":"16839:46:46","statements":[{"expression":{"id":14573,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14569,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14537,"src":"16857:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14572,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14570,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14548,"src":"16863:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14571,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16869:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"16863:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16857:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14574,"nodeType":"ExpressionStatement","src":"16857:13:46"}]},"id":14576,"nodeType":"IfStatement","src":"16736:149:46","trueBody":{"id":14568,"nodeType":"Block","src":"16790:43:46","statements":[{"expression":{"id":14566,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14564,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14541,"src":"16808:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14565,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14548,"src":"16815:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16808:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14567,"nodeType":"ExpressionStatement","src":"16808:10:46"}]}}]}},{"assignments":[14580],"declarations":[{"constant":false,"id":14580,"mutability":"mutable","name":"pos","nameLocation":"16913:3:46","nodeType":"VariableDeclaration","scope":14603,"src":"16905:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14579,"name":"uint256","nodeType":"ElementaryTypeName","src":"16905:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14588,"initialValue":{"arguments":[{"expression":{"id":14582,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14523,"src":"16938:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14583,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16943:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":14408,"src":"16938:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"id":14584,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14525,"src":"16957:3:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":14585,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14537,"src":"16962:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14586,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14541,"src":"16967:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14581,"name":"_upperBinaryLookup","nodeType":"Identifier","overloadedDeclarations":[13813,14337,14861],"referencedDeclaration":14861,"src":"16919:18:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr_$_t_uint96_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint96,uint256,uint256) view returns (uint256)"}},"id":14587,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16919:53:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16905:67:46"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14589,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14580,"src":"16990:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":14590,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16997:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"16990:8:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":14594,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14523,"src":"17019:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14595,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17024:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":14408,"src":"17019:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14598,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14596,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14580,"src":"17038:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14597,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17044:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"17038:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14593,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":14928,"src":"17005:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$14414_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14599,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17005:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14600,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17047:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":14413,"src":"17005:48:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"id":14601,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"16990:63:46","trueExpression":{"hexValue":"30","id":14592,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17001:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":14529,"id":14602,"nodeType":"Return","src":"16983:70:46"}]},"documentation":{"id":14520,"nodeType":"StructuredDocumentation","src":"16155:294:46","text":" @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero\n if there is none.\n NOTE: This is a variant of {upperLookup} that is optimised to find \"recent\" checkpoint (checkpoints with high\n keys)."},"id":14604,"implemented":true,"kind":"function","modifiers":[],"name":"upperLookupRecent","nameLocation":"16463:17:46","nodeType":"FunctionDefinition","parameters":{"id":14526,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14523,"mutability":"mutable","name":"self","nameLocation":"16498:4:46","nodeType":"VariableDeclaration","scope":14604,"src":"16481:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":14522,"nodeType":"UserDefinedTypeName","pathNode":{"id":14521,"name":"Trace160","nameLocations":["16481:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":14409,"src":"16481:8:46"},"referencedDeclaration":14409,"src":"16481:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"},{"constant":false,"id":14525,"mutability":"mutable","name":"key","nameLocation":"16511:3:46","nodeType":"VariableDeclaration","scope":14604,"src":"16504:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14524,"name":"uint96","nodeType":"ElementaryTypeName","src":"16504:6:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"16480:35:46"},"returnParameters":{"id":14529,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14528,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14604,"src":"16539:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14527,"name":"uint160","nodeType":"ElementaryTypeName","src":"16539:7:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"16538:9:46"},"scope":14929,"src":"16454:606:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14633,"nodeType":"Block","src":"17251:135:46","statements":[{"assignments":[14614],"declarations":[{"constant":false,"id":14614,"mutability":"mutable","name":"pos","nameLocation":"17269:3:46","nodeType":"VariableDeclaration","scope":14633,"src":"17261:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14613,"name":"uint256","nodeType":"ElementaryTypeName","src":"17261:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14618,"initialValue":{"expression":{"expression":{"id":14615,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14608,"src":"17275:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14616,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17280:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":14408,"src":"17275:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":14617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17293:6:46","memberName":"length","nodeType":"MemberAccess","src":"17275:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"17261:38:46"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14621,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14619,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14614,"src":"17316:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":14620,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17323:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17316:8:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"arguments":[{"expression":{"id":14624,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14608,"src":"17345:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14625,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17350:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":14408,"src":"17345:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14628,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14626,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14614,"src":"17364:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14627,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17370:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"17364:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14623,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":14928,"src":"17331:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$14414_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14629,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17331:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14630,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17373:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":14413,"src":"17331:48:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"id":14631,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"17316:63:46","trueExpression":{"hexValue":"30","id":14622,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17327:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":14612,"id":14632,"nodeType":"Return","src":"17309:70:46"}]},"documentation":{"id":14605,"nodeType":"StructuredDocumentation","src":"17066:109:46","text":" @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints."},"id":14634,"implemented":true,"kind":"function","modifiers":[],"name":"latest","nameLocation":"17189:6:46","nodeType":"FunctionDefinition","parameters":{"id":14609,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14608,"mutability":"mutable","name":"self","nameLocation":"17213:4:46","nodeType":"VariableDeclaration","scope":14634,"src":"17196:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":14607,"nodeType":"UserDefinedTypeName","pathNode":{"id":14606,"name":"Trace160","nameLocations":["17196:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":14409,"src":"17196:8:46"},"referencedDeclaration":14409,"src":"17196:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"}],"src":"17195:23:46"},"returnParameters":{"id":14612,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14611,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14634,"src":"17242:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14610,"name":"uint160","nodeType":"ElementaryTypeName","src":"17242:7:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"17241:9:46"},"scope":14929,"src":"17180:206:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14682,"nodeType":"Block","src":"17679:275:46","statements":[{"assignments":[14648],"declarations":[{"constant":false,"id":14648,"mutability":"mutable","name":"pos","nameLocation":"17697:3:46","nodeType":"VariableDeclaration","scope":14682,"src":"17689:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14647,"name":"uint256","nodeType":"ElementaryTypeName","src":"17689:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14652,"initialValue":{"expression":{"expression":{"id":14649,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14638,"src":"17703:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14650,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17708:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":14408,"src":"17703:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":14651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17721:6:46","memberName":"length","nodeType":"MemberAccess","src":"17703:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"17689:38:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14655,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14653,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14648,"src":"17741:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":14654,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17748:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17741:8:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14680,"nodeType":"Block","src":"17802:146:46","statements":[{"assignments":[14664],"declarations":[{"constant":false,"id":14664,"mutability":"mutable","name":"ckpt","nameLocation":"17838:4:46","nodeType":"VariableDeclaration","scope":14680,"src":"17816:26:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"},"typeName":{"id":14663,"nodeType":"UserDefinedTypeName","pathNode":{"id":14662,"name":"Checkpoint160","nameLocations":["17816:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":14414,"src":"17816:13:46"},"referencedDeclaration":14414,"src":"17816:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"visibility":"internal"}],"id":14672,"initialValue":{"arguments":[{"expression":{"id":14666,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14638,"src":"17859:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14667,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17864:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":14408,"src":"17859:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14668,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14648,"src":"17878:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14669,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17884:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"17878:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14665,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":14928,"src":"17845:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$14414_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14671,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17845:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"17816:70:46"},{"expression":{"components":[{"hexValue":"74727565","id":14673,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17908:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"id":14674,"name":"ckpt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14664,"src":"17914:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14675,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17919:4:46","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":14411,"src":"17914:9:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"expression":{"id":14676,"name":"ckpt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14664,"src":"17925:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14677,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17930:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":14413,"src":"17925:11:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"id":14678,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17907:30:46","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint96_$_t_uint160_$","typeString":"tuple(bool,uint96,uint160)"}},"functionReturnParameters":14646,"id":14679,"nodeType":"Return","src":"17900:37:46"}]},"id":14681,"nodeType":"IfStatement","src":"17737:211:46","trueBody":{"id":14661,"nodeType":"Block","src":"17751:45:46","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":14656,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17773:5:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":14657,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17780:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":14658,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17783:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":14659,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"17772:13:46","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0,int_const 0)"}},"functionReturnParameters":14646,"id":14660,"nodeType":"Return","src":"17765:20:46"}]}}]},"documentation":{"id":14635,"nodeType":"StructuredDocumentation","src":"17392:168:46","text":" @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value\n in the most recent checkpoint."},"id":14683,"implemented":true,"kind":"function","modifiers":[],"name":"latestCheckpoint","nameLocation":"17574:16:46","nodeType":"FunctionDefinition","parameters":{"id":14639,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14638,"mutability":"mutable","name":"self","nameLocation":"17608:4:46","nodeType":"VariableDeclaration","scope":14683,"src":"17591:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":14637,"nodeType":"UserDefinedTypeName","pathNode":{"id":14636,"name":"Trace160","nameLocations":["17591:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":14409,"src":"17591:8:46"},"referencedDeclaration":14409,"src":"17591:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"}],"src":"17590:23:46"},"returnParameters":{"id":14646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14641,"mutability":"mutable","name":"exists","nameLocation":"17642:6:46","nodeType":"VariableDeclaration","scope":14683,"src":"17637:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14640,"name":"bool","nodeType":"ElementaryTypeName","src":"17637:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":14643,"mutability":"mutable","name":"_key","nameLocation":"17657:4:46","nodeType":"VariableDeclaration","scope":14683,"src":"17650:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14642,"name":"uint96","nodeType":"ElementaryTypeName","src":"17650:6:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":14645,"mutability":"mutable","name":"_value","nameLocation":"17671:6:46","nodeType":"VariableDeclaration","scope":14683,"src":"17663:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14644,"name":"uint160","nodeType":"ElementaryTypeName","src":"17663:7:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"17636:42:46"},"scope":14929,"src":"17565:389:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14696,"nodeType":"Block","src":"18094:48:46","statements":[{"expression":{"expression":{"expression":{"id":14692,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14687,"src":"18111:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14693,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18116:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":14408,"src":"18111:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":14694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18129:6:46","memberName":"length","nodeType":"MemberAccess","src":"18111:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14691,"id":14695,"nodeType":"Return","src":"18104:31:46"}]},"documentation":{"id":14684,"nodeType":"StructuredDocumentation","src":"17960:58:46","text":" @dev Returns the number of checkpoints."},"id":14697,"implemented":true,"kind":"function","modifiers":[],"name":"length","nameLocation":"18032:6:46","nodeType":"FunctionDefinition","parameters":{"id":14688,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14687,"mutability":"mutable","name":"self","nameLocation":"18056:4:46","nodeType":"VariableDeclaration","scope":14697,"src":"18039:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":14686,"nodeType":"UserDefinedTypeName","pathNode":{"id":14685,"name":"Trace160","nameLocations":["18039:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":14409,"src":"18039:8:46"},"referencedDeclaration":14409,"src":"18039:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"}],"src":"18038:23:46"},"returnParameters":{"id":14691,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14690,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14697,"src":"18085:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14689,"name":"uint256","nodeType":"ElementaryTypeName","src":"18085:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18084:9:46"},"scope":14929,"src":"18023:119:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14714,"nodeType":"Block","src":"18306:46:46","statements":[{"expression":{"baseExpression":{"expression":{"id":14709,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14701,"src":"18323:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160 storage pointer"}},"id":14710,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18328:12:46","memberName":"_checkpoints","nodeType":"MemberAccess","referencedDeclaration":14408,"src":"18323:17:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage ref"}},"id":14712,"indexExpression":{"id":14711,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14703,"src":"18341:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18323:22:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage","typeString":"struct Checkpoints.Checkpoint160 storage ref"}},"functionReturnParameters":14708,"id":14713,"nodeType":"Return","src":"18316:29:46"}]},"documentation":{"id":14698,"nodeType":"StructuredDocumentation","src":"18148:61:46","text":" @dev Returns checkpoint at given position."},"id":14715,"implemented":true,"kind":"function","modifiers":[],"name":"at","nameLocation":"18223:2:46","nodeType":"FunctionDefinition","parameters":{"id":14704,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14701,"mutability":"mutable","name":"self","nameLocation":"18243:4:46","nodeType":"VariableDeclaration","scope":14715,"src":"18226:21:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160"},"typeName":{"id":14700,"nodeType":"UserDefinedTypeName","pathNode":{"id":14699,"name":"Trace160","nameLocations":["18226:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":14409,"src":"18226:8:46"},"referencedDeclaration":14409,"src":"18226:8:46","typeDescriptions":{"typeIdentifier":"t_struct$_Trace160_$14409_storage_ptr","typeString":"struct Checkpoints.Trace160"}},"visibility":"internal"},{"constant":false,"id":14703,"mutability":"mutable","name":"pos","nameLocation":"18256:3:46","nodeType":"VariableDeclaration","scope":14715,"src":"18249:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":14702,"name":"uint32","nodeType":"ElementaryTypeName","src":"18249:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"18225:35:46"},"returnParameters":{"id":14708,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14707,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14715,"src":"18284:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_memory_ptr","typeString":"struct Checkpoints.Checkpoint160"},"typeName":{"id":14706,"nodeType":"UserDefinedTypeName","pathNode":{"id":14705,"name":"Checkpoint160","nameLocations":["18284:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":14414,"src":"18284:13:46"},"referencedDeclaration":14414,"src":"18284:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"visibility":"internal"}],"src":"18283:22:46"},"scope":14929,"src":"18214:138:46","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14808,"nodeType":"Block","src":"18685:765:46","statements":[{"assignments":[14732],"declarations":[{"constant":false,"id":14732,"mutability":"mutable","name":"pos","nameLocation":"18703:3:46","nodeType":"VariableDeclaration","scope":14808,"src":"18695:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14731,"name":"uint256","nodeType":"ElementaryTypeName","src":"18695:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14735,"initialValue":{"expression":{"id":14733,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14720,"src":"18709:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"}},"id":14734,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18714:6:46","memberName":"length","nodeType":"MemberAccess","src":"18709:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18695:25:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14738,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14736,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14732,"src":"18735:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":14737,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18741:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18735:7:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14806,"nodeType":"Block","src":"19336:108:46","statements":[{"expression":{"arguments":[{"arguments":[{"id":14797,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14722,"src":"19381:3:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":14798,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14724,"src":"19394:5:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":14796,"name":"Checkpoint160","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14414,"src":"19360:13:46","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Checkpoint160_$14414_storage_ptr_$","typeString":"type(struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14799,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["19375:4:46","19386:6:46"],"names":["_key","_value"],"nodeType":"FunctionCall","src":"19360:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_memory_ptr","typeString":"struct Checkpoints.Checkpoint160 memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Checkpoint160_$14414_memory_ptr","typeString":"struct Checkpoints.Checkpoint160 memory"}],"expression":{"id":14793,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14720,"src":"19350:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"}},"id":14795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19355:4:46","memberName":"push","nodeType":"MemberAccess","src":"19350:9:46","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr_$_t_struct$_Checkpoint160_$14414_storage_$returns$__$attached_to$_t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,struct Checkpoints.Checkpoint160 storage ref)"}},"id":14800,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19350:52:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14801,"nodeType":"ExpressionStatement","src":"19350:52:46"},{"expression":{"components":[{"hexValue":"30","id":14802,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19424:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":14803,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14724,"src":"19427:5:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"id":14804,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"19423:10:46","typeDescriptions":{"typeIdentifier":"t_tuple$_t_rational_0_by_1_$_t_uint160_$","typeString":"tuple(int_const 0,uint160)"}},"functionReturnParameters":14730,"id":14805,"nodeType":"Return","src":"19416:17:46"}]},"id":14807,"nodeType":"IfStatement","src":"18731:713:46","trueBody":{"id":14792,"nodeType":"Block","src":"18744:586:46","statements":[{"assignments":[14741],"declarations":[{"constant":false,"id":14741,"mutability":"mutable","name":"last","nameLocation":"18780:4:46","nodeType":"VariableDeclaration","scope":14792,"src":"18758:26:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"},"typeName":{"id":14740,"nodeType":"UserDefinedTypeName","pathNode":{"id":14739,"name":"Checkpoint160","nameLocations":["18758:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":14414,"src":"18758:13:46"},"referencedDeclaration":14414,"src":"18758:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"visibility":"internal"}],"id":14748,"initialValue":{"arguments":[{"id":14743,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14720,"src":"18801:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14744,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14732,"src":"18807:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14745,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18813:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"18807:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14742,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":14928,"src":"18787:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$14414_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14747,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18787:28:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"18758:57:46"},{"assignments":[14750],"declarations":[{"constant":false,"id":14750,"mutability":"mutable","name":"lastKey","nameLocation":"18836:7:46","nodeType":"VariableDeclaration","scope":14792,"src":"18829:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14749,"name":"uint96","nodeType":"ElementaryTypeName","src":"18829:6:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"id":14753,"initialValue":{"expression":{"id":14751,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14741,"src":"18846:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14752,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18851:4:46","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":14411,"src":"18846:9:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"VariableDeclarationStatement","src":"18829:26:46"},{"assignments":[14755],"declarations":[{"constant":false,"id":14755,"mutability":"mutable","name":"lastValue","nameLocation":"18877:9:46","nodeType":"VariableDeclaration","scope":14792,"src":"18869:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14754,"name":"uint160","nodeType":"ElementaryTypeName","src":"18869:7:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"id":14758,"initialValue":{"expression":{"id":14756,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14741,"src":"18889:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14757,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18894:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":14413,"src":"18889:11:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"nodeType":"VariableDeclarationStatement","src":"18869:31:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":14761,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14759,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14750,"src":"18974:7:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":14760,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14722,"src":"18984:3:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"18974:13:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14766,"nodeType":"IfStatement","src":"18970:89:46","trueBody":{"id":14765,"nodeType":"Block","src":"18989:70:46","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14762,"name":"CheckpointUnorderedInsertion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13356,"src":"19014:28:46","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":14763,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19014:30:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14764,"nodeType":"RevertStatement","src":"19007:37:46"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":14769,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14767,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14750,"src":"19122:7:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":14768,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14722,"src":"19133:3:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"19122:14:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14786,"nodeType":"Block","src":"19196:85:46","statements":[{"expression":{"arguments":[{"arguments":[{"id":14781,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14722,"src":"19245:3:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":14782,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14724,"src":"19258:5:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":14780,"name":"Checkpoint160","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14414,"src":"19224:13:46","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Checkpoint160_$14414_storage_ptr_$","typeString":"type(struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14783,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["19239:4:46","19250:6:46"],"names":["_key","_value"],"nodeType":"FunctionCall","src":"19224:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_memory_ptr","typeString":"struct Checkpoints.Checkpoint160 memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Checkpoint160_$14414_memory_ptr","typeString":"struct Checkpoints.Checkpoint160 memory"}],"expression":{"id":14777,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14720,"src":"19214:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"}},"id":14779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19219:4:46","memberName":"push","nodeType":"MemberAccess","src":"19214:9:46","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr_$_t_struct$_Checkpoint160_$14414_storage_$returns$__$attached_to$_t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,struct Checkpoints.Checkpoint160 storage ref)"}},"id":14784,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19214:52:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14785,"nodeType":"ExpressionStatement","src":"19214:52:46"}]},"id":14787,"nodeType":"IfStatement","src":"19118:163:46","trueBody":{"id":14776,"nodeType":"Block","src":"19138:52:46","statements":[{"expression":{"id":14774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14770,"name":"last","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14741,"src":"19156:4:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14772,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"19161:6:46","memberName":"_value","nodeType":"MemberAccess","referencedDeclaration":14413,"src":"19156:11:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14773,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14724,"src":"19170:5:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"src":"19156:19:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"id":14775,"nodeType":"ExpressionStatement","src":"19156:19:46"}]}},{"expression":{"components":[{"id":14788,"name":"lastValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14755,"src":"19302:9:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},{"id":14789,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14724,"src":"19313:5:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"id":14790,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"19301:18:46","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint160_$_t_uint160_$","typeString":"tuple(uint160,uint160)"}},"functionReturnParameters":14730,"id":14791,"nodeType":"Return","src":"19294:25:46"}]}}]},"documentation":{"id":14716,"nodeType":"StructuredDocumentation","src":"18358:165:46","text":" @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint,\n or by updating the last one."},"id":14809,"implemented":true,"kind":"function","modifiers":[],"name":"_insert","nameLocation":"18537:7:46","nodeType":"FunctionDefinition","parameters":{"id":14725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14720,"mutability":"mutable","name":"self","nameLocation":"18578:4:46","nodeType":"VariableDeclaration","scope":14809,"src":"18554:28:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"},"typeName":{"baseType":{"id":14718,"nodeType":"UserDefinedTypeName","pathNode":{"id":14717,"name":"Checkpoint160","nameLocations":["18554:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":14414,"src":"18554:13:46"},"referencedDeclaration":14414,"src":"18554:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"id":14719,"nodeType":"ArrayTypeName","src":"18554:15:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"}},"visibility":"internal"},{"constant":false,"id":14722,"mutability":"mutable","name":"key","nameLocation":"18599:3:46","nodeType":"VariableDeclaration","scope":14809,"src":"18592:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14721,"name":"uint96","nodeType":"ElementaryTypeName","src":"18592:6:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":14724,"mutability":"mutable","name":"value","nameLocation":"18620:5:46","nodeType":"VariableDeclaration","scope":14809,"src":"18612:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14723,"name":"uint160","nodeType":"ElementaryTypeName","src":"18612:7:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"18544:87:46"},"returnParameters":{"id":14730,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14727,"mutability":"mutable","name":"oldValue","nameLocation":"18657:8:46","nodeType":"VariableDeclaration","scope":14809,"src":"18649:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14726,"name":"uint160","nodeType":"ElementaryTypeName","src":"18649:7:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"},{"constant":false,"id":14729,"mutability":"mutable","name":"newValue","nameLocation":"18675:8:46","nodeType":"VariableDeclaration","scope":14809,"src":"18667:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":14728,"name":"uint160","nodeType":"ElementaryTypeName","src":"18667:7:46","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"18648:36:46"},"scope":14929,"src":"18528:922:46","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":14860,"nodeType":"Block","src":"19966:267:46","statements":[{"body":{"id":14856,"nodeType":"Block","src":"19995:211:46","statements":[{"assignments":[14829],"declarations":[{"constant":false,"id":14829,"mutability":"mutable","name":"mid","nameLocation":"20017:3:46","nodeType":"VariableDeclaration","scope":14856,"src":"20009:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14828,"name":"uint256","nodeType":"ElementaryTypeName","src":"20009:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14835,"initialValue":{"arguments":[{"id":14832,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14818,"src":"20036:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14833,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14820,"src":"20041:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14830,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11439,"src":"20023:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$11439_$","typeString":"type(library Math)"}},"id":14831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20028:7:46","memberName":"average","nodeType":"MemberAccess","referencedDeclaration":10168,"src":"20023:12:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":14834,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20023:23:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"20009:37:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":14842,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":14837,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14814,"src":"20078:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"}},{"id":14838,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14829,"src":"20084:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14836,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":14928,"src":"20064:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$14414_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14839,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20064:24:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14840,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20089:4:46","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":14411,"src":"20064:29:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":14841,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14816,"src":"20096:3:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"20064:35:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14854,"nodeType":"Block","src":"20150:46:46","statements":[{"expression":{"id":14852,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14848,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14818,"src":"20168:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14851,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14849,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14829,"src":"20174:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14850,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20180:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"20174:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20168:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14853,"nodeType":"ExpressionStatement","src":"20168:13:46"}]},"id":14855,"nodeType":"IfStatement","src":"20060:136:46","trueBody":{"id":14847,"nodeType":"Block","src":"20101:43:46","statements":[{"expression":{"id":14845,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14843,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14820,"src":"20119:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14844,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14829,"src":"20126:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20119:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14846,"nodeType":"ExpressionStatement","src":"20119:10:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14827,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14825,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14818,"src":"19983:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":14826,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14820,"src":"19989:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19983:10:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14857,"nodeType":"WhileStatement","src":"19976:230:46"},{"expression":{"id":14858,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14820,"src":"20222:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14824,"id":14859,"nodeType":"Return","src":"20215:11:46"}]},"documentation":{"id":14810,"nodeType":"StructuredDocumentation","src":"19456:339:46","text":" @dev Return the index of the first (oldest) checkpoint with key strictly bigger than the search key, or `high`\n if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n `high`.\n WARNING: `high` should not be greater than the array's length."},"id":14861,"implemented":true,"kind":"function","modifiers":[],"name":"_upperBinaryLookup","nameLocation":"19809:18:46","nodeType":"FunctionDefinition","parameters":{"id":14821,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14814,"mutability":"mutable","name":"self","nameLocation":"19861:4:46","nodeType":"VariableDeclaration","scope":14861,"src":"19837:28:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"},"typeName":{"baseType":{"id":14812,"nodeType":"UserDefinedTypeName","pathNode":{"id":14811,"name":"Checkpoint160","nameLocations":["19837:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":14414,"src":"19837:13:46"},"referencedDeclaration":14414,"src":"19837:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"id":14813,"nodeType":"ArrayTypeName","src":"19837:15:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"}},"visibility":"internal"},{"constant":false,"id":14816,"mutability":"mutable","name":"key","nameLocation":"19882:3:46","nodeType":"VariableDeclaration","scope":14861,"src":"19875:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14815,"name":"uint96","nodeType":"ElementaryTypeName","src":"19875:6:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":14818,"mutability":"mutable","name":"low","nameLocation":"19903:3:46","nodeType":"VariableDeclaration","scope":14861,"src":"19895:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14817,"name":"uint256","nodeType":"ElementaryTypeName","src":"19895:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14820,"mutability":"mutable","name":"high","nameLocation":"19924:4:46","nodeType":"VariableDeclaration","scope":14861,"src":"19916:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14819,"name":"uint256","nodeType":"ElementaryTypeName","src":"19916:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19827:107:46"},"returnParameters":{"id":14824,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14823,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14861,"src":"19957:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14822,"name":"uint256","nodeType":"ElementaryTypeName","src":"19957:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19956:9:46"},"scope":14929,"src":"19800:433:46","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":14912,"nodeType":"Block","src":"20750:267:46","statements":[{"body":{"id":14908,"nodeType":"Block","src":"20779:211:46","statements":[{"assignments":[14881],"declarations":[{"constant":false,"id":14881,"mutability":"mutable","name":"mid","nameLocation":"20801:3:46","nodeType":"VariableDeclaration","scope":14908,"src":"20793:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14880,"name":"uint256","nodeType":"ElementaryTypeName","src":"20793:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14887,"initialValue":{"arguments":[{"id":14884,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14870,"src":"20820:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14885,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14872,"src":"20825:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14882,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11439,"src":"20807:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$11439_$","typeString":"type(library Math)"}},"id":14883,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20812:7:46","memberName":"average","nodeType":"MemberAccess","referencedDeclaration":10168,"src":"20807:12:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":14886,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20807:23:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"20793:37:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint96","typeString":"uint96"},"id":14894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":14889,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14866,"src":"20862:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"}},{"id":14890,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14881,"src":"20868:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage ref[] storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14888,"name":"_unsafeAccess","nodeType":"Identifier","overloadedDeclarations":[13880,14404,14928],"referencedDeclaration":14928,"src":"20848:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr_$_t_uint256_$returns$_t_struct$_Checkpoint160_$14414_storage_ptr_$","typeString":"function (struct Checkpoints.Checkpoint160 storage ref[] storage pointer,uint256) pure returns (struct Checkpoints.Checkpoint160 storage pointer)"}},"id":14891,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20848:24:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160 storage pointer"}},"id":14892,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20873:4:46","memberName":"_key","nodeType":"MemberAccess","referencedDeclaration":14411,"src":"20848:29:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":14893,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14868,"src":"20880:3:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"20848:35:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":14906,"nodeType":"Block","src":"20937:43:46","statements":[{"expression":{"id":14904,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14902,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14872,"src":"20955:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14903,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14881,"src":"20962:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20955:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14905,"nodeType":"ExpressionStatement","src":"20955:10:46"}]},"id":14907,"nodeType":"IfStatement","src":"20844:136:46","trueBody":{"id":14901,"nodeType":"Block","src":"20885:46:46","statements":[{"expression":{"id":14899,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14895,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14870,"src":"20903:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14898,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14896,"name":"mid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14881,"src":"20909:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14897,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20915:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"20909:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20903:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14900,"nodeType":"ExpressionStatement","src":"20903:13:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14877,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14870,"src":"20767:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":14878,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14872,"src":"20773:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20767:10:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14909,"nodeType":"WhileStatement","src":"20760:230:46"},{"expression":{"id":14910,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14872,"src":"21006:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":14876,"id":14911,"nodeType":"Return","src":"20999:11:46"}]},"documentation":{"id":14862,"nodeType":"StructuredDocumentation","src":"20239:340:46","text":" @dev Return the index of the first (oldest) checkpoint with key greater or equal than the search key, or `high`\n if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive\n `high`.\n WARNING: `high` should not be greater than the array's length."},"id":14913,"implemented":true,"kind":"function","modifiers":[],"name":"_lowerBinaryLookup","nameLocation":"20593:18:46","nodeType":"FunctionDefinition","parameters":{"id":14873,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14866,"mutability":"mutable","name":"self","nameLocation":"20645:4:46","nodeType":"VariableDeclaration","scope":14913,"src":"20621:28:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"},"typeName":{"baseType":{"id":14864,"nodeType":"UserDefinedTypeName","pathNode":{"id":14863,"name":"Checkpoint160","nameLocations":["20621:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":14414,"src":"20621:13:46"},"referencedDeclaration":14414,"src":"20621:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"id":14865,"nodeType":"ArrayTypeName","src":"20621:15:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"}},"visibility":"internal"},{"constant":false,"id":14868,"mutability":"mutable","name":"key","nameLocation":"20666:3:46","nodeType":"VariableDeclaration","scope":14913,"src":"20659:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14867,"name":"uint96","nodeType":"ElementaryTypeName","src":"20659:6:46","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":14870,"mutability":"mutable","name":"low","nameLocation":"20687:3:46","nodeType":"VariableDeclaration","scope":14913,"src":"20679:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14869,"name":"uint256","nodeType":"ElementaryTypeName","src":"20679:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14872,"mutability":"mutable","name":"high","nameLocation":"20708:4:46","nodeType":"VariableDeclaration","scope":14913,"src":"20700:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14871,"name":"uint256","nodeType":"ElementaryTypeName","src":"20700:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20611:107:46"},"returnParameters":{"id":14876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14875,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14913,"src":"20741:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14874,"name":"uint256","nodeType":"ElementaryTypeName","src":"20741:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20740:9:46"},"scope":14929,"src":"20584:433:46","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":14927,"nodeType":"Block","src":"21300:125:46","statements":[{"AST":{"nodeType":"YulBlock","src":"21319:100:46","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21340:1:46","type":"","value":"0"},{"name":"self.slot","nodeType":"YulIdentifier","src":"21343:9:46"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21333:6:46"},"nodeType":"YulFunctionCall","src":"21333:20:46"},"nodeType":"YulExpressionStatement","src":"21333:20:46"},{"nodeType":"YulAssignment","src":"21366:43:46","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21395:1:46","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"21398:4:46","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"21385:9:46"},"nodeType":"YulFunctionCall","src":"21385:18:46"},{"name":"pos","nodeType":"YulIdentifier","src":"21405:3:46"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21381:3:46"},"nodeType":"YulFunctionCall","src":"21381:28:46"},"variableNames":[{"name":"result.slot","nodeType":"YulIdentifier","src":"21366:11:46"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":14920,"isOffset":false,"isSlot":false,"src":"21405:3:46","valueSize":1},{"declaration":14924,"isOffset":false,"isSlot":true,"src":"21366:11:46","suffix":"slot","valueSize":1},{"declaration":14918,"isOffset":false,"isSlot":true,"src":"21343:9:46","suffix":"slot","valueSize":1}],"id":14926,"nodeType":"InlineAssembly","src":"21310:109:46"}]},"documentation":{"id":14914,"nodeType":"StructuredDocumentation","src":"21023:132:46","text":" @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds."},"id":14928,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeAccess","nameLocation":"21169:13:46","nodeType":"FunctionDefinition","parameters":{"id":14921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14918,"mutability":"mutable","name":"self","nameLocation":"21216:4:46","nodeType":"VariableDeclaration","scope":14928,"src":"21192:28:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"},"typeName":{"baseType":{"id":14916,"nodeType":"UserDefinedTypeName","pathNode":{"id":14915,"name":"Checkpoint160","nameLocations":["21192:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":14414,"src":"21192:13:46"},"referencedDeclaration":14414,"src":"21192:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"id":14917,"nodeType":"ArrayTypeName","src":"21192:15:46","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Checkpoint160_$14414_storage_$dyn_storage_ptr","typeString":"struct Checkpoints.Checkpoint160[]"}},"visibility":"internal"},{"constant":false,"id":14920,"mutability":"mutable","name":"pos","nameLocation":"21238:3:46","nodeType":"VariableDeclaration","scope":14928,"src":"21230:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14919,"name":"uint256","nodeType":"ElementaryTypeName","src":"21230:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21182:65:46"},"returnParameters":{"id":14925,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14924,"mutability":"mutable","name":"result","nameLocation":"21292:6:46","nodeType":"VariableDeclaration","scope":14928,"src":"21270:28:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"},"typeName":{"id":14923,"nodeType":"UserDefinedTypeName","pathNode":{"id":14922,"name":"Checkpoint160","nameLocations":["21270:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":14414,"src":"21270:13:46"},"referencedDeclaration":14414,"src":"21270:13:46","typeDescriptions":{"typeIdentifier":"t_struct$_Checkpoint160_$14414_storage_ptr","typeString":"struct Checkpoints.Checkpoint160"}},"visibility":"internal"}],"src":"21269:30:46"},"scope":14929,"src":"21160:265:46","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":14930,"src":"668:20759:46","usedErrors":[13356],"usedEvents":[]}],"src":"201:21227:46"},"id":46},"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol","exportedSymbols":{"DoubleEndedQueue":[15284],"Panic":[7270]},"id":15285,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":14931,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"117:24:47"},{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","file":"../Panic.sol","id":14933,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15285,"sourceUnit":7271,"src":"143:35:47","symbolAliases":[{"foreign":{"id":14932,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"151:5:47","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"DoubleEndedQueue","contractDependencies":[],"contractKind":"library","documentation":{"id":14934,"nodeType":"StructuredDocumentation","src":"180:638:47","text":" @dev A sequence of items with the ability to efficiently push and pop items (i.e. insert and remove) on both ends of\n the sequence (called front and back). Among other access patterns, it can be used to implement efficient LIFO and\n FIFO queues. Storage use is optimized, and all operations are O(1) constant time. This includes {clear}, given that\n the existing queue contents are left in storage.\n The struct is called `Bytes32Deque`. Other types can be cast to and from `bytes32`. This data structure can only be\n used in storage, and not in memory.\n ```solidity\n DoubleEndedQueue.Bytes32Deque queue;\n ```"},"fullyImplemented":true,"id":15284,"linearizedBaseContracts":[15284],"name":"DoubleEndedQueue","nameLocation":"827:16:47","nodeType":"ContractDefinition","nodes":[{"canonicalName":"DoubleEndedQueue.Bytes32Deque","documentation":{"id":14935,"nodeType":"StructuredDocumentation","src":"850:513:47","text":" @dev Indices are 128 bits so begin and end are packed in a single storage slot for efficient access.\n Struct members have an underscore prefix indicating that they are \"private\" and should not be read or written to\n directly. Use the functions provided below instead. Modifying the struct manually may violate assumptions and\n lead to unexpected behavior.\n The first item is at data[begin] and the last item is at data[end - 1]. This range can wrap around."},"id":14944,"members":[{"constant":false,"id":14937,"mutability":"mutable","name":"_begin","nameLocation":"1406:6:47","nodeType":"VariableDeclaration","scope":14944,"src":"1398:14:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":14936,"name":"uint128","nodeType":"ElementaryTypeName","src":"1398:7:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":14939,"mutability":"mutable","name":"_end","nameLocation":"1430:4:47","nodeType":"VariableDeclaration","scope":14944,"src":"1422:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":14938,"name":"uint128","nodeType":"ElementaryTypeName","src":"1422:7:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":14943,"mutability":"mutable","name":"_data","nameLocation":"1478:5:47","nodeType":"VariableDeclaration","scope":14944,"src":"1444:39:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"},"typeName":{"id":14942,"keyName":"index","keyNameLocation":"1460:5:47","keyType":{"id":14940,"name":"uint128","nodeType":"ElementaryTypeName","src":"1452:7:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Mapping","src":"1444:33:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":14941,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1469:7:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},"visibility":"internal"}],"name":"Bytes32Deque","nameLocation":"1375:12:47","nodeType":"StructDefinition","scope":15284,"src":"1368:122:47","visibility":"public"},{"body":{"id":14989,"nodeType":"Block","src":"1707:247:47","statements":[{"id":14988,"nodeType":"UncheckedBlock","src":"1717:231:47","statements":[{"assignments":[14954],"declarations":[{"constant":false,"id":14954,"mutability":"mutable","name":"backIndex","nameLocation":"1749:9:47","nodeType":"VariableDeclaration","scope":14988,"src":"1741:17:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":14953,"name":"uint128","nodeType":"ElementaryTypeName","src":"1741:7:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":14957,"initialValue":{"expression":{"id":14955,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14948,"src":"1761:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14956,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1767:4:47","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14939,"src":"1761:10:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"1741:30:47"},{"condition":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14963,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14960,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14958,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14954,"src":"1789:9:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14959,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1801:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1789:13:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14961,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14948,"src":"1806:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14962,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1812:6:47","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14937,"src":"1806:12:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"1789:29:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14971,"nodeType":"IfStatement","src":"1785:68:47","trueBody":{"expression":{"arguments":[{"expression":{"id":14967,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"1832:5:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":14968,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1838:14:47","memberName":"RESOURCE_ERROR","nodeType":"MemberAccess","referencedDeclaration":7257,"src":"1832:20:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14964,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"1820:5:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":14966,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1826:5:47","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":7269,"src":"1820:11:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":14969,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1820:33:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14970,"nodeType":"ExpressionStatement","src":"1820:33:47"}},{"expression":{"id":14978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":14972,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14948,"src":"1867:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14975,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1873:5:47","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14943,"src":"1867:11:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":14976,"indexExpression":{"id":14974,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14954,"src":"1879:9:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1867:22:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":14977,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14950,"src":"1892:5:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"1867:30:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":14979,"nodeType":"ExpressionStatement","src":"1867:30:47"},{"expression":{"id":14986,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14980,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14948,"src":"1911:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":14982,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1917:4:47","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14939,"src":"1911:10:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":14985,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14983,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14954,"src":"1924:9:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":14984,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1936:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1924:13:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"1911:26:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":14987,"nodeType":"ExpressionStatement","src":"1911:26:47"}]}]},"documentation":{"id":14945,"nodeType":"StructuredDocumentation","src":"1496:136:47","text":" @dev Inserts an item at the end of the queue.\n Reverts with {Panic-RESOURCE_ERROR} if the queue is full."},"id":14990,"implemented":true,"kind":"function","modifiers":[],"name":"pushBack","nameLocation":"1646:8:47","nodeType":"FunctionDefinition","parameters":{"id":14951,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14948,"mutability":"mutable","name":"deque","nameLocation":"1676:5:47","nodeType":"VariableDeclaration","scope":14990,"src":"1655:26:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14947,"nodeType":"UserDefinedTypeName","pathNode":{"id":14946,"name":"Bytes32Deque","nameLocations":["1655:12:47"],"nodeType":"IdentifierPath","referencedDeclaration":14944,"src":"1655:12:47"},"referencedDeclaration":14944,"src":"1655:12:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"},{"constant":false,"id":14950,"mutability":"mutable","name":"value","nameLocation":"1691:5:47","nodeType":"VariableDeclaration","scope":14990,"src":"1683:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14949,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1683:7:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1654:43:47"},"returnParameters":{"id":14952,"nodeType":"ParameterList","parameters":[],"src":"1707:0:47"},"scope":15284,"src":"1637:317:47","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":15039,"nodeType":"Block","src":"2197:308:47","statements":[{"id":15038,"nodeType":"UncheckedBlock","src":"2207:292:47","statements":[{"assignments":[15000],"declarations":[{"constant":false,"id":15000,"mutability":"mutable","name":"backIndex","nameLocation":"2239:9:47","nodeType":"VariableDeclaration","scope":15038,"src":"2231:17:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":14999,"name":"uint128","nodeType":"ElementaryTypeName","src":"2231:7:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":15003,"initialValue":{"expression":{"id":15001,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14994,"src":"2251:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15002,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2257:4:47","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14939,"src":"2251:10:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"2231:30:47"},{"condition":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":15007,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15004,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15000,"src":"2279:9:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":15005,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14994,"src":"2292:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15006,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2298:6:47","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14937,"src":"2292:12:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"2279:25:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15015,"nodeType":"IfStatement","src":"2275:65:47","trueBody":{"expression":{"arguments":[{"expression":{"id":15011,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"2318:5:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":15012,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2324:15:47","memberName":"EMPTY_ARRAY_POP","nodeType":"MemberAccess","referencedDeclaration":7249,"src":"2318:21:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15008,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"2306:5:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":15010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2312:5:47","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":7269,"src":"2306:11:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":15013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2306:34:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15014,"nodeType":"ExpressionStatement","src":"2306:34:47"}},{"expression":{"id":15017,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"2354:11:47","subExpression":{"id":15016,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15000,"src":"2356:9:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":15018,"nodeType":"ExpressionStatement","src":"2354:11:47"},{"expression":{"id":15024,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15019,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14997,"src":"2379:5:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"expression":{"id":15020,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14994,"src":"2387:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15021,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2393:5:47","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14943,"src":"2387:11:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":15023,"indexExpression":{"id":15022,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15000,"src":"2399:9:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2387:22:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2379:30:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15025,"nodeType":"ExpressionStatement","src":"2379:30:47"},{"expression":{"id":15030,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"2423:29:47","subExpression":{"baseExpression":{"expression":{"id":15026,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14994,"src":"2430:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15027,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2436:5:47","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14943,"src":"2430:11:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":15029,"indexExpression":{"id":15028,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15000,"src":"2442:9:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2430:22:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15031,"nodeType":"ExpressionStatement","src":"2423:29:47"},{"expression":{"id":15036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":15032,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14994,"src":"2466:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15034,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2472:4:47","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14939,"src":"2466:10:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":15035,"name":"backIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15000,"src":"2479:9:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"2466:22:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":15037,"nodeType":"ExpressionStatement","src":"2466:22:47"}]}]},"documentation":{"id":14991,"nodeType":"StructuredDocumentation","src":"1960:154:47","text":" @dev Removes the item at the end of the queue and returns it.\n Reverts with {Panic-EMPTY_ARRAY_POP} if the queue is empty."},"id":15040,"implemented":true,"kind":"function","modifiers":[],"name":"popBack","nameLocation":"2128:7:47","nodeType":"FunctionDefinition","parameters":{"id":14995,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14994,"mutability":"mutable","name":"deque","nameLocation":"2157:5:47","nodeType":"VariableDeclaration","scope":15040,"src":"2136:26:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":14993,"nodeType":"UserDefinedTypeName","pathNode":{"id":14992,"name":"Bytes32Deque","nameLocations":["2136:12:47"],"nodeType":"IdentifierPath","referencedDeclaration":14944,"src":"2136:12:47"},"referencedDeclaration":14944,"src":"2136:12:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"2135:28:47"},"returnParameters":{"id":14998,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14997,"mutability":"mutable","name":"value","nameLocation":"2190:5:47","nodeType":"VariableDeclaration","scope":15040,"src":"2182:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14996,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2182:7:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2181:15:47"},"scope":15284,"src":"2119:386:47","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":15083,"nodeType":"Block","src":"2729:249:47","statements":[{"id":15082,"nodeType":"UncheckedBlock","src":"2739:233:47","statements":[{"assignments":[15050],"declarations":[{"constant":false,"id":15050,"mutability":"mutable","name":"frontIndex","nameLocation":"2771:10:47","nodeType":"VariableDeclaration","scope":15082,"src":"2763:18:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":15049,"name":"uint128","nodeType":"ElementaryTypeName","src":"2763:7:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":15055,"initialValue":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":15054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15051,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15044,"src":"2784:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15052,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2790:6:47","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14937,"src":"2784:12:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":15053,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2799:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2784:16:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"2763:37:47"},{"condition":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":15059,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15056,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15050,"src":"2818:10:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":15057,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15044,"src":"2832:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15058,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2838:4:47","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14939,"src":"2832:10:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"2818:24:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15067,"nodeType":"IfStatement","src":"2814:63:47","trueBody":{"expression":{"arguments":[{"expression":{"id":15063,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"2856:5:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":15064,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2862:14:47","memberName":"RESOURCE_ERROR","nodeType":"MemberAccess","referencedDeclaration":7257,"src":"2856:20:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15060,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"2844:5:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":15062,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2850:5:47","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":7269,"src":"2844:11:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":15065,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2844:33:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15066,"nodeType":"ExpressionStatement","src":"2844:33:47"}},{"expression":{"id":15074,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":15068,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15044,"src":"2891:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15071,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2897:5:47","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14943,"src":"2891:11:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":15072,"indexExpression":{"id":15070,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15050,"src":"2903:10:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2891:23:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":15073,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15046,"src":"2917:5:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2891:31:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15075,"nodeType":"ExpressionStatement","src":"2891:31:47"},{"expression":{"id":15080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":15076,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15044,"src":"2936:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15078,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2942:6:47","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14937,"src":"2936:12:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":15079,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15050,"src":"2951:10:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"2936:25:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":15081,"nodeType":"ExpressionStatement","src":"2936:25:47"}]}]},"documentation":{"id":15041,"nodeType":"StructuredDocumentation","src":"2511:142:47","text":" @dev Inserts an item at the beginning of the queue.\n Reverts with {Panic-RESOURCE_ERROR} if the queue is full."},"id":15084,"implemented":true,"kind":"function","modifiers":[],"name":"pushFront","nameLocation":"2667:9:47","nodeType":"FunctionDefinition","parameters":{"id":15047,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15044,"mutability":"mutable","name":"deque","nameLocation":"2698:5:47","nodeType":"VariableDeclaration","scope":15084,"src":"2677:26:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":15043,"nodeType":"UserDefinedTypeName","pathNode":{"id":15042,"name":"Bytes32Deque","nameLocations":["2677:12:47"],"nodeType":"IdentifierPath","referencedDeclaration":14944,"src":"2677:12:47"},"referencedDeclaration":14944,"src":"2677:12:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"},{"constant":false,"id":15046,"mutability":"mutable","name":"value","nameLocation":"2713:5:47","nodeType":"VariableDeclaration","scope":15084,"src":"2705:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15045,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2705:7:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2676:43:47"},"returnParameters":{"id":15048,"nodeType":"ParameterList","parameters":[],"src":"2729:0:47"},"scope":15284,"src":"2658:320:47","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":15132,"nodeType":"Block","src":"3228:294:47","statements":[{"id":15131,"nodeType":"UncheckedBlock","src":"3238:278:47","statements":[{"assignments":[15094],"declarations":[{"constant":false,"id":15094,"mutability":"mutable","name":"frontIndex","nameLocation":"3270:10:47","nodeType":"VariableDeclaration","scope":15131,"src":"3262:18:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":15093,"name":"uint128","nodeType":"ElementaryTypeName","src":"3262:7:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":15097,"initialValue":{"expression":{"id":15095,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15088,"src":"3283:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15096,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3289:6:47","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14937,"src":"3283:12:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"3262:33:47"},{"condition":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":15101,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15098,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15094,"src":"3313:10:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":15099,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15088,"src":"3327:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15100,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3333:4:47","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14939,"src":"3327:10:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"3313:24:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15109,"nodeType":"IfStatement","src":"3309:64:47","trueBody":{"expression":{"arguments":[{"expression":{"id":15105,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"3351:5:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":15106,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3357:15:47","memberName":"EMPTY_ARRAY_POP","nodeType":"MemberAccess","referencedDeclaration":7249,"src":"3351:21:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15102,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"3339:5:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":15104,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3345:5:47","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":7269,"src":"3339:11:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":15107,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3339:34:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15108,"nodeType":"ExpressionStatement","src":"3339:34:47"}},{"expression":{"id":15115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15110,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15091,"src":"3387:5:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"expression":{"id":15111,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15088,"src":"3395:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15112,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3401:5:47","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14943,"src":"3395:11:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":15114,"indexExpression":{"id":15113,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15094,"src":"3407:10:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3395:23:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3387:31:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15116,"nodeType":"ExpressionStatement","src":"3387:31:47"},{"expression":{"id":15121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"3432:30:47","subExpression":{"baseExpression":{"expression":{"id":15117,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15088,"src":"3439:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15118,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3445:5:47","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14943,"src":"3439:11:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":15120,"indexExpression":{"id":15119,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15094,"src":"3451:10:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"3439:23:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15122,"nodeType":"ExpressionStatement","src":"3432:30:47"},{"expression":{"id":15129,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":15123,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15088,"src":"3476:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15125,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3482:6:47","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14937,"src":"3476:12:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":15128,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15126,"name":"frontIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15094,"src":"3491:10:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":15127,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3504:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3491:14:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"3476:29:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":15130,"nodeType":"ExpressionStatement","src":"3476:29:47"}]}]},"documentation":{"id":15085,"nodeType":"StructuredDocumentation","src":"2984:160:47","text":" @dev Removes the item at the beginning of the queue and returns it.\n Reverts with {Panic-EMPTY_ARRAY_POP} if the queue is empty."},"id":15133,"implemented":true,"kind":"function","modifiers":[],"name":"popFront","nameLocation":"3158:8:47","nodeType":"FunctionDefinition","parameters":{"id":15089,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15088,"mutability":"mutable","name":"deque","nameLocation":"3188:5:47","nodeType":"VariableDeclaration","scope":15133,"src":"3167:26:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":15087,"nodeType":"UserDefinedTypeName","pathNode":{"id":15086,"name":"Bytes32Deque","nameLocations":["3167:12:47"],"nodeType":"IdentifierPath","referencedDeclaration":14944,"src":"3167:12:47"},"referencedDeclaration":14944,"src":"3167:12:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"3166:28:47"},"returnParameters":{"id":15092,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15091,"mutability":"mutable","name":"value","nameLocation":"3221:5:47","nodeType":"VariableDeclaration","scope":15133,"src":"3213:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15090,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3213:7:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3212:15:47"},"scope":15284,"src":"3149:373:47","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":15159,"nodeType":"Block","src":"3763:115:47","statements":[{"condition":{"arguments":[{"id":15143,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15137,"src":"3783:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}],"id":15142,"name":"empty","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15283,"src":"3777:5:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Bytes32Deque_$14944_storage_ptr_$returns$_t_bool_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer) view returns (bool)"}},"id":15144,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3777:12:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15152,"nodeType":"IfStatement","src":"3773:56:47","trueBody":{"expression":{"arguments":[{"expression":{"id":15148,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"3803:5:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":15149,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3809:19:47","memberName":"ARRAY_OUT_OF_BOUNDS","nodeType":"MemberAccess","referencedDeclaration":7253,"src":"3803:25:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15145,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"3791:5:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":15147,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3797:5:47","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":7269,"src":"3791:11:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":15150,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3791:38:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15151,"nodeType":"ExpressionStatement","src":"3791:38:47"}},{"expression":{"baseExpression":{"expression":{"id":15153,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15137,"src":"3846:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15154,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3852:5:47","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14943,"src":"3846:11:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":15157,"indexExpression":{"expression":{"id":15155,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15137,"src":"3858:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15156,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3864:6:47","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14937,"src":"3858:12:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3846:25:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":15141,"id":15158,"nodeType":"Return","src":"3839:32:47"}]},"documentation":{"id":15134,"nodeType":"StructuredDocumentation","src":"3528:149:47","text":" @dev Returns the item at the beginning of the queue.\n Reverts with {Panic-ARRAY_OUT_OF_BOUNDS} if the queue is empty."},"id":15160,"implemented":true,"kind":"function","modifiers":[],"name":"front","nameLocation":"3691:5:47","nodeType":"FunctionDefinition","parameters":{"id":15138,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15137,"mutability":"mutable","name":"deque","nameLocation":"3718:5:47","nodeType":"VariableDeclaration","scope":15160,"src":"3697:26:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":15136,"nodeType":"UserDefinedTypeName","pathNode":{"id":15135,"name":"Bytes32Deque","nameLocations":["3697:12:47"],"nodeType":"IdentifierPath","referencedDeclaration":14944,"src":"3697:12:47"},"referencedDeclaration":14944,"src":"3697:12:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"3696:28:47"},"returnParameters":{"id":15141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15140,"mutability":"mutable","name":"value","nameLocation":"3756:5:47","nodeType":"VariableDeclaration","scope":15160,"src":"3748:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15139,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3748:7:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3747:15:47"},"scope":15284,"src":"3682:196:47","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":15189,"nodeType":"Block","src":"4112:151:47","statements":[{"condition":{"arguments":[{"id":15170,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15164,"src":"4132:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}],"id":15169,"name":"empty","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15283,"src":"4126:5:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Bytes32Deque_$14944_storage_ptr_$returns$_t_bool_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer) view returns (bool)"}},"id":15171,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4126:12:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15179,"nodeType":"IfStatement","src":"4122:56:47","trueBody":{"expression":{"arguments":[{"expression":{"id":15175,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"4152:5:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":15176,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4158:19:47","memberName":"ARRAY_OUT_OF_BOUNDS","nodeType":"MemberAccess","referencedDeclaration":7253,"src":"4152:25:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15172,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"4140:5:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":15174,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4146:5:47","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":7269,"src":"4140:11:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":15177,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4140:38:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15178,"nodeType":"ExpressionStatement","src":"4140:38:47"}},{"id":15188,"nodeType":"UncheckedBlock","src":"4188:69:47","statements":[{"expression":{"baseExpression":{"expression":{"id":15180,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15164,"src":"4219:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15181,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4225:5:47","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14943,"src":"4219:11:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":15186,"indexExpression":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":15185,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15182,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15164,"src":"4231:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15183,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4237:4:47","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14939,"src":"4231:10:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":15184,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4244:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4231:14:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4219:27:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":15168,"id":15187,"nodeType":"Return","src":"4212:34:47"}]}]},"documentation":{"id":15161,"nodeType":"StructuredDocumentation","src":"3884:143:47","text":" @dev Returns the item at the end of the queue.\n Reverts with {Panic-ARRAY_OUT_OF_BOUNDS} if the queue is empty."},"id":15190,"implemented":true,"kind":"function","modifiers":[],"name":"back","nameLocation":"4041:4:47","nodeType":"FunctionDefinition","parameters":{"id":15165,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15164,"mutability":"mutable","name":"deque","nameLocation":"4067:5:47","nodeType":"VariableDeclaration","scope":15190,"src":"4046:26:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":15163,"nodeType":"UserDefinedTypeName","pathNode":{"id":15162,"name":"Bytes32Deque","nameLocations":["4046:12:47"],"nodeType":"IdentifierPath","referencedDeclaration":14944,"src":"4046:12:47"},"referencedDeclaration":14944,"src":"4046:12:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"4045:28:47"},"returnParameters":{"id":15168,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15167,"mutability":"mutable","name":"value","nameLocation":"4105:5:47","nodeType":"VariableDeclaration","scope":15190,"src":"4097:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15166,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4097:7:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4096:15:47"},"scope":15284,"src":"4032:231:47","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":15226,"nodeType":"Block","src":"4607:297:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15205,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15201,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15196,"src":"4621:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"arguments":[{"id":15203,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15194,"src":"4637:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}],"id":15202,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15267,"src":"4630:6:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Bytes32Deque_$14944_storage_ptr_$returns$_t_uint256_$","typeString":"function (struct DoubleEndedQueue.Bytes32Deque storage pointer) view returns (uint256)"}},"id":15204,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4630:13:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4621:22:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15213,"nodeType":"IfStatement","src":"4617:66:47","trueBody":{"expression":{"arguments":[{"expression":{"id":15209,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"4657:5:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":15210,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4663:19:47","memberName":"ARRAY_OUT_OF_BOUNDS","nodeType":"MemberAccess","referencedDeclaration":7253,"src":"4657:25:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15206,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7270,"src":"4645:5:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$7270_$","typeString":"type(library Panic)"}},"id":15208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4651:5:47","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":7269,"src":"4645:11:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":15211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4645:38:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15212,"nodeType":"ExpressionStatement","src":"4645:38:47"}},{"id":15225,"nodeType":"UncheckedBlock","src":"4814:84:47","statements":[{"expression":{"baseExpression":{"expression":{"id":15214,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15194,"src":"4845:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15215,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4851:5:47","memberName":"_data","nodeType":"MemberAccess","referencedDeclaration":14943,"src":"4845:11:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint128_$_t_bytes32_$","typeString":"mapping(uint128 => bytes32)"}},"id":15223,"indexExpression":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":15222,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15216,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15194,"src":"4857:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15217,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4863:6:47","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14937,"src":"4857:12:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"id":15220,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15196,"src":"4880:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15219,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4872:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":15218,"name":"uint128","nodeType":"ElementaryTypeName","src":"4872:7:47","typeDescriptions":{}}},"id":15221,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4872:14:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"4857:29:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4845:42:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":15200,"id":15224,"nodeType":"Return","src":"4838:49:47"}]}]},"documentation":{"id":15191,"nodeType":"StructuredDocumentation","src":"4269:240:47","text":" @dev Return the item at a position in the queue given by `index`, with the first item at 0 and last item at\n `length(deque) - 1`.\n Reverts with {Panic-ARRAY_OUT_OF_BOUNDS} if the index is out of bounds."},"id":15227,"implemented":true,"kind":"function","modifiers":[],"name":"at","nameLocation":"4523:2:47","nodeType":"FunctionDefinition","parameters":{"id":15197,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15194,"mutability":"mutable","name":"deque","nameLocation":"4547:5:47","nodeType":"VariableDeclaration","scope":15227,"src":"4526:26:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":15193,"nodeType":"UserDefinedTypeName","pathNode":{"id":15192,"name":"Bytes32Deque","nameLocations":["4526:12:47"],"nodeType":"IdentifierPath","referencedDeclaration":14944,"src":"4526:12:47"},"referencedDeclaration":14944,"src":"4526:12:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"},{"constant":false,"id":15196,"mutability":"mutable","name":"index","nameLocation":"4562:5:47","nodeType":"VariableDeclaration","scope":15227,"src":"4554:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15195,"name":"uint256","nodeType":"ElementaryTypeName","src":"4554:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4525:43:47"},"returnParameters":{"id":15200,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15199,"mutability":"mutable","name":"value","nameLocation":"4600:5:47","nodeType":"VariableDeclaration","scope":15227,"src":"4592:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15198,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4592:7:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4591:15:47"},"scope":15284,"src":"4514:390:47","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":15246,"nodeType":"Block","src":"5193:57:47","statements":[{"expression":{"id":15238,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":15234,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15231,"src":"5203:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15236,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5209:6:47","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14937,"src":"5203:12:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":15237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5218:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5203:16:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":15239,"nodeType":"ExpressionStatement","src":"5203:16:47"},{"expression":{"id":15244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":15240,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15231,"src":"5229:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15242,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5235:4:47","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14939,"src":"5229:10:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":15243,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5242:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5229:14:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":15245,"nodeType":"ExpressionStatement","src":"5229:14:47"}]},"documentation":{"id":15228,"nodeType":"StructuredDocumentation","src":"4910:226:47","text":" @dev Resets the queue back to being empty.\n NOTE: The current items are left behind in storage. This does not affect the functioning of the queue, but misses\n out on potential gas refunds."},"id":15247,"implemented":true,"kind":"function","modifiers":[],"name":"clear","nameLocation":"5150:5:47","nodeType":"FunctionDefinition","parameters":{"id":15232,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15231,"mutability":"mutable","name":"deque","nameLocation":"5177:5:47","nodeType":"VariableDeclaration","scope":15247,"src":"5156:26:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":15230,"nodeType":"UserDefinedTypeName","pathNode":{"id":15229,"name":"Bytes32Deque","nameLocations":["5156:12:47"],"nodeType":"IdentifierPath","referencedDeclaration":14944,"src":"5156:12:47"},"referencedDeclaration":14944,"src":"5156:12:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"5155:28:47"},"returnParameters":{"id":15233,"nodeType":"ParameterList","parameters":[],"src":"5193:0:47"},"scope":15284,"src":"5141:109:47","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":15266,"nodeType":"Block","src":"5402:92:47","statements":[{"id":15265,"nodeType":"UncheckedBlock","src":"5412:76:47","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":15262,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15258,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15251,"src":"5451:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15259,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5457:4:47","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14939,"src":"5451:10:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":15260,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15251,"src":"5464:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15261,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5470:6:47","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14937,"src":"5464:12:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"5451:25:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":15257,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5443:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15256,"name":"uint256","nodeType":"ElementaryTypeName","src":"5443:7:47","typeDescriptions":{}}},"id":15263,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5443:34:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15255,"id":15264,"nodeType":"Return","src":"5436:41:47"}]}]},"documentation":{"id":15248,"nodeType":"StructuredDocumentation","src":"5256:65:47","text":" @dev Returns the number of items in the queue."},"id":15267,"implemented":true,"kind":"function","modifiers":[],"name":"length","nameLocation":"5335:6:47","nodeType":"FunctionDefinition","parameters":{"id":15252,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15251,"mutability":"mutable","name":"deque","nameLocation":"5363:5:47","nodeType":"VariableDeclaration","scope":15267,"src":"5342:26:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":15250,"nodeType":"UserDefinedTypeName","pathNode":{"id":15249,"name":"Bytes32Deque","nameLocations":["5342:12:47"],"nodeType":"IdentifierPath","referencedDeclaration":14944,"src":"5342:12:47"},"referencedDeclaration":14944,"src":"5342:12:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"5341:28:47"},"returnParameters":{"id":15255,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15254,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15267,"src":"5393:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15253,"name":"uint256","nodeType":"ElementaryTypeName","src":"5393:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5392:9:47"},"scope":15284,"src":"5326:168:47","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":15282,"nodeType":"Block","src":"5636:50:47","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":15280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15276,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15271,"src":"5653:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15277,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5659:4:47","memberName":"_end","nodeType":"MemberAccess","referencedDeclaration":14939,"src":"5653:10:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":15278,"name":"deque","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15271,"src":"5667:5:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque storage pointer"}},"id":15279,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5673:6:47","memberName":"_begin","nodeType":"MemberAccess","referencedDeclaration":14937,"src":"5667:12:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"5653:26:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":15275,"id":15281,"nodeType":"Return","src":"5646:33:47"}]},"documentation":{"id":15268,"nodeType":"StructuredDocumentation","src":"5500:59:47","text":" @dev Returns true if the queue is empty."},"id":15283,"implemented":true,"kind":"function","modifiers":[],"name":"empty","nameLocation":"5573:5:47","nodeType":"FunctionDefinition","parameters":{"id":15272,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15271,"mutability":"mutable","name":"deque","nameLocation":"5600:5:47","nodeType":"VariableDeclaration","scope":15283,"src":"5579:26:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"},"typeName":{"id":15270,"nodeType":"UserDefinedTypeName","pathNode":{"id":15269,"name":"Bytes32Deque","nameLocations":["5579:12:47"],"nodeType":"IdentifierPath","referencedDeclaration":14944,"src":"5579:12:47"},"referencedDeclaration":14944,"src":"5579:12:47","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Deque_$14944_storage_ptr","typeString":"struct DoubleEndedQueue.Bytes32Deque"}},"visibility":"internal"}],"src":"5578:28:47"},"returnParameters":{"id":15275,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15274,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15283,"src":"5630:4:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15273,"name":"bool","nodeType":"ElementaryTypeName","src":"5630:4:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5629:6:47"},"scope":15284,"src":"5564:122:47","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":15285,"src":"819:4869:47","usedErrors":[],"usedEvents":[]}],"src":"117:5572:47"},"id":47},"@openzeppelin/contracts/utils/types/Time.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","exportedSymbols":{"Math":[11439],"SafeCast":[13204],"Time":[15558]},"id":15559,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":15286,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"104:24:48"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"../math/Math.sol","id":15288,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15559,"sourceUnit":11440,"src":"130:38:48","symbolAliases":[{"foreign":{"id":15287,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11439,"src":"138:4:48","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../math/SafeCast.sol","id":15290,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15559,"sourceUnit":13205,"src":"169:46:48","symbolAliases":[{"foreign":{"id":15289,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"177:8:48","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Time","contractDependencies":[],"contractKind":"library","documentation":{"id":15291,"nodeType":"StructuredDocumentation","src":"217:422:48","text":" @dev This library provides helpers for manipulating time-related objects.\n It uses the following types:\n - `uint48` for timepoints\n - `uint32` for durations\n While the library doesn't provide specific types for timepoints and duration, it does provide:\n - a `Delay` type to represent duration that can be programmed to change value automatically at a given point\n - additional helper functions"},"fullyImplemented":true,"id":15558,"linearizedBaseContracts":[15558],"name":"Time","nameLocation":"648:4:48","nodeType":"ContractDefinition","nodes":[{"global":false,"id":15293,"libraryName":{"id":15292,"name":"Time","nameLocations":["665:4:48"],"nodeType":"IdentifierPath","referencedDeclaration":15558,"src":"665:4:48"},"nodeType":"UsingForDirective","src":"659:17:48"},{"body":{"id":15305,"nodeType":"Block","src":"802:58:48","statements":[{"expression":{"arguments":[{"expression":{"id":15301,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967292,"src":"837:5:48","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":15302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"843:9:48","memberName":"timestamp","nodeType":"MemberAccess","src":"837:15:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15299,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"819:8:48","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":15300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"828:8:48","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":12194,"src":"819:17:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":15303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"819:34:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":15298,"id":15304,"nodeType":"Return","src":"812:41:48"}]},"documentation":{"id":15294,"nodeType":"StructuredDocumentation","src":"682:63:48","text":" @dev Get the block timestamp as a Timepoint."},"id":15306,"implemented":true,"kind":"function","modifiers":[],"name":"timestamp","nameLocation":"759:9:48","nodeType":"FunctionDefinition","parameters":{"id":15295,"nodeType":"ParameterList","parameters":[],"src":"768:2:48"},"returnParameters":{"id":15298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15297,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15306,"src":"794:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":15296,"name":"uint48","nodeType":"ElementaryTypeName","src":"794:6:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"793:8:48"},"scope":15558,"src":"750:110:48","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":15318,"nodeType":"Block","src":"985:55:48","statements":[{"expression":{"arguments":[{"expression":{"id":15314,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967292,"src":"1020:5:48","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":15315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1026:6:48","memberName":"number","nodeType":"MemberAccess","src":"1020:12:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15312,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13204,"src":"1002:8:48","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$13204_$","typeString":"type(library SafeCast)"}},"id":15313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1011:8:48","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":12194,"src":"1002:17:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":15316,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1002:31:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":15311,"id":15317,"nodeType":"Return","src":"995:38:48"}]},"documentation":{"id":15307,"nodeType":"StructuredDocumentation","src":"866:60:48","text":" @dev Get the block number as a Timepoint."},"id":15319,"implemented":true,"kind":"function","modifiers":[],"name":"blockNumber","nameLocation":"940:11:48","nodeType":"FunctionDefinition","parameters":{"id":15308,"nodeType":"ParameterList","parameters":[],"src":"951:2:48"},"returnParameters":{"id":15311,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15310,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15319,"src":"977:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":15309,"name":"uint48","nodeType":"ElementaryTypeName","src":"977:6:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"976:8:48"},"scope":15558,"src":"931:109:48","stateMutability":"view","virtual":false,"visibility":"internal"},{"canonicalName":"Time.Delay","id":15321,"name":"Delay","nameLocation":"2377:5:48","nodeType":"UserDefinedValueTypeDefinition","src":"2372:22:48","underlyingType":{"id":15320,"name":"uint112","nodeType":"ElementaryTypeName","src":"2386:7:48","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}},{"body":{"id":15335,"nodeType":"Block","src":"2572:44:48","statements":[{"expression":{"arguments":[{"id":15332,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15324,"src":"2600:8:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":15330,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15321,"src":"2589:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$15321_$","typeString":"type(Time.Delay)"}},"id":15331,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2595:4:48","memberName":"wrap","nodeType":"MemberAccess","src":"2589:10:48","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint112_$returns$_t_userDefinedValueType$_Delay_$15321_$","typeString":"function (uint112) pure returns (Time.Delay)"}},"id":15333,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2589:20:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"}},"functionReturnParameters":15329,"id":15334,"nodeType":"Return","src":"2582:27:48"}]},"documentation":{"id":15322,"nodeType":"StructuredDocumentation","src":"2400:103:48","text":" @dev Wrap a duration into a Delay to add the one-step \"update in the future\" feature"},"id":15336,"implemented":true,"kind":"function","modifiers":[],"name":"toDelay","nameLocation":"2517:7:48","nodeType":"FunctionDefinition","parameters":{"id":15325,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15324,"mutability":"mutable","name":"duration","nameLocation":"2532:8:48","nodeType":"VariableDeclaration","scope":15336,"src":"2525:15:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":15323,"name":"uint32","nodeType":"ElementaryTypeName","src":"2525:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2524:17:48"},"returnParameters":{"id":15329,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15328,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15336,"src":"2565:5:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"},"typeName":{"id":15327,"nodeType":"UserDefinedTypeName","pathNode":{"id":15326,"name":"Delay","nameLocations":["2565:5:48"],"nodeType":"IdentifierPath","referencedDeclaration":15321,"src":"2565:5:48"},"referencedDeclaration":15321,"src":"2565:5:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"2564:7:48"},"scope":15558,"src":"2508:108:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15373,"nodeType":"Block","src":"3016:159:48","statements":[{"expression":{"id":15358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":15351,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15345,"src":"3027:11:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":15352,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15347,"src":"3040:10:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":15353,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15349,"src":"3052:6:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":15354,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"3026:33:48","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":15355,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15340,"src":"3062:4:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"}},"id":15356,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3067:6:48","memberName":"unpack","nodeType":"MemberAccess","referencedDeclaration":15519,"src":"3062:11:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$15321_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$15321_$","typeString":"function (Time.Delay) pure returns (uint32,uint32,uint48)"}},"id":15357,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3062:13:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"src":"3026:49:48","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15359,"nodeType":"ExpressionStatement","src":"3026:49:48"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":15362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15360,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15349,"src":"3092:6:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":15361,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15342,"src":"3102:9:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"3092:19:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"components":[{"id":15367,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15345,"src":"3136:11:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":15368,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15347,"src":"3149:10:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":15369,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15349,"src":"3161:6:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":15370,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3135:33:48","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"id":15371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"3092:76:48","trueExpression":{"components":[{"id":15363,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15347,"src":"3115:10:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":15364,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3127:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":15365,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3130:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":15366,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3114:18:48","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_rational_0_by_1_$_t_rational_0_by_1_$","typeString":"tuple(uint32,int_const 0,int_const 0)"}},"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":15350,"id":15372,"nodeType":"Return","src":"3085:83:48"}]},"documentation":{"id":15337,"nodeType":"StructuredDocumentation","src":"2622:241:48","text":" @dev Get the value at a given timepoint plus the pending value and effect timepoint if there is a scheduled\n change after this timepoint. If the effect timepoint is 0, then the pending value should not be considered."},"id":15374,"implemented":true,"kind":"function","modifiers":[],"name":"_getFullAt","nameLocation":"2877:10:48","nodeType":"FunctionDefinition","parameters":{"id":15343,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15340,"mutability":"mutable","name":"self","nameLocation":"2903:4:48","nodeType":"VariableDeclaration","scope":15374,"src":"2897:10:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"},"typeName":{"id":15339,"nodeType":"UserDefinedTypeName","pathNode":{"id":15338,"name":"Delay","nameLocations":["2897:5:48"],"nodeType":"IdentifierPath","referencedDeclaration":15321,"src":"2897:5:48"},"referencedDeclaration":15321,"src":"2897:5:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":15342,"mutability":"mutable","name":"timepoint","nameLocation":"2924:9:48","nodeType":"VariableDeclaration","scope":15374,"src":"2917:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":15341,"name":"uint48","nodeType":"ElementaryTypeName","src":"2917:6:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2887:52:48"},"returnParameters":{"id":15350,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15345,"mutability":"mutable","name":"valueBefore","nameLocation":"2969:11:48","nodeType":"VariableDeclaration","scope":15374,"src":"2962:18:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":15344,"name":"uint32","nodeType":"ElementaryTypeName","src":"2962:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":15347,"mutability":"mutable","name":"valueAfter","nameLocation":"2989:10:48","nodeType":"VariableDeclaration","scope":15374,"src":"2982:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":15346,"name":"uint32","nodeType":"ElementaryTypeName","src":"2982:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":15349,"mutability":"mutable","name":"effect","nameLocation":"3008:6:48","nodeType":"VariableDeclaration","scope":15374,"src":"3001:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":15348,"name":"uint48","nodeType":"ElementaryTypeName","src":"3001:6:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2961:54:48"},"scope":15558,"src":"2868:307:48","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":15393,"nodeType":"Block","src":"3499:53:48","statements":[{"expression":{"arguments":[{"id":15388,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15378,"src":"3527:4:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"}},{"arguments":[],"expression":{"argumentTypes":[],"id":15389,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15306,"src":"3533:9:48","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":15390,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3533:11:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":15387,"name":"_getFullAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15374,"src":"3516:10:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$15321_$_t_uint48_$returns$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"function (Time.Delay,uint48) pure returns (uint32,uint32,uint48)"}},"id":15391,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3516:29:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":15386,"id":15392,"nodeType":"Return","src":"3509:36:48"}]},"documentation":{"id":15375,"nodeType":"StructuredDocumentation","src":"3181:207:48","text":" @dev Get the current value plus the pending value and effect timepoint if there is a scheduled change. If the\n effect timepoint is 0, then the pending value should not be considered."},"id":15394,"implemented":true,"kind":"function","modifiers":[],"name":"getFull","nameLocation":"3402:7:48","nodeType":"FunctionDefinition","parameters":{"id":15379,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15378,"mutability":"mutable","name":"self","nameLocation":"3416:4:48","nodeType":"VariableDeclaration","scope":15394,"src":"3410:10:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"},"typeName":{"id":15377,"nodeType":"UserDefinedTypeName","pathNode":{"id":15376,"name":"Delay","nameLocations":["3410:5:48"],"nodeType":"IdentifierPath","referencedDeclaration":15321,"src":"3410:5:48"},"referencedDeclaration":15321,"src":"3410:5:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"3409:12:48"},"returnParameters":{"id":15386,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15381,"mutability":"mutable","name":"valueBefore","nameLocation":"3452:11:48","nodeType":"VariableDeclaration","scope":15394,"src":"3445:18:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":15380,"name":"uint32","nodeType":"ElementaryTypeName","src":"3445:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":15383,"mutability":"mutable","name":"valueAfter","nameLocation":"3472:10:48","nodeType":"VariableDeclaration","scope":15394,"src":"3465:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":15382,"name":"uint32","nodeType":"ElementaryTypeName","src":"3465:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":15385,"mutability":"mutable","name":"effect","nameLocation":"3491:6:48","nodeType":"VariableDeclaration","scope":15394,"src":"3484:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":15384,"name":"uint48","nodeType":"ElementaryTypeName","src":"3484:6:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"3444:54:48"},"scope":15558,"src":"3393:159:48","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":15411,"nodeType":"Block","src":"3665:74:48","statements":[{"assignments":[15404,null,null],"declarations":[{"constant":false,"id":15404,"mutability":"mutable","name":"delay","nameLocation":"3683:5:48","nodeType":"VariableDeclaration","scope":15411,"src":"3676:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":15403,"name":"uint32","nodeType":"ElementaryTypeName","src":"3676:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},null,null],"id":15408,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":15405,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15398,"src":"3696:4:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"}},"id":15406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3701:7:48","memberName":"getFull","nodeType":"MemberAccess","referencedDeclaration":15394,"src":"3696:12:48","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$15321_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$15321_$","typeString":"function (Time.Delay) view returns (uint32,uint32,uint48)"}},"id":15407,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3696:14:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"VariableDeclarationStatement","src":"3675:35:48"},{"expression":{"id":15409,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15404,"src":"3727:5:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":15402,"id":15410,"nodeType":"Return","src":"3720:12:48"}]},"documentation":{"id":15395,"nodeType":"StructuredDocumentation","src":"3558:46:48","text":" @dev Get the current value."},"id":15412,"implemented":true,"kind":"function","modifiers":[],"name":"get","nameLocation":"3618:3:48","nodeType":"FunctionDefinition","parameters":{"id":15399,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15398,"mutability":"mutable","name":"self","nameLocation":"3628:4:48","nodeType":"VariableDeclaration","scope":15412,"src":"3622:10:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"},"typeName":{"id":15397,"nodeType":"UserDefinedTypeName","pathNode":{"id":15396,"name":"Delay","nameLocations":["3622:5:48"],"nodeType":"IdentifierPath","referencedDeclaration":15321,"src":"3622:5:48"},"referencedDeclaration":15321,"src":"3622:5:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"3621:12:48"},"returnParameters":{"id":15402,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15401,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15412,"src":"3657:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":15400,"name":"uint32","nodeType":"ElementaryTypeName","src":"3657:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"3656:8:48"},"scope":15558,"src":"3609:130:48","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":15467,"nodeType":"Block","src":"4189:234:48","statements":[{"assignments":[15429],"declarations":[{"constant":false,"id":15429,"mutability":"mutable","name":"value","nameLocation":"4206:5:48","nodeType":"VariableDeclaration","scope":15467,"src":"4199:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":15428,"name":"uint32","nodeType":"ElementaryTypeName","src":"4199:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":15433,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":15430,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15416,"src":"4214:4:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"}},"id":15431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4219:3:48","memberName":"get","nodeType":"MemberAccess","referencedDeclaration":15412,"src":"4214:8:48","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$15321_$returns$_t_uint32_$attached_to$_t_userDefinedValueType$_Delay_$15321_$","typeString":"function (Time.Delay) view returns (uint32)"}},"id":15432,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4214:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"4199:25:48"},{"assignments":[15435],"declarations":[{"constant":false,"id":15435,"mutability":"mutable","name":"setback","nameLocation":"4241:7:48","nodeType":"VariableDeclaration","scope":15467,"src":"4234:14:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":15434,"name":"uint32","nodeType":"ElementaryTypeName","src":"4234:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":15451,"initialValue":{"arguments":[{"arguments":[{"id":15440,"name":"minSetback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15420,"src":"4267:10:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":15443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15441,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15429,"src":"4279:5:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":15442,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15418,"src":"4287:8:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4279:16:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":15447,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4317:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":15448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4279:39:48","trueExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":15446,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15444,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15429,"src":"4298:5:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":15445,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15418,"src":"4306:8:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4298:16:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":15438,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11439,"src":"4258:4:48","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$11439_$","typeString":"type(library Math)"}},"id":15439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4263:3:48","memberName":"max","nodeType":"MemberAccess","referencedDeclaration":10126,"src":"4258:8:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":15449,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4258:61:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15437,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4251:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":15436,"name":"uint32","nodeType":"ElementaryTypeName","src":"4251:6:48","typeDescriptions":{}}},"id":15450,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4251:69:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"4234:86:48"},{"expression":{"id":15457,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15452,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15426,"src":"4330:6:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":15456,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":15453,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15306,"src":"4339:9:48","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":15454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4339:11:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":15455,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15435,"src":"4353:7:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4339:21:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"4330:30:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":15458,"nodeType":"ExpressionStatement","src":"4330:30:48"},{"expression":{"components":[{"arguments":[{"id":15460,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15429,"src":"4383:5:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":15461,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15418,"src":"4390:8:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":15462,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15426,"src":"4400:6:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":15459,"name":"pack","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15557,"src":"4378:4:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint48_$returns$_t_userDefinedValueType$_Delay_$15321_$","typeString":"function (uint32,uint32,uint48) pure returns (Time.Delay)"}},"id":15463,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4378:29:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"}},{"id":15464,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15426,"src":"4409:6:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":15465,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4377:39:48","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$15321_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"functionReturnParameters":15427,"id":15466,"nodeType":"Return","src":"4370:46:48"}]},"documentation":{"id":15413,"nodeType":"StructuredDocumentation","src":"3745:283:48","text":" @dev Update a Delay object so that it takes a new duration after a timepoint that is automatically computed to\n enforce the old delay at the moment of the update. Returns the updated Delay object and the timestamp when the\n new delay becomes effective."},"id":15468,"implemented":true,"kind":"function","modifiers":[],"name":"withUpdate","nameLocation":"4042:10:48","nodeType":"FunctionDefinition","parameters":{"id":15421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15416,"mutability":"mutable","name":"self","nameLocation":"4068:4:48","nodeType":"VariableDeclaration","scope":15468,"src":"4062:10:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"},"typeName":{"id":15415,"nodeType":"UserDefinedTypeName","pathNode":{"id":15414,"name":"Delay","nameLocations":["4062:5:48"],"nodeType":"IdentifierPath","referencedDeclaration":15321,"src":"4062:5:48"},"referencedDeclaration":15321,"src":"4062:5:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":15418,"mutability":"mutable","name":"newValue","nameLocation":"4089:8:48","nodeType":"VariableDeclaration","scope":15468,"src":"4082:15:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":15417,"name":"uint32","nodeType":"ElementaryTypeName","src":"4082:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":15420,"mutability":"mutable","name":"minSetback","nameLocation":"4114:10:48","nodeType":"VariableDeclaration","scope":15468,"src":"4107:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":15419,"name":"uint32","nodeType":"ElementaryTypeName","src":"4107:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"4052:78:48"},"returnParameters":{"id":15427,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15424,"mutability":"mutable","name":"updatedDelay","nameLocation":"4160:12:48","nodeType":"VariableDeclaration","scope":15468,"src":"4154:18:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"},"typeName":{"id":15423,"nodeType":"UserDefinedTypeName","pathNode":{"id":15422,"name":"Delay","nameLocations":["4154:5:48"],"nodeType":"IdentifierPath","referencedDeclaration":15321,"src":"4154:5:48"},"referencedDeclaration":15321,"src":"4154:5:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":15426,"mutability":"mutable","name":"effect","nameLocation":"4181:6:48","nodeType":"VariableDeclaration","scope":15468,"src":"4174:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":15425,"name":"uint48","nodeType":"ElementaryTypeName","src":"4174:6:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4153:35:48"},"scope":15558,"src":"4033:390:48","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":15518,"nodeType":"Block","src":"4656:212:48","statements":[{"assignments":[15482],"declarations":[{"constant":false,"id":15482,"mutability":"mutable","name":"raw","nameLocation":"4674:3:48","nodeType":"VariableDeclaration","scope":15518,"src":"4666:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":15481,"name":"uint112","nodeType":"ElementaryTypeName","src":"4666:7:48","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"}],"id":15487,"initialValue":{"arguments":[{"id":15485,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15472,"src":"4693:4:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"}],"expression":{"id":15483,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15321,"src":"4680:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$15321_$","typeString":"type(Time.Delay)"}},"id":15484,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4686:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"4680:12:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Delay_$15321_$returns$_t_uint112_$","typeString":"function (Time.Delay) pure returns (uint112)"}},"id":15486,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4680:18:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"VariableDeclarationStatement","src":"4666:32:48"},{"expression":{"id":15493,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15488,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15477,"src":"4709:10:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":15491,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15482,"src":"4729:3:48","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":15490,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4722:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":15489,"name":"uint32","nodeType":"ElementaryTypeName","src":"4722:6:48","typeDescriptions":{}}},"id":15492,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4722:11:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4709:24:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":15494,"nodeType":"ExpressionStatement","src":"4709:24:48"},{"expression":{"id":15502,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15495,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15475,"src":"4743:11:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":15500,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15498,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15482,"src":"4764:3:48","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3332","id":15499,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4771:2:48","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"4764:9:48","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":15497,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4757:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":15496,"name":"uint32","nodeType":"ElementaryTypeName","src":"4757:6:48","typeDescriptions":{}}},"id":15501,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4757:17:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4743:31:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":15503,"nodeType":"ExpressionStatement","src":"4743:31:48"},{"expression":{"id":15511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15504,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15479,"src":"4784:6:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":15509,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15507,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15482,"src":"4800:3:48","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3634","id":15508,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4807:2:48","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"4800:9:48","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":15506,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4793:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":15505,"name":"uint48","nodeType":"ElementaryTypeName","src":"4793:6:48","typeDescriptions":{}}},"id":15510,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4793:17:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"4784:26:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":15512,"nodeType":"ExpressionStatement","src":"4784:26:48"},{"expression":{"components":[{"id":15513,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15475,"src":"4829:11:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":15514,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15477,"src":"4842:10:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":15515,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15479,"src":"4854:6:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":15516,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4828:33:48","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":15480,"id":15517,"nodeType":"Return","src":"4821:40:48"}]},"documentation":{"id":15469,"nodeType":"StructuredDocumentation","src":"4429:117:48","text":" @dev Split a delay into its components: valueBefore, valueAfter and effect (transition timepoint)."},"id":15519,"implemented":true,"kind":"function","modifiers":[],"name":"unpack","nameLocation":"4560:6:48","nodeType":"FunctionDefinition","parameters":{"id":15473,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15472,"mutability":"mutable","name":"self","nameLocation":"4573:4:48","nodeType":"VariableDeclaration","scope":15519,"src":"4567:10:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"},"typeName":{"id":15471,"nodeType":"UserDefinedTypeName","pathNode":{"id":15470,"name":"Delay","nameLocations":["4567:5:48"],"nodeType":"IdentifierPath","referencedDeclaration":15321,"src":"4567:5:48"},"referencedDeclaration":15321,"src":"4567:5:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"4566:12:48"},"returnParameters":{"id":15480,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15475,"mutability":"mutable","name":"valueBefore","nameLocation":"4609:11:48","nodeType":"VariableDeclaration","scope":15519,"src":"4602:18:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":15474,"name":"uint32","nodeType":"ElementaryTypeName","src":"4602:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":15477,"mutability":"mutable","name":"valueAfter","nameLocation":"4629:10:48","nodeType":"VariableDeclaration","scope":15519,"src":"4622:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":15476,"name":"uint32","nodeType":"ElementaryTypeName","src":"4622:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":15479,"mutability":"mutable","name":"effect","nameLocation":"4648:6:48","nodeType":"VariableDeclaration","scope":15519,"src":"4641:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":15478,"name":"uint48","nodeType":"ElementaryTypeName","src":"4641:6:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4601:54:48"},"scope":15558,"src":"4551:317:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15556,"nodeType":"Block","src":"5041:112:48","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":15553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":15548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":15539,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":15536,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15526,"src":"5078:6:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":15535,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5070:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":15534,"name":"uint112","nodeType":"ElementaryTypeName","src":"5070:7:48","typeDescriptions":{}}},"id":15537,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5070:15:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":15538,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5089:2:48","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"5070:21:48","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"id":15540,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5069:23:48","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":15546,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":15543,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15522,"src":"5104:11:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":15542,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5096:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":15541,"name":"uint112","nodeType":"ElementaryTypeName","src":"5096:7:48","typeDescriptions":{}}},"id":15544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5096:20:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":15545,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5120:2:48","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"5096:26:48","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"id":15547,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5095:28:48","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"5069:54:48","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"arguments":[{"id":15551,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15524,"src":"5134:10:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":15550,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5126:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":15549,"name":"uint112","nodeType":"ElementaryTypeName","src":"5126:7:48","typeDescriptions":{}}},"id":15552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5126:19:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"5069:76:48","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"expression":{"id":15532,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15321,"src":"5058:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$15321_$","typeString":"type(Time.Delay)"}},"id":15533,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5064:4:48","memberName":"wrap","nodeType":"MemberAccess","src":"5058:10:48","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint112_$returns$_t_userDefinedValueType$_Delay_$15321_$","typeString":"function (uint112) pure returns (Time.Delay)"}},"id":15554,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5058:88:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"}},"functionReturnParameters":15531,"id":15555,"nodeType":"Return","src":"5051:95:48"}]},"documentation":{"id":15520,"nodeType":"StructuredDocumentation","src":"4874:64:48","text":" @dev pack the components into a Delay object."},"id":15557,"implemented":true,"kind":"function","modifiers":[],"name":"pack","nameLocation":"4952:4:48","nodeType":"FunctionDefinition","parameters":{"id":15527,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15522,"mutability":"mutable","name":"valueBefore","nameLocation":"4964:11:48","nodeType":"VariableDeclaration","scope":15557,"src":"4957:18:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":15521,"name":"uint32","nodeType":"ElementaryTypeName","src":"4957:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":15524,"mutability":"mutable","name":"valueAfter","nameLocation":"4984:10:48","nodeType":"VariableDeclaration","scope":15557,"src":"4977:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":15523,"name":"uint32","nodeType":"ElementaryTypeName","src":"4977:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":15526,"mutability":"mutable","name":"effect","nameLocation":"5003:6:48","nodeType":"VariableDeclaration","scope":15557,"src":"4996:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":15525,"name":"uint48","nodeType":"ElementaryTypeName","src":"4996:6:48","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4956:54:48"},"returnParameters":{"id":15531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15530,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15557,"src":"5034:5:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"},"typeName":{"id":15529,"nodeType":"UserDefinedTypeName","pathNode":{"id":15528,"name":"Delay","nameLocations":["5034:5:48"],"nodeType":"IdentifierPath","referencedDeclaration":15321,"src":"5034:5:48"},"referencedDeclaration":15321,"src":"5034:5:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$15321","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"5033:7:48"},"scope":15558,"src":"4943:210:48","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":15559,"src":"640:4515:48","usedErrors":[],"usedEvents":[]}],"src":"104:5052:48"},"id":48},"contracts/GovernanceTimelock.sol":{"ast":{"absolutePath":"contracts/GovernanceTimelock.sol","exportedSymbols":{"AccessControl":[295],"Address":[7098],"ERC1155Holder":[5852],"ERC721Holder":[6838],"GovernanceTimelock":[15586],"TimelockController":[3831]},"id":15587,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":15560,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"32:24:49"},{"absolutePath":"@openzeppelin/contracts/governance/TimelockController.sol","file":"@openzeppelin/contracts/governance/TimelockController.sol","id":15561,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15587,"sourceUnit":3832,"src":"58:67:49","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":15563,"name":"TimelockController","nameLocations":["376:18:49"],"nodeType":"IdentifierPath","referencedDeclaration":3831,"src":"376:18:49"},"id":15564,"nodeType":"InheritanceSpecifier","src":"376:18:49"}],"canonicalName":"GovernanceTimelock","contractDependencies":[],"contractKind":"contract","documentation":{"id":15562,"nodeType":"StructuredDocumentation","src":"127:217:49","text":" @title GovernanceTimelock\n @dev Контракт таймлока для DAO, обеспечивающий задержку между одобрением и исполнением предложений"},"fullyImplemented":true,"id":15586,"linearizedBaseContracts":[15586,3831,5852,5771,6838,6811,295,9806,9818,378,7128],"name":"GovernanceTimelock","nameLocation":"354:18:49","nodeType":"ContractDefinition","nodes":[{"body":{"id":15584,"nodeType":"Block","src":"1174:2:49","statements":[]},"documentation":{"id":15565,"nodeType":"StructuredDocumentation","src":"401:533:49","text":" @dev Конструктор\n @param minDelay Минимальная задержка в секундах перед выполнением транзакции\n @param proposers Адреса, которые могут предлагать транзакции\n @param executors Адреса, которые могут выполнять транзакции\n @param admin Адрес администратора (обычно адрес нулевой для децентрализации)"},"id":15585,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":15578,"name":"minDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15567,"src":"1106:8:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15579,"name":"proposers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15570,"src":"1124:9:49","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":15580,"name":"executors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15573,"src":"1143:9:49","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":15581,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15575,"src":"1162:5:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":15582,"kind":"baseConstructorSpecifier","modifierName":{"id":15577,"name":"TimelockController","nameLocations":["1078:18:49"],"nodeType":"IdentifierPath","referencedDeclaration":3831,"src":"1078:18:49"},"nodeType":"ModifierInvocation","src":"1078:95:49"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":15576,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15567,"mutability":"mutable","name":"minDelay","nameLocation":"968:8:49","nodeType":"VariableDeclaration","scope":15585,"src":"960:16:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15566,"name":"uint256","nodeType":"ElementaryTypeName","src":"960:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15570,"mutability":"mutable","name":"proposers","nameLocation":"1003:9:49","nodeType":"VariableDeclaration","scope":15585,"src":"986:26:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":15568,"name":"address","nodeType":"ElementaryTypeName","src":"986:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":15569,"nodeType":"ArrayTypeName","src":"986:9:49","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":15573,"mutability":"mutable","name":"executors","nameLocation":"1039:9:49","nodeType":"VariableDeclaration","scope":15585,"src":"1022:26:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":15571,"name":"address","nodeType":"ElementaryTypeName","src":"1022:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":15572,"nodeType":"ArrayTypeName","src":"1022:9:49","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":15575,"mutability":"mutable","name":"admin","nameLocation":"1066:5:49","nodeType":"VariableDeclaration","scope":15585,"src":"1058:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15574,"name":"address","nodeType":"ElementaryTypeName","src":"1058:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"950:127:49"},"returnParameters":{"id":15583,"nodeType":"ParameterList","parameters":[],"src":"1174:0:49"},"scope":15586,"src":"939:237:49","stateMutability":"nonpayable","virtual":false,"visibility":"public"}],"scope":15587,"src":"345:833:49","usedErrors":[305,308,2869,2876,2883,2888,2893,7141],"usedEvents":[317,326,335,2910,2923,2930,2935,2942]}],"src":"32:1147:49"},"id":49},"contracts/GovernanceToken.sol":{"ast":{"absolutePath":"contracts/GovernanceToken.sol","exportedSymbols":{"Checkpoints":[14929],"Context":[7128],"ECDSA":[9361],"EIP712":[9588],"ERC20":[6367],"ERC20Permit":[6599],"ERC20Votes":[6731],"GovernanceToken":[15743],"IERC20Permit":[6793],"Nonces":[7218],"Ownable":[526],"Votes":[5523]},"id":15744,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":15588,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"32:24:50"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol","id":15589,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15744,"sourceUnit":6600,"src":"58:72:50","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol","id":15590,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15744,"sourceUnit":6732,"src":"131:71:50","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/access/Ownable.sol","file":"@openzeppelin/contracts/access/Ownable.sol","id":15591,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15744,"sourceUnit":527,"src":"203:52:50","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Nonces.sol","file":"@openzeppelin/contracts/utils/Nonces.sol","id":15592,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15744,"sourceUnit":7219,"src":"256:50:50","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":15594,"name":"ERC20Permit","nameLocations":["477:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":6599,"src":"477:11:50"},"id":15595,"nodeType":"InheritanceSpecifier","src":"477:11:50"},{"baseName":{"id":15596,"name":"ERC20Votes","nameLocations":["490:10:50"],"nodeType":"IdentifierPath","referencedDeclaration":6731,"src":"490:10:50"},"id":15597,"nodeType":"InheritanceSpecifier","src":"490:10:50"},{"baseName":{"id":15598,"name":"Ownable","nameLocations":["502:7:50"],"nodeType":"IdentifierPath","referencedDeclaration":526,"src":"502:7:50"},"id":15599,"nodeType":"InheritanceSpecifier","src":"502:7:50"}],"canonicalName":"GovernanceToken","contractDependencies":[],"contractKind":"contract","documentation":{"id":15593,"nodeType":"StructuredDocumentation","src":"308:140:50","text":" @title GovernanceToken\n @dev Токен управления ERC20Votes с функциями голосования для DAO"},"fullyImplemented":true,"id":15743,"internalFunctionIDs":{"5500":1,"5514":2},"linearizedBaseContracts":[15743,526,6731,5523,5577,4980,5592,6599,7218,9588,5566,6793,6367,5634,6757,6445,7128],"name":"GovernanceToken","nameLocation":"458:15:50","nodeType":"ContractDefinition","nodes":[{"body":{"id":15618,"nodeType":"Block","src":"682:214:50","statements":[]},"id":15619,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":15608,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15601,"src":"628:4:50","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":15609,"name":"symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15603,"src":"634:6:50","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":15610,"kind":"baseConstructorSpecifier","modifierName":{"id":15607,"name":"ERC20","nameLocations":["622:5:50"],"nodeType":"IdentifierPath","referencedDeclaration":6367,"src":"622:5:50"},"nodeType":"ModifierInvocation","src":"622:19:50"},{"arguments":[{"id":15612,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15601,"src":"654:4:50","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":15613,"kind":"baseConstructorSpecifier","modifierName":{"id":15611,"name":"ERC20Permit","nameLocations":["642:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":6599,"src":"642:11:50"},"nodeType":"ModifierInvocation","src":"642:17:50"},{"arguments":[{"id":15615,"name":"initialOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15605,"src":"668:12:50","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":15616,"kind":"baseConstructorSpecifier","modifierName":{"id":15614,"name":"Ownable","nameLocations":["660:7:50"],"nodeType":"IdentifierPath","referencedDeclaration":526,"src":"660:7:50"},"nodeType":"ModifierInvocation","src":"660:21:50"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":15606,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15601,"mutability":"mutable","name":"name","nameLocation":"551:4:50","nodeType":"VariableDeclaration","scope":15619,"src":"537:18:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15600,"name":"string","nodeType":"ElementaryTypeName","src":"537:6:50","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15603,"mutability":"mutable","name":"symbol","nameLocation":"579:6:50","nodeType":"VariableDeclaration","scope":15619,"src":"565:20:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15602,"name":"string","nodeType":"ElementaryTypeName","src":"565:6:50","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15605,"mutability":"mutable","name":"initialOwner","nameLocation":"603:12:50","nodeType":"VariableDeclaration","scope":15619,"src":"595:20:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15604,"name":"address","nodeType":"ElementaryTypeName","src":"595:7:50","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"527:94:50"},"returnParameters":{"id":15617,"nodeType":"ParameterList","parameters":[],"src":"682:0:50"},"scope":15743,"src":"516:380:50","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":15704,"nodeType":"Block","src":"1343:635:50","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15636,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15632,"name":"partners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15623,"src":"1361:8:50","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":15633,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1370:6:50","memberName":"length","nodeType":"MemberAccess","src":"1361:15:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":15634,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15626,"src":"1380:7:50","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":15635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1388:6:50","memberName":"length","nodeType":"MemberAccess","src":"1380:14:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1361:33:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"417272617973206c656e677468206d69736d61746368","id":15637,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1396:24:50","typeDescriptions":{"typeIdentifier":"t_stringliteral_582fd48f3876d7686bfeaaaa0db0589073271dedd50d66094f02fee2a3d2e01c","typeString":"literal_string \"Arrays length mismatch\""},"value":"Arrays length mismatch"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_582fd48f3876d7686bfeaaaa0db0589073271dedd50d66094f02fee2a3d2e01c","typeString":"literal_string \"Arrays length mismatch\""}],"id":15631,"name":"require","nodeType":"Identifier","overloadedDeclarations":[4294967278,4294967278],"referencedDeclaration":4294967278,"src":"1353:7:50","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15638,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1353:68:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15639,"nodeType":"ExpressionStatement","src":"1353:68:50"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15644,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15641,"name":"partners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15623,"src":"1439:8:50","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":15642,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1448:6:50","memberName":"length","nodeType":"MemberAccess","src":"1439:15:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15643,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1457:1:50","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1439:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"456d70747920617272617973","id":15645,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1460:14:50","typeDescriptions":{"typeIdentifier":"t_stringliteral_920fc87d8e9a45232b5e4c2c36e3c0fff5f09b5434a80d6ec35d7f09f9d69c29","typeString":"literal_string \"Empty arrays\""},"value":"Empty arrays"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_920fc87d8e9a45232b5e4c2c36e3c0fff5f09b5434a80d6ec35d7f09f9d69c29","typeString":"literal_string \"Empty arrays\""}],"id":15640,"name":"require","nodeType":"Identifier","overloadedDeclarations":[4294967278,4294967278],"referencedDeclaration":4294967278,"src":"1431:7:50","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1431:44:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15647,"nodeType":"ExpressionStatement","src":"1431:44:50"},{"assignments":[15649],"declarations":[{"constant":false,"id":15649,"mutability":"mutable","name":"totalSupply","nameLocation":"1494:11:50","nodeType":"VariableDeclaration","scope":15704,"src":"1486:19:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15648,"name":"uint256","nodeType":"ElementaryTypeName","src":"1486:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15651,"initialValue":{"hexValue":"30","id":15650,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1508:1:50","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"1486:23:50"},{"body":{"id":15699,"nodeType":"Block","src":"1565:223:50","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":15671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":15664,"name":"partners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15623,"src":"1587:8:50","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":15666,"indexExpression":{"id":15665,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15653,"src":"1596:1:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1587:11:50","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":15669,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1610:1:50","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":15668,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1602:7:50","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15667,"name":"address","nodeType":"ElementaryTypeName","src":"1602:7:50","typeDescriptions":{}}},"id":15670,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1602:10:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1587:25:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5a65726f2061646472657373","id":15672,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1614:14:50","typeDescriptions":{"typeIdentifier":"t_stringliteral_535d7636857fb1ab3a4f159f2a66b9583ce224510b4368fa2453e15bee0bc833","typeString":"literal_string \"Zero address\""},"value":"Zero address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_535d7636857fb1ab3a4f159f2a66b9583ce224510b4368fa2453e15bee0bc833","typeString":"literal_string \"Zero address\""}],"id":15663,"name":"require","nodeType":"Identifier","overloadedDeclarations":[4294967278,4294967278],"referencedDeclaration":4294967278,"src":"1579:7:50","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15673,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1579:50:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15674,"nodeType":"ExpressionStatement","src":"1579:50:50"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15680,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":15676,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15626,"src":"1651:7:50","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":15678,"indexExpression":{"id":15677,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15653,"src":"1659:1:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1651:10:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15679,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1664:1:50","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1651:14:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5a65726f20616d6f756e74","id":15681,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1667:13:50","typeDescriptions":{"typeIdentifier":"t_stringliteral_499f3f4b0ad3588aa1eb6e198be77bff643a4218ffbf2bef1370e58aadea5df4","typeString":"literal_string \"Zero amount\""},"value":"Zero amount"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_499f3f4b0ad3588aa1eb6e198be77bff643a4218ffbf2bef1370e58aadea5df4","typeString":"literal_string \"Zero amount\""}],"id":15675,"name":"require","nodeType":"Identifier","overloadedDeclarations":[4294967278,4294967278],"referencedDeclaration":4294967278,"src":"1643:7:50","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":15682,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1643:38:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15683,"nodeType":"ExpressionStatement","src":"1643:38:50"},{"expression":{"id":15688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15684,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15649,"src":"1708:11:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"baseExpression":{"id":15685,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15626,"src":"1723:7:50","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":15687,"indexExpression":{"id":15686,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15653,"src":"1731:1:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1723:10:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1708:25:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15689,"nodeType":"ExpressionStatement","src":"1708:25:50"},{"expression":{"arguments":[{"baseExpression":{"id":15691,"name":"partners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15623,"src":"1753:8:50","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":15693,"indexExpression":{"id":15692,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15653,"src":"1762:1:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1753:11:50","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":15694,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15626,"src":"1766:7:50","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":15696,"indexExpression":{"id":15695,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15653,"src":"1774:1:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1766:10:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15690,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6207,"src":"1747:5:50","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":15697,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1747:30:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15698,"nodeType":"ExpressionStatement","src":"1747:30:50"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15656,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15653,"src":"1539:1:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":15657,"name":"partners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15623,"src":"1543:8:50","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":15658,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1552:6:50","memberName":"length","nodeType":"MemberAccess","src":"1543:15:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1539:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15700,"initializationExpression":{"assignments":[15653],"declarations":[{"constant":false,"id":15653,"mutability":"mutable","name":"i","nameLocation":"1532:1:50","nodeType":"VariableDeclaration","scope":15700,"src":"1524:9:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15652,"name":"uint256","nodeType":"ElementaryTypeName","src":"1524:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15655,"initialValue":{"hexValue":"30","id":15654,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1536:1:50","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"1524:13:50"},"loopExpression":{"expression":{"id":15661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1560:3:50","subExpression":{"id":15660,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15653,"src":"1560:1:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15662,"nodeType":"ExpressionStatement","src":"1560:3:50"},"nodeType":"ForStatement","src":"1519:269:50"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":15701,"name":"renounceOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":477,"src":"1952:17:50","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":15702,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1952:19:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15703,"nodeType":"ExpressionStatement","src":"1952:19:50"}]},"documentation":{"id":15620,"nodeType":"StructuredDocumentation","src":"902:315:50","text":" @dev Минтит начальный запас токенов для распределения между партнерами\n @param partners Массив адресов партнеров\n @param amounts Массив сумм токенов для каждого партнера"},"functionSelector":"9df2c95d","id":15705,"implemented":true,"kind":"function","modifiers":[{"id":15629,"kind":"modifierInvocation","modifierName":{"id":15628,"name":"onlyOwner","nameLocations":["1333:9:50"],"nodeType":"IdentifierPath","referencedDeclaration":437,"src":"1333:9:50"},"nodeType":"ModifierInvocation","src":"1333:9:50"}],"name":"mintInitialSupply","nameLocation":"1231:17:50","nodeType":"FunctionDefinition","parameters":{"id":15627,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15623,"mutability":"mutable","name":"partners","nameLocation":"1275:8:50","nodeType":"VariableDeclaration","scope":15705,"src":"1258:25:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":15621,"name":"address","nodeType":"ElementaryTypeName","src":"1258:7:50","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":15622,"nodeType":"ArrayTypeName","src":"1258:9:50","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":15626,"mutability":"mutable","name":"amounts","nameLocation":"1310:7:50","nodeType":"VariableDeclaration","scope":15705,"src":"1293:24:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":15624,"name":"uint256","nodeType":"ElementaryTypeName","src":"1293:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15625,"nodeType":"ArrayTypeName","src":"1293:9:50","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"1248:75:50"},"returnParameters":{"id":15630,"nodeType":"ParameterList","parameters":[],"src":"1343:0:50"},"scope":15743,"src":"1222:756:50","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[6174,6686],"body":{"id":15725,"nodeType":"Block","src":"2220:48:50","statements":[{"expression":{"arguments":[{"id":15720,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15707,"src":"2244:4:50","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15721,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15709,"src":"2250:2:50","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15722,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15711,"src":"2254:6:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15717,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"2230:5:50","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernanceToken_$15743_$","typeString":"type(contract super GovernanceToken)"}},"id":15719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2236:7:50","memberName":"_update","nodeType":"MemberAccess","referencedDeclaration":6686,"src":"2230:13:50","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":15723,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2230:31:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15724,"nodeType":"ExpressionStatement","src":"2230:31:50"}]},"id":15726,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"2133:7:50","nodeType":"FunctionDefinition","overrides":{"id":15715,"nodeType":"OverrideSpecifier","overrides":[{"id":15713,"name":"ERC20","nameLocations":["2201:5:50"],"nodeType":"IdentifierPath","referencedDeclaration":6367,"src":"2201:5:50"},{"id":15714,"name":"ERC20Votes","nameLocations":["2208:10:50"],"nodeType":"IdentifierPath","referencedDeclaration":6731,"src":"2208:10:50"}],"src":"2192:27:50"},"parameters":{"id":15712,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15707,"mutability":"mutable","name":"from","nameLocation":"2149:4:50","nodeType":"VariableDeclaration","scope":15726,"src":"2141:12:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15706,"name":"address","nodeType":"ElementaryTypeName","src":"2141:7:50","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15709,"mutability":"mutable","name":"to","nameLocation":"2163:2:50","nodeType":"VariableDeclaration","scope":15726,"src":"2155:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15708,"name":"address","nodeType":"ElementaryTypeName","src":"2155:7:50","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15711,"mutability":"mutable","name":"amount","nameLocation":"2175:6:50","nodeType":"VariableDeclaration","scope":15726,"src":"2167:14:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15710,"name":"uint256","nodeType":"ElementaryTypeName","src":"2167:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2140:42:50"},"returnParameters":{"id":15716,"nodeType":"ParameterList","parameters":[],"src":"2220:0:50"},"scope":15743,"src":"2124:144:50","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[6588,7177],"body":{"id":15741,"nodeType":"Block","src":"2365:43:50","statements":[{"expression":{"arguments":[{"id":15738,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15728,"src":"2395:5:50","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":15736,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"2382:5:50","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernanceToken_$15743_$","typeString":"type(contract super GovernanceToken)"}},"id":15737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2388:6:50","memberName":"nonces","nodeType":"MemberAccess","referencedDeclaration":6588,"src":"2382:12:50","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":15739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2382:19:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15735,"id":15740,"nodeType":"Return","src":"2375:26:50"}]},"functionSelector":"7ecebe00","id":15742,"implemented":true,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"2283:6:50","nodeType":"FunctionDefinition","overrides":{"id":15732,"nodeType":"OverrideSpecifier","overrides":[{"id":15730,"name":"ERC20Permit","nameLocations":["2326:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":6599,"src":"2326:11:50"},{"id":15731,"name":"Nonces","nameLocations":["2339:6:50"],"nodeType":"IdentifierPath","referencedDeclaration":7218,"src":"2339:6:50"}],"src":"2317:29:50"},"parameters":{"id":15729,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15728,"mutability":"mutable","name":"owner","nameLocation":"2298:5:50","nodeType":"VariableDeclaration","scope":15742,"src":"2290:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15727,"name":"address","nodeType":"ElementaryTypeName","src":"2290:7:50","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2289:15:50"},"returnParameters":{"id":15735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15734,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15742,"src":"2356:7:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15733,"name":"uint256","nodeType":"ElementaryTypeName","src":"2356:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2355:9:50"},"scope":15743,"src":"2274:134:50","stateMutability":"view","virtual":false,"visibility":"public"}],"scope":15744,"src":"449:1961:50","usedErrors":[392,397,4905,5031,5038,5604,5609,5614,5623,5628,5633,6476,6483,6619,7160,7284,7286,9024,9029,9034,11449,13356],"usedEvents":[403,4914,4923,5546,6379,6388]}],"src":"32:2379:50"},"id":50},"contracts/GovernorContract.sol":{"ast":{"absolutePath":"contracts/GovernorContract.sol","exportedSymbols":{"Address":[7098],"Checkpoints":[14929],"Context":[7128],"DoubleEndedQueue":[15284],"EIP712":[9588],"ERC165":[9806],"Governor":[2338],"GovernorContract":[16038],"GovernorCountingSimple":[4063],"GovernorSettings":[4244],"GovernorTimelockControl":[4589],"GovernorVotes":[4705],"GovernorVotesQuorumFraction":[4897],"IERC1155Receiver":[5771],"IERC165":[9818],"IERC5805":[5577],"IERC6372":[5592],"IERC721Receiver":[6811],"IGovernor":[2811],"IVotes":[4980],"Math":[11439],"Nonces":[7218],"SafeCast":[13204],"SignatureChecker":[9782],"Strings":[9013],"Time":[15558],"TimelockController":[3831]},"id":16039,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":15745,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"32:24:51"},{"absolutePath":"@openzeppelin/contracts/governance/Governor.sol","file":"@openzeppelin/contracts/governance/Governor.sol","id":15746,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16039,"sourceUnit":2339,"src":"58:57:51","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol","file":"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol","id":15747,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16039,"sourceUnit":4245,"src":"116:76:51","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol","file":"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol","id":15748,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16039,"sourceUnit":4064,"src":"193:82:51","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol","file":"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol","id":15749,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16039,"sourceUnit":4706,"src":"276:73:51","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol","file":"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol","id":15750,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16039,"sourceUnit":4898,"src":"350:87:51","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol","file":"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol","id":15751,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16039,"sourceUnit":4590,"src":"438:83:51","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":15753,"name":"Governor","nameLocations":["691:8:51"],"nodeType":"IdentifierPath","referencedDeclaration":2338,"src":"691:8:51"},"id":15754,"nodeType":"InheritanceSpecifier","src":"691:8:51"},{"baseName":{"id":15755,"name":"GovernorSettings","nameLocations":["705:16:51"],"nodeType":"IdentifierPath","referencedDeclaration":4244,"src":"705:16:51"},"id":15756,"nodeType":"InheritanceSpecifier","src":"705:16:51"},{"baseName":{"id":15757,"name":"GovernorCountingSimple","nameLocations":["727:22:51"],"nodeType":"IdentifierPath","referencedDeclaration":4063,"src":"727:22:51"},"id":15758,"nodeType":"InheritanceSpecifier","src":"727:22:51"},{"baseName":{"id":15759,"name":"GovernorVotes","nameLocations":["755:13:51"],"nodeType":"IdentifierPath","referencedDeclaration":4705,"src":"755:13:51"},"id":15760,"nodeType":"InheritanceSpecifier","src":"755:13:51"},{"baseName":{"id":15761,"name":"GovernorVotesQuorumFraction","nameLocations":["774:27:51"],"nodeType":"IdentifierPath","referencedDeclaration":4897,"src":"774:27:51"},"id":15762,"nodeType":"InheritanceSpecifier","src":"774:27:51"},{"baseName":{"id":15763,"name":"GovernorTimelockControl","nameLocations":["807:23:51"],"nodeType":"IdentifierPath","referencedDeclaration":4589,"src":"807:23:51"},"id":15764,"nodeType":"InheritanceSpecifier","src":"807:23:51"}],"canonicalName":"GovernorContract","contractDependencies":[],"contractKind":"contract","documentation":{"id":15752,"nodeType":"StructuredDocumentation","src":"523:134:51","text":" @title GovernorContract\n @dev Контракт Governor для DAO с настраиваемыми параметрами"},"fullyImplemented":true,"id":16038,"linearizedBaseContracts":[16038,4589,4897,4705,4063,4244,2338,5771,6811,2811,5592,7218,9588,5566,9806,9818,7128],"name":"GovernorContract","nameLocation":"667:16:51","nodeType":"ContractDefinition","nodes":[{"body":{"id":15800,"nodeType":"Block","src":"1533:2:51","statements":[]},"id":15801,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":15783,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15766,"src":"1092:5:51","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":15784,"kind":"baseConstructorSpecifier","modifierName":{"id":15782,"name":"Governor","nameLocations":["1083:8:51"],"nodeType":"IdentifierPath","referencedDeclaration":2338,"src":"1083:8:51"},"nodeType":"ModifierInvocation","src":"1083:15:51"},{"arguments":[{"id":15786,"name":"_votingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15774,"src":"1137:12:51","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":15787,"name":"_votingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15776,"src":"1225:13:51","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":15788,"name":"_proposalThreshold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15778,"src":"1310:18:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15789,"kind":"baseConstructorSpecifier","modifierName":{"id":15785,"name":"GovernorSettings","nameLocations":["1107:16:51"],"nodeType":"IdentifierPath","referencedDeclaration":4244,"src":"1107:16:51"},"nodeType":"ModifierInvocation","src":"1107:293:51"},{"arguments":[{"id":15791,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15769,"src":"1423:6:51","typeDescriptions":{"typeIdentifier":"t_contract$_IVotes_$4980","typeString":"contract IVotes"}}],"id":15792,"kind":"baseConstructorSpecifier","modifierName":{"id":15790,"name":"GovernorVotes","nameLocations":["1409:13:51"],"nodeType":"IdentifierPath","referencedDeclaration":4705,"src":"1409:13:51"},"nodeType":"ModifierInvocation","src":"1409:21:51"},{"arguments":[{"id":15794,"name":"_quorumPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15780,"src":"1467:17:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15795,"kind":"baseConstructorSpecifier","modifierName":{"id":15793,"name":"GovernorVotesQuorumFraction","nameLocations":["1439:27:51"],"nodeType":"IdentifierPath","referencedDeclaration":4897,"src":"1439:27:51"},"nodeType":"ModifierInvocation","src":"1439:46:51"},{"arguments":[{"id":15797,"name":"_timelock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15772,"src":"1518:9:51","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}}],"id":15798,"kind":"baseConstructorSpecifier","modifierName":{"id":15796,"name":"GovernorTimelockControl","nameLocations":["1494:23:51"],"nodeType":"IdentifierPath","referencedDeclaration":4589,"src":"1494:23:51"},"nodeType":"ModifierInvocation","src":"1494:34:51"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":15781,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15766,"mutability":"mutable","name":"_name","nameLocation":"872:5:51","nodeType":"VariableDeclaration","scope":15801,"src":"858:19:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15765,"name":"string","nodeType":"ElementaryTypeName","src":"858:6:51","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15769,"mutability":"mutable","name":"_token","nameLocation":"894:6:51","nodeType":"VariableDeclaration","scope":15801,"src":"887:13:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IVotes_$4980","typeString":"contract IVotes"},"typeName":{"id":15768,"nodeType":"UserDefinedTypeName","pathNode":{"id":15767,"name":"IVotes","nameLocations":["887:6:51"],"nodeType":"IdentifierPath","referencedDeclaration":4980,"src":"887:6:51"},"referencedDeclaration":4980,"src":"887:6:51","typeDescriptions":{"typeIdentifier":"t_contract$_IVotes_$4980","typeString":"contract IVotes"}},"visibility":"internal"},{"constant":false,"id":15772,"mutability":"mutable","name":"_timelock","nameLocation":"929:9:51","nodeType":"VariableDeclaration","scope":15801,"src":"910:28:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"},"typeName":{"id":15771,"nodeType":"UserDefinedTypeName","pathNode":{"id":15770,"name":"TimelockController","nameLocations":["910:18:51"],"nodeType":"IdentifierPath","referencedDeclaration":3831,"src":"910:18:51"},"referencedDeclaration":3831,"src":"910:18:51","typeDescriptions":{"typeIdentifier":"t_contract$_TimelockController_$3831","typeString":"contract TimelockController"}},"visibility":"internal"},{"constant":false,"id":15774,"mutability":"mutable","name":"_votingDelay","nameLocation":"955:12:51","nodeType":"VariableDeclaration","scope":15801,"src":"948:19:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":15773,"name":"uint48","nodeType":"ElementaryTypeName","src":"948:6:51","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":15776,"mutability":"mutable","name":"_votingPeriod","nameLocation":"984:13:51","nodeType":"VariableDeclaration","scope":15801,"src":"977:20:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":15775,"name":"uint32","nodeType":"ElementaryTypeName","src":"977:6:51","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":15778,"mutability":"mutable","name":"_proposalThreshold","nameLocation":"1015:18:51","nodeType":"VariableDeclaration","scope":15801,"src":"1007:26:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15777,"name":"uint256","nodeType":"ElementaryTypeName","src":"1007:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15780,"mutability":"mutable","name":"_quorumPercentage","nameLocation":"1051:17:51","nodeType":"VariableDeclaration","scope":15801,"src":"1043:25:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15779,"name":"uint256","nodeType":"ElementaryTypeName","src":"1043:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"848:226:51"},"returnParameters":{"id":15799,"nodeType":"ParameterList","parameters":[],"src":"1533:0:51"},"scope":16038,"src":"837:698:51","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[2311,4127],"body":{"id":15813,"nodeType":"Block","src":"1797:43:51","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":15809,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"1814:5:51","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernorContract_$16038_$","typeString":"type(contract super GovernorContract)"}},"id":15810,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1820:11:51","memberName":"votingDelay","nodeType":"MemberAccess","referencedDeclaration":4127,"src":"1814:17:51","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":15811,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1814:19:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15808,"id":15812,"nodeType":"Return","src":"1807:26:51"}]},"functionSelector":"3932abb1","id":15814,"implemented":true,"kind":"function","modifiers":[],"name":"votingDelay","nameLocation":"1680:11:51","nodeType":"FunctionDefinition","overrides":{"id":15805,"nodeType":"OverrideSpecifier","overrides":[{"id":15803,"name":"Governor","nameLocations":["1739:8:51"],"nodeType":"IdentifierPath","referencedDeclaration":2338,"src":"1739:8:51"},{"id":15804,"name":"GovernorSettings","nameLocations":["1749:16:51"],"nodeType":"IdentifierPath","referencedDeclaration":4244,"src":"1749:16:51"}],"src":"1730:36:51"},"parameters":{"id":15802,"nodeType":"ParameterList","parameters":[],"src":"1691:2:51"},"returnParameters":{"id":15808,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15807,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15814,"src":"1784:7:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15806,"name":"uint256","nodeType":"ElementaryTypeName","src":"1784:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1783:9:51"},"scope":16038,"src":"1671:169:51","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[2317,4137],"body":{"id":15826,"nodeType":"Block","src":"1973:44:51","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":15822,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"1990:5:51","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernorContract_$16038_$","typeString":"type(contract super GovernorContract)"}},"id":15823,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1996:12:51","memberName":"votingPeriod","nodeType":"MemberAccess","referencedDeclaration":4137,"src":"1990:18:51","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":15824,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1990:20:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15821,"id":15825,"nodeType":"Return","src":"1983:27:51"}]},"functionSelector":"02a251a3","id":15827,"implemented":true,"kind":"function","modifiers":[],"name":"votingPeriod","nameLocation":"1855:12:51","nodeType":"FunctionDefinition","overrides":{"id":15818,"nodeType":"OverrideSpecifier","overrides":[{"id":15816,"name":"Governor","nameLocations":["1915:8:51"],"nodeType":"IdentifierPath","referencedDeclaration":2338,"src":"1915:8:51"},{"id":15817,"name":"GovernorSettings","nameLocations":["1925:16:51"],"nodeType":"IdentifierPath","referencedDeclaration":4244,"src":"1925:16:51"}],"src":"1906:36:51"},"parameters":{"id":15815,"nodeType":"ParameterList","parameters":[],"src":"1867:2:51"},"returnParameters":{"id":15821,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15820,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15827,"src":"1960:7:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15819,"name":"uint256","nodeType":"ElementaryTypeName","src":"1960:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1959:9:51"},"scope":16038,"src":"1846:171:51","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[2325,4807],"body":{"id":15842,"nodeType":"Block","src":"2174:49:51","statements":[{"expression":{"arguments":[{"id":15839,"name":"blockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15829,"src":"2204:11:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15837,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"2191:5:51","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernorContract_$16038_$","typeString":"type(contract super GovernorContract)"}},"id":15838,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2197:6:51","memberName":"quorum","nodeType":"MemberAccess","referencedDeclaration":4807,"src":"2191:12:51","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":15840,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2191:25:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15836,"id":15841,"nodeType":"Return","src":"2184:32:51"}]},"functionSelector":"f8ce560a","id":15843,"implemented":true,"kind":"function","modifiers":[],"name":"quorum","nameLocation":"2032:6:51","nodeType":"FunctionDefinition","overrides":{"id":15833,"nodeType":"OverrideSpecifier","overrides":[{"id":15831,"name":"Governor","nameLocations":["2105:8:51"],"nodeType":"IdentifierPath","referencedDeclaration":2338,"src":"2105:8:51"},{"id":15832,"name":"GovernorVotesQuorumFraction","nameLocations":["2115:27:51"],"nodeType":"IdentifierPath","referencedDeclaration":4897,"src":"2115:27:51"}],"src":"2096:47:51"},"parameters":{"id":15830,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15829,"mutability":"mutable","name":"blockNumber","nameLocation":"2047:11:51","nodeType":"VariableDeclaration","scope":15843,"src":"2039:19:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15828,"name":"uint256","nodeType":"ElementaryTypeName","src":"2039:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2038:21:51"},"returnParameters":{"id":15836,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15835,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15843,"src":"2161:7:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15834,"name":"uint256","nodeType":"ElementaryTypeName","src":"2161:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2160:9:51"},"scope":16038,"src":"2023:200:51","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[892,4339],"body":{"id":15859,"nodeType":"Block","src":"2380:47:51","statements":[{"expression":{"arguments":[{"id":15856,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15845,"src":"2409:10:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15854,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"2397:5:51","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernorContract_$16038_$","typeString":"type(contract super GovernorContract)"}},"id":15855,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2403:5:51","memberName":"state","nodeType":"MemberAccess","referencedDeclaration":4339,"src":"2397:11:51","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_enum$_ProposalState_$2358_$","typeString":"function (uint256) view returns (enum IGovernor.ProposalState)"}},"id":15857,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2397:23:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"functionReturnParameters":15853,"id":15858,"nodeType":"Return","src":"2390:30:51"}]},"functionSelector":"3e4f49e6","id":15860,"implemented":true,"kind":"function","modifiers":[],"name":"state","nameLocation":"2238:5:51","nodeType":"FunctionDefinition","overrides":{"id":15849,"nodeType":"OverrideSpecifier","overrides":[{"id":15847,"name":"Governor","nameLocations":["2309:8:51"],"nodeType":"IdentifierPath","referencedDeclaration":2338,"src":"2309:8:51"},{"id":15848,"name":"GovernorTimelockControl","nameLocations":["2319:23:51"],"nodeType":"IdentifierPath","referencedDeclaration":4589,"src":"2319:23:51"}],"src":"2300:43:51"},"parameters":{"id":15846,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15845,"mutability":"mutable","name":"proposalId","nameLocation":"2252:10:51","nodeType":"VariableDeclaration","scope":15860,"src":"2244:18:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15844,"name":"uint256","nodeType":"ElementaryTypeName","src":"2244:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2243:20:51"},"returnParameters":{"id":15853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15852,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15860,"src":"2361:13:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"},"typeName":{"id":15851,"nodeType":"UserDefinedTypeName","pathNode":{"id":15850,"name":"ProposalState","nameLocations":["2361:13:51"],"nodeType":"IdentifierPath","referencedDeclaration":2358,"src":"2361:13:51"},"referencedDeclaration":2358,"src":"2361:13:51","typeDescriptions":{"typeIdentifier":"t_enum$_ProposalState_$2358","typeString":"enum IGovernor.ProposalState"}},"visibility":"internal"}],"src":"2360:15:51"},"scope":16038,"src":"2229:198:51","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[1146],"body":{"id":15886,"nodeType":"Block","src":"2636:78:51","statements":[{"expression":{"arguments":[{"id":15880,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15863,"src":"2667:7:51","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":15881,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15866,"src":"2676:6:51","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":15882,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15869,"src":"2684:9:51","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":15883,"name":"description","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15871,"src":"2695:11:51","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":15878,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"2653:5:51","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernorContract_$16038_$","typeString":"type(contract super GovernorContract)"}},"id":15879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2659:7:51","memberName":"propose","nodeType":"MemberAccess","referencedDeclaration":1146,"src":"2653:13:51","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_string_memory_ptr_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,string memory) returns (uint256)"}},"id":15884,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2653:54:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15877,"id":15885,"nodeType":"Return","src":"2646:61:51"}]},"functionSelector":"7d5e81e2","id":15887,"implemented":true,"kind":"function","modifiers":[],"name":"propose","nameLocation":"2442:7:51","nodeType":"FunctionDefinition","overrides":{"id":15874,"nodeType":"OverrideSpecifier","overrides":[{"id":15873,"name":"Governor","nameLocations":["2608:8:51"],"nodeType":"IdentifierPath","referencedDeclaration":2338,"src":"2608:8:51"}],"src":"2599:18:51"},"parameters":{"id":15872,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15863,"mutability":"mutable","name":"targets","nameLocation":"2476:7:51","nodeType":"VariableDeclaration","scope":15887,"src":"2459:24:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":15861,"name":"address","nodeType":"ElementaryTypeName","src":"2459:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":15862,"nodeType":"ArrayTypeName","src":"2459:9:51","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":15866,"mutability":"mutable","name":"values","nameLocation":"2510:6:51","nodeType":"VariableDeclaration","scope":15887,"src":"2493:23:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":15864,"name":"uint256","nodeType":"ElementaryTypeName","src":"2493:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15865,"nodeType":"ArrayTypeName","src":"2493:9:51","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":15869,"mutability":"mutable","name":"calldatas","nameLocation":"2541:9:51","nodeType":"VariableDeclaration","scope":15887,"src":"2526:24:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":15867,"name":"bytes","nodeType":"ElementaryTypeName","src":"2526:5:51","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":15868,"nodeType":"ArrayTypeName","src":"2526:7:51","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":15871,"mutability":"mutable","name":"description","nameLocation":"2574:11:51","nodeType":"VariableDeclaration","scope":15887,"src":"2560:25:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15870,"name":"string","nodeType":"ElementaryTypeName","src":"2560:6:51","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2449:142:51"},"returnParameters":{"id":15877,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15876,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15887,"src":"2627:7:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15875,"name":"uint256","nodeType":"ElementaryTypeName","src":"2627:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2626:9:51"},"scope":16038,"src":"2433:281:51","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[901,4147],"body":{"id":15899,"nodeType":"Block","src":"2852:49:51","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":15895,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"2869:5:51","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernorContract_$16038_$","typeString":"type(contract super GovernorContract)"}},"id":15896,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2875:17:51","memberName":"proposalThreshold","nodeType":"MemberAccess","referencedDeclaration":4147,"src":"2869:23:51","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":15897,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2869:25:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15894,"id":15898,"nodeType":"Return","src":"2862:32:51"}]},"functionSelector":"b58131b0","id":15900,"implemented":true,"kind":"function","modifiers":[],"name":"proposalThreshold","nameLocation":"2729:17:51","nodeType":"FunctionDefinition","overrides":{"id":15891,"nodeType":"OverrideSpecifier","overrides":[{"id":15889,"name":"Governor","nameLocations":["2794:8:51"],"nodeType":"IdentifierPath","referencedDeclaration":2338,"src":"2794:8:51"},{"id":15890,"name":"GovernorSettings","nameLocations":["2804:16:51"],"nodeType":"IdentifierPath","referencedDeclaration":4244,"src":"2804:16:51"}],"src":"2785:36:51"},"parameters":{"id":15888,"nodeType":"ParameterList","parameters":[],"src":"2746:2:51"},"returnParameters":{"id":15894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15893,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15900,"src":"2839:7:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15892,"name":"uint256","nodeType":"ElementaryTypeName","src":"2839:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2838:9:51"},"scope":16038,"src":"2720:181:51","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[1666,4520],"body":{"id":15927,"nodeType":"Block","src":"3135:82:51","statements":[{"expression":{"arguments":[{"id":15921,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15903,"src":"3166:7:51","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":15922,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15906,"src":"3175:6:51","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":15923,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15909,"src":"3183:9:51","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":15924,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15911,"src":"3194:15:51","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":15919,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"3152:5:51","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernorContract_$16038_$","typeString":"type(contract super GovernorContract)"}},"id":15920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3158:7:51","memberName":"_cancel","nodeType":"MemberAccess","referencedDeclaration":4520,"src":"3152:13:51","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (address[] memory,uint256[] memory,bytes memory[] memory,bytes32) returns (uint256)"}},"id":15925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3152:58:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15918,"id":15926,"nodeType":"Return","src":"3145:65:51"}]},"id":15928,"implemented":true,"kind":"function","modifiers":[],"name":"_cancel","nameLocation":"2916:7:51","nodeType":"FunctionDefinition","overrides":{"id":15915,"nodeType":"OverrideSpecifier","overrides":[{"id":15913,"name":"Governor","nameLocations":["3082:8:51"],"nodeType":"IdentifierPath","referencedDeclaration":2338,"src":"3082:8:51"},{"id":15914,"name":"GovernorTimelockControl","nameLocations":["3092:23:51"],"nodeType":"IdentifierPath","referencedDeclaration":4589,"src":"3092:23:51"}],"src":"3073:43:51"},"parameters":{"id":15912,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15903,"mutability":"mutable","name":"targets","nameLocation":"2950:7:51","nodeType":"VariableDeclaration","scope":15928,"src":"2933:24:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":15901,"name":"address","nodeType":"ElementaryTypeName","src":"2933:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":15902,"nodeType":"ArrayTypeName","src":"2933:9:51","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":15906,"mutability":"mutable","name":"values","nameLocation":"2984:6:51","nodeType":"VariableDeclaration","scope":15928,"src":"2967:23:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":15904,"name":"uint256","nodeType":"ElementaryTypeName","src":"2967:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15905,"nodeType":"ArrayTypeName","src":"2967:9:51","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":15909,"mutability":"mutable","name":"calldatas","nameLocation":"3015:9:51","nodeType":"VariableDeclaration","scope":15928,"src":"3000:24:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":15907,"name":"bytes","nodeType":"ElementaryTypeName","src":"3000:5:51","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":15908,"nodeType":"ArrayTypeName","src":"3000:7:51","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":15911,"mutability":"mutable","name":"descriptionHash","nameLocation":"3042:15:51","nodeType":"VariableDeclaration","scope":15928,"src":"3034:23:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15910,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3034:7:51","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2923:140:51"},"returnParameters":{"id":15918,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15917,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15928,"src":"3126:7:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15916,"name":"uint256","nodeType":"ElementaryTypeName","src":"3126:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3125:9:51"},"scope":16038,"src":"2907:310:51","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[2039,4533],"body":{"id":15940,"nodeType":"Block","src":"3356:41:51","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":15936,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"3373:5:51","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernorContract_$16038_$","typeString":"type(contract super GovernorContract)"}},"id":15937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3379:9:51","memberName":"_executor","nodeType":"MemberAccess","referencedDeclaration":4533,"src":"3373:15:51","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":15938,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3373:17:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":15935,"id":15939,"nodeType":"Return","src":"3366:24:51"}]},"id":15941,"implemented":true,"kind":"function","modifiers":[],"name":"_executor","nameLocation":"3232:9:51","nodeType":"FunctionDefinition","overrides":{"id":15932,"nodeType":"OverrideSpecifier","overrides":[{"id":15930,"name":"Governor","nameLocations":["3291:8:51"],"nodeType":"IdentifierPath","referencedDeclaration":2338,"src":"3291:8:51"},{"id":15931,"name":"GovernorTimelockControl","nameLocations":["3301:23:51"],"nodeType":"IdentifierPath","referencedDeclaration":4589,"src":"3301:23:51"}],"src":"3282:43:51"},"parameters":{"id":15929,"nodeType":"ParameterList","parameters":[],"src":"3241:2:51"},"returnParameters":{"id":15935,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15934,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15941,"src":"3343:7:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15933,"name":"address","nodeType":"ElementaryTypeName","src":"3343:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3342:9:51"},"scope":16038,"src":"3223:174:51","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[709],"body":{"id":15956,"nodeType":"Block","src":"3593:60:51","statements":[{"expression":{"arguments":[{"id":15953,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15944,"src":"3634:11:51","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":15951,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"3610:5:51","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernorContract_$16038_$","typeString":"type(contract super GovernorContract)"}},"id":15952,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3616:17:51","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":709,"src":"3610:23:51","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":15954,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3610:36:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":15950,"id":15955,"nodeType":"Return","src":"3603:43:51"}]},"documentation":{"id":15942,"nodeType":"StructuredDocumentation","src":"3403:56:51","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":15957,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"3473:17:51","nodeType":"FunctionDefinition","overrides":{"id":15947,"nodeType":"OverrideSpecifier","overrides":[{"id":15946,"name":"Governor","nameLocations":["3556:8:51"],"nodeType":"IdentifierPath","referencedDeclaration":2338,"src":"3556:8:51"}],"src":"3547:18:51"},"parameters":{"id":15945,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15944,"mutability":"mutable","name":"interfaceId","nameLocation":"3498:11:51","nodeType":"VariableDeclaration","scope":15957,"src":"3491:18:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":15943,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3491:6:51","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3490:20:51"},"returnParameters":{"id":15950,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15949,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15957,"src":"3583:4:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15948,"name":"bool","nodeType":"ElementaryTypeName","src":"3583:4:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3582:6:51"},"scope":16038,"src":"3464:189:51","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[973,4363],"body":{"id":15973,"nodeType":"Block","src":"3981:62:51","statements":[{"expression":{"arguments":[{"id":15970,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15960,"src":"4025:10:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15968,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"3998:5:51","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernorContract_$16038_$","typeString":"type(contract super GovernorContract)"}},"id":15969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4004:20:51","memberName":"proposalNeedsQueuing","nodeType":"MemberAccess","referencedDeclaration":4363,"src":"3998:26:51","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_bool_$","typeString":"function (uint256) view returns (bool)"}},"id":15971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3998:38:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":15967,"id":15972,"nodeType":"Return","src":"3991:45:51"}]},"documentation":{"id":15958,"nodeType":"StructuredDocumentation","src":"3659:155:51","text":" @dev Функция для определения, требуется ли постановка предложения в очередь"},"functionSelector":"a9a95294","id":15974,"implemented":true,"kind":"function","modifiers":[],"name":"proposalNeedsQueuing","nameLocation":"3828:20:51","nodeType":"FunctionDefinition","overrides":{"id":15964,"nodeType":"OverrideSpecifier","overrides":[{"id":15962,"name":"Governor","nameLocations":["3917:8:51"],"nodeType":"IdentifierPath","referencedDeclaration":2338,"src":"3917:8:51"},{"id":15963,"name":"GovernorTimelockControl","nameLocations":["3927:23:51"],"nodeType":"IdentifierPath","referencedDeclaration":4589,"src":"3927:23:51"}],"src":"3908:43:51"},"parameters":{"id":15961,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15960,"mutability":"mutable","name":"proposalId","nameLocation":"3857:10:51","nodeType":"VariableDeclaration","scope":15974,"src":"3849:18:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15959,"name":"uint256","nodeType":"ElementaryTypeName","src":"3849:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3848:20:51"},"returnParameters":{"id":15967,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15966,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15974,"src":"3970:4:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15965,"name":"bool","nodeType":"ElementaryTypeName","src":"3970:4:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3969:6:51"},"scope":16038,"src":"3819:224:51","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[1379,4428],"body":{"id":16005,"nodeType":"Block","src":"4419:103:51","statements":[{"expression":{"arguments":[{"id":15998,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15977,"src":"4459:10:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15999,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15980,"src":"4471:7:51","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":16000,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15983,"src":"4480:6:51","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":16001,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15986,"src":"4488:9:51","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":16002,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15988,"src":"4499:15:51","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":15996,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"4436:5:51","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernorContract_$16038_$","typeString":"type(contract super GovernorContract)"}},"id":15997,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4442:16:51","memberName":"_queueOperations","nodeType":"MemberAccess","referencedDeclaration":4428,"src":"4436:22:51","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$_t_uint48_$","typeString":"function (uint256,address[] memory,uint256[] memory,bytes memory[] memory,bytes32) returns (uint48)"}},"id":16003,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4436:79:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":15995,"id":16004,"nodeType":"Return","src":"4429:86:51"}]},"documentation":{"id":15975,"nodeType":"StructuredDocumentation","src":"4049:101:51","text":" @dev Функция для постановки операций в очередь"},"id":16006,"implemented":true,"kind":"function","modifiers":[],"name":"_queueOperations","nameLocation":"4164:16:51","nodeType":"FunctionDefinition","overrides":{"id":15992,"nodeType":"OverrideSpecifier","overrides":[{"id":15990,"name":"Governor","nameLocations":["4367:8:51"],"nodeType":"IdentifierPath","referencedDeclaration":2338,"src":"4367:8:51"},{"id":15991,"name":"GovernorTimelockControl","nameLocations":["4377:23:51"],"nodeType":"IdentifierPath","referencedDeclaration":4589,"src":"4377:23:51"}],"src":"4358:43:51"},"parameters":{"id":15989,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15977,"mutability":"mutable","name":"proposalId","nameLocation":"4198:10:51","nodeType":"VariableDeclaration","scope":16006,"src":"4190:18:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15976,"name":"uint256","nodeType":"ElementaryTypeName","src":"4190:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15980,"mutability":"mutable","name":"targets","nameLocation":"4235:7:51","nodeType":"VariableDeclaration","scope":16006,"src":"4218:24:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":15978,"name":"address","nodeType":"ElementaryTypeName","src":"4218:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":15979,"nodeType":"ArrayTypeName","src":"4218:9:51","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":15983,"mutability":"mutable","name":"values","nameLocation":"4269:6:51","nodeType":"VariableDeclaration","scope":16006,"src":"4252:23:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":15981,"name":"uint256","nodeType":"ElementaryTypeName","src":"4252:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15982,"nodeType":"ArrayTypeName","src":"4252:9:51","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":15986,"mutability":"mutable","name":"calldatas","nameLocation":"4300:9:51","nodeType":"VariableDeclaration","scope":16006,"src":"4285:24:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":15984,"name":"bytes","nodeType":"ElementaryTypeName","src":"4285:5:51","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":15985,"nodeType":"ArrayTypeName","src":"4285:7:51","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":15988,"mutability":"mutable","name":"descriptionHash","nameLocation":"4327:15:51","nodeType":"VariableDeclaration","scope":16006,"src":"4319:23:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15987,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4319:7:51","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4180:168:51"},"returnParameters":{"id":15995,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15994,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16006,"src":"4411:6:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":15993,"name":"uint48","nodeType":"ElementaryTypeName","src":"4411:6:51","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4410:8:51"},"scope":16038,"src":"4155:367:51","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[1556,4467],"body":{"id":16036,"nodeType":"Block","src":"4865:98:51","statements":[{"expression":{"arguments":[{"id":16029,"name":"proposalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16009,"src":"4900:10:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16030,"name":"targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16012,"src":"4912:7:51","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":16031,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16015,"src":"4921:6:51","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":16032,"name":"calldatas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16018,"src":"4929:9:51","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},{"id":16033,"name":"descriptionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16020,"src":"4940:15:51","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"},{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"},{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":16026,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294967271,"src":"4875:5:51","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernorContract_$16038_$","typeString":"type(contract super GovernorContract)"}},"id":16028,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4881:18:51","memberName":"_executeOperations","nodeType":"MemberAccess","referencedDeclaration":4467,"src":"4875:24:51","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_bytes32_$returns$__$","typeString":"function (uint256,address[] memory,uint256[] memory,bytes memory[] memory,bytes32)"}},"id":16034,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4875:81:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16035,"nodeType":"ExpressionStatement","src":"4875:81:51"}]},"documentation":{"id":16007,"nodeType":"StructuredDocumentation","src":"4528:83:51","text":" @dev Функция для выполнения операций"},"id":16037,"implemented":true,"kind":"function","modifiers":[],"name":"_executeOperations","nameLocation":"4625:18:51","nodeType":"FunctionDefinition","overrides":{"id":16024,"nodeType":"OverrideSpecifier","overrides":[{"id":16022,"name":"Governor","nameLocations":["4830:8:51"],"nodeType":"IdentifierPath","referencedDeclaration":2338,"src":"4830:8:51"},{"id":16023,"name":"GovernorTimelockControl","nameLocations":["4840:23:51"],"nodeType":"IdentifierPath","referencedDeclaration":4589,"src":"4840:23:51"}],"src":"4821:43:51"},"parameters":{"id":16021,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16009,"mutability":"mutable","name":"proposalId","nameLocation":"4661:10:51","nodeType":"VariableDeclaration","scope":16037,"src":"4653:18:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16008,"name":"uint256","nodeType":"ElementaryTypeName","src":"4653:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16012,"mutability":"mutable","name":"targets","nameLocation":"4698:7:51","nodeType":"VariableDeclaration","scope":16037,"src":"4681:24:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":16010,"name":"address","nodeType":"ElementaryTypeName","src":"4681:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":16011,"nodeType":"ArrayTypeName","src":"4681:9:51","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":16015,"mutability":"mutable","name":"values","nameLocation":"4732:6:51","nodeType":"VariableDeclaration","scope":16037,"src":"4715:23:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":16013,"name":"uint256","nodeType":"ElementaryTypeName","src":"4715:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16014,"nodeType":"ArrayTypeName","src":"4715:9:51","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":16018,"mutability":"mutable","name":"calldatas","nameLocation":"4763:9:51","nodeType":"VariableDeclaration","scope":16037,"src":"4748:24:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":16016,"name":"bytes","nodeType":"ElementaryTypeName","src":"4748:5:51","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":16017,"nodeType":"ArrayTypeName","src":"4748:7:51","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":16020,"mutability":"mutable","name":"descriptionHash","nameLocation":"4790:15:51","nodeType":"VariableDeclaration","scope":16037,"src":"4782:23:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16019,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4782:7:51","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4643:168:51"},"returnParameters":{"id":16025,"nodeType":"ParameterList","parameters":[],"src":"4865:0:51"},"scope":16038,"src":"4616:347:51","stateMutability":"nonpayable","virtual":false,"visibility":"internal"}],"scope":16039,"src":"658:4307:51","usedErrors":[2367,2372,2375,2380,2385,2395,2400,2409,2414,2417,2420,2423,2428,2433,2438,2445,4738,7141,7160,7284,7286,11449,13356],"usedEvents":[2470,2477,2482,2487,2500,2515,4082,4088,4094,4272,4731,5546]}],"src":"32:4934:51"},"id":51}},"contracts":{"@openzeppelin/contracts/access/AccessControl.sol":{"AccessControl":{"abi":[{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"DEFAULT_ADMIN_ROLE()":"a217fddf","getRoleAdmin(bytes32)":"248a9ca3","grantRole(bytes32,address)":"2f2ff15d","hasRole(bytes32,address)":"91d14854","renounceRole(bytes32,address)":"36568abe","revokeRole(bytes32,address)":"d547741f","supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"AccessControlBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"neededRole\",\"type\":\"bytes32\"}],\"name\":\"AccessControlUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"previousAdminRole\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"newAdminRole\",\"type\":\"bytes32\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DEFAULT_ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module that allows children to implement role-based access control mechanisms. This is a lightweight version that doesn't allow enumerating role members except through off-chain means by accessing the contract event logs. Some applications may benefit from on-chain enumerability, for those cases see {AccessControlEnumerable}. Roles are referred to by their `bytes32` identifier. These should be exposed in the external API and be unique. The best way to achieve this is by using `public constant` hash digests: ```solidity bytes32 public constant MY_ROLE = keccak256(\\\"MY_ROLE\\\"); ``` Roles can be used to represent a set of permissions. To restrict access to a function call, use {hasRole}: ```solidity function foo() public { require(hasRole(MY_ROLE, msg.sender)); ... } ``` Roles can be granted and revoked dynamically via the {grantRole} and {revokeRole} functions. Each role has an associated admin role, and only accounts that have a role's admin role can call {grantRole} and {revokeRole}. By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means that only accounts with this role will be able to grant or revoke other roles. More complex role relationships can be created by using {_setRoleAdmin}. WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to grant and revoke this role. Extra precautions should be taken to secure accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} to enforce additional security measures for this role.\",\"errors\":{\"AccessControlBadConfirmation()\":[{\"details\":\"The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\"}],\"AccessControlUnauthorizedAccount(address,bytes32)\":[{\"details\":\"The `account` is missing a role.\"}]},\"events\":{\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted to signal this.\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call. This account bears the admin role (for the granted role). Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call: - if using `revokeRole`, it is the admin role bearer - if using `renounceRole`, it is the role bearer (i.e. `account`)\"}},\"kind\":\"dev\",\"methods\":{\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {_setRoleAdmin}.\"},\"grantRole(bytes32,address)\":{\"details\":\"Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleGranted} event.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"renounceRole(bytes32,address)\":{\"details\":\"Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been revoked `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`. May emit a {RoleRevoked} event.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleRevoked} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/AccessControl.sol\":\"AccessControl\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xc1bebdee8943bd5e9ef1e0f2e63296aa1dd4171a66b9e74d0286220e891e1458\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://928cf2f0042c606f3dcb21bd8a272573f462a215cd65285d2d6b407f31e9bd67\",\"dweb:/ipfs/QmWGxjckno6sfjHPX5naPnsfsyisgy4PJDf46eLw9umfpx\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0x4d9a2b261b56a1e4a37bb038151dec98b952fed16de2bdfdda27e38e2b12b530\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f724110f7aeb6151af800ab8c12e6060b29bda9e013f0ccb331eb754d6a7cbf0\",\"dweb:/ipfs/QmUcjzCZpxtUPdEThtAzE1f9LvuJiUGZxTdH9N6bHrb5Cf\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}"}},"@openzeppelin/contracts/access/IAccessControl.sol":{"IAccessControl":{"abi":[{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"getRoleAdmin(bytes32)":"248a9ca3","grantRole(bytes32,address)":"2f2ff15d","hasRole(bytes32,address)":"91d14854","renounceRole(bytes32,address)":"36568abe","revokeRole(bytes32,address)":"d547741f"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"AccessControlBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"neededRole\",\"type\":\"bytes32\"}],\"name\":\"AccessControlUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"previousAdminRole\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"newAdminRole\",\"type\":\"bytes32\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"External interface of AccessControl declared to support ERC-165 detection.\",\"errors\":{\"AccessControlBadConfirmation()\":[{\"details\":\"The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\"}],\"AccessControlUnauthorizedAccount(address,bytes32)\":[{\"details\":\"The `account` is missing a role.\"}]},\"events\":{\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted to signal this.\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call. This account bears the admin role (for the granted role). Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call: - if using `revokeRole`, it is the admin role bearer - if using `renounceRole`, it is the role bearer (i.e. `account`)\"}},\"kind\":\"dev\",\"methods\":{\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {AccessControl-_setRoleAdmin}.\"},\"grantRole(bytes32,address)\":{\"details\":\"Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"renounceRole(bytes32,address)\":{\"details\":\"Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":\"IAccessControl\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0x4d9a2b261b56a1e4a37bb038151dec98b952fed16de2bdfdda27e38e2b12b530\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f724110f7aeb6151af800ab8c12e6060b29bda9e013f0ccb331eb754d6a7cbf0\",\"dweb:/ipfs/QmUcjzCZpxtUPdEThtAzE1f9LvuJiUGZxTdH9N6bHrb5Cf\"]}},\"version\":1}"}},"@openzeppelin/contracts/access/Ownable.sol":{"Ownable":{"abi":[{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"owner()":"8da5cb5b","renounceOwnership()":"715018a6","transferOwnership(address)":"f2fde38b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"OwnableInvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"OwnableUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. The initial owner is set to the address provided by the deployer. This can later be changed with {transferOwnership}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.\",\"errors\":{\"OwnableInvalidOwner(address)\":[{\"details\":\"The owner is not a valid owner account. (eg. `address(0)`)\"}],\"OwnableUnauthorizedAccount(address)\":[{\"details\":\"The caller account is not authorized to perform an operation.\"}]},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the contract setting the address provided by the deployer as the initial owner.\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6\",\"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/Governor.sol":{"Governor":{"abi":[{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorAlreadyCastVote","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorAlreadyQueuedProposal","type":"error"},{"inputs":[],"name":"GovernorDisabledDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"votes","type":"uint256"},{"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"GovernorInsufficientProposerVotes","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"calldatas","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"GovernorInvalidProposalLength","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorInvalidSignature","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteParams","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteType","type":"error"},{"inputs":[{"internalType":"uint256","name":"votingPeriod","type":"uint256"}],"name":"GovernorInvalidVotingPeriod","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNonexistentProposal","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNotQueuedProposal","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyExecutor","type":"error"},{"inputs":[],"name":"GovernorQueueNotImplemented","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"}],"name":"GovernorRestrictedProposer","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"GovernorUnableToCancel","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"enum IGovernor.ProposalState","name":"current","type":"uint8"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"GovernorUnexpectedProposalState","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"voteStart","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"voteEnd","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"etaSeconds","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"VoteCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"},{"indexed":false,"internalType":"bytes","name":"params","type":"bytes"}],"name":"VoteCastWithParams","type":"event"},{"inputs":[],"name":"BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COUNTING_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXTENDED_BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"cancel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"}],"name":"castVote","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"}],"name":"castVoteWithReason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"castVoteWithReasonAndParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteWithReasonAndParamsBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"execute","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"getProposalId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"getVotesWithParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"hashProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalEta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposalNeedsQueuing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalProposer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"queue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"relay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum IGovernor.ProposalState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"BALLOT_TYPEHASH()":"deaaa7cc","CLOCK_MODE()":"4bf5d7e9","COUNTING_MODE()":"dd4e2ba5","EXTENDED_BALLOT_TYPEHASH()":"2fe3e261","cancel(address[],uint256[],bytes[],bytes32)":"452115d6","castVote(uint256,uint8)":"56781388","castVoteBySig(uint256,uint8,address,bytes)":"8ff262e3","castVoteWithReason(uint256,uint8,string)":"7b3c71d3","castVoteWithReasonAndParams(uint256,uint8,string,bytes)":"5f398a14","castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)":"5b8d0e0d","clock()":"91ddadf4","eip712Domain()":"84b0196e","execute(address[],uint256[],bytes[],bytes32)":"2656227d","getProposalId(address[],uint256[],bytes[],bytes32)":"a8f8a668","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","name()":"06fdde03","nonces(address)":"7ecebe00","onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","onERC721Received(address,address,uint256,bytes)":"150b7a02","proposalDeadline(uint256)":"c01f9e37","proposalEta(uint256)":"ab58fb8e","proposalNeedsQueuing(uint256)":"a9a95294","proposalProposer(uint256)":"143489d0","proposalSnapshot(uint256)":"2d63f693","proposalThreshold()":"b58131b0","propose(address[],uint256[],bytes[],string)":"7d5e81e2","queue(address[],uint256[],bytes[],bytes32)":"160cbed7","quorum(uint256)":"f8ce560a","relay(address,uint256,bytes)":"c28bc2fa","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","version()":"54fd4d50","votingDelay()":"3932abb1","votingPeriod()":"02a251a3"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorAlreadyCastVote\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorAlreadyQueuedProposal\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorDisabledDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"votes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"threshold\",\"type\":\"uint256\"}],\"name\":\"GovernorInsufficientProposerVotes\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"calldatas\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidProposalLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorInvalidSignature\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteParams\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"votingPeriod\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidVotingPeriod\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNonexistentProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNotQueuedProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyExecutor\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorQueueNotImplemented\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"}],\"name\":\"GovernorRestrictedProposer\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorUnableToCancel\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"current\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"GovernorUnexpectedProposalState\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"signatures\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteStart\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteEnd\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"etaSeconds\",\"type\":\"uint256\"}],\"name\":\"ProposalQueued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"VoteCast\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"VoteCastWithParams\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COUNTING_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXTENDED_BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"}],\"name\":\"castVote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"castVoteWithReason\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParamsBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"getProposalId\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"getVotesWithParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasVoted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"hashProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalDeadline\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalEta\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"proposalNeedsQueuing\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalProposer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalSnapshot\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalThreshold\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"propose\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"queue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"relay\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"state\",\"outputs\":[{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingPeriod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"Core of the governance system, designed to be extended through various modules. This contract is abstract and requires several functions to be implemented in various modules: - A counting module must implement {_quorumReached}, {_voteSucceeded} and {_countVote} - A voting module must implement {_getVotes} - Additionally, {votingPeriod}, {votingDelay}, and {quorum} must also be implemented\",\"errors\":{\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"GovernorAlreadyCastVote(address)\":[{\"details\":\"The vote was already cast.\"}],\"GovernorAlreadyQueuedProposal(uint256)\":[{\"details\":\"The proposal has already been queued.\"}],\"GovernorDisabledDeposit()\":[{\"details\":\"Token deposits are disabled in this contract.\"}],\"GovernorInsufficientProposerVotes(address,uint256,uint256)\":[{\"details\":\"The `proposer` does not have the required votes to create a proposal.\"}],\"GovernorInvalidProposalLength(uint256,uint256,uint256)\":[{\"details\":\"Empty proposal or a mismatch between the parameters length for a proposal call.\"}],\"GovernorInvalidSignature(address)\":[{\"details\":\"The provided signature is not valid for the expected `voter`. If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}.\"}],\"GovernorInvalidVoteParams()\":[{\"details\":\"The provided params buffer is not supported by the counting module.\"}],\"GovernorInvalidVoteType()\":[{\"details\":\"The vote type used is not valid for the corresponding counting module.\"}],\"GovernorInvalidVotingPeriod(uint256)\":[{\"details\":\"The voting period set is not a valid period.\"}],\"GovernorNonexistentProposal(uint256)\":[{\"details\":\"The `proposalId` doesn't exist.\"}],\"GovernorNotQueuedProposal(uint256)\":[{\"details\":\"The proposal hasn't been queued yet.\"}],\"GovernorOnlyExecutor(address)\":[{\"details\":\"The `account` is not the governance executor.\"}],\"GovernorQueueNotImplemented()\":[{\"details\":\"Queue operation is not implemented for this governor. Execute should be called directly.\"}],\"GovernorRestrictedProposer(address)\":[{\"details\":\"The `proposer` is not allowed to create a proposal.\"}],\"GovernorUnableToCancel(uint256,address)\":[{\"details\":\"The given `account` is unable to cancel the proposal with given `proposalId`.\"}],\"GovernorUnexpectedProposalState(uint256,uint8,bytes32)\":[{\"details\":\"The current state of a proposal is not the required for performing an operation. The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position counting from right to left. NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist). This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated). See {Governor-_encodeStateBitmap}.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}]},\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"ProposalCanceled(uint256)\":{\"details\":\"Emitted when a proposal is canceled.\"},\"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)\":{\"details\":\"Emitted when a proposal is created.\"},\"ProposalExecuted(uint256)\":{\"details\":\"Emitted when a proposal is executed.\"},\"ProposalQueued(uint256,uint256)\":{\"details\":\"Emitted when a proposal is queued.\"},\"VoteCast(address,uint256,uint8,uint256,string)\":{\"details\":\"Emitted when a vote is cast without params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\"},\"VoteCastWithParams(address,uint256,uint8,uint256,string,bytes)\":{\"details\":\"Emitted when a vote is cast with params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used. `params` are additional encoded parameters. Their interpretation also depends on the voting module used.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Description of the clock\"},\"COUNTING_MODE()\":{\"details\":\"A description of the possible `support` values for {castVote} and the way these votes are counted, meant to be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`. There are 2 standard keys: `support` and `quorum`. - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`. - `quorum=bravo` means that only For votes are counted towards quorum. - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum. If a counting module makes use of encoded `params`, it should include this under a `params` key with a unique name that describes the behavior. For example: - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain. - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote. NOTE: The string can be decoded by the standard https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`] JavaScript class.\"},\"cancel(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-cancel}.\"},\"castVote(uint256,uint8)\":{\"details\":\"See {IGovernor-castVote}.\"},\"castVoteBySig(uint256,uint8,address,bytes)\":{\"details\":\"See {IGovernor-castVoteBySig}.\"},\"castVoteWithReason(uint256,uint8,string)\":{\"details\":\"See {IGovernor-castVoteWithReason}.\"},\"castVoteWithReasonAndParams(uint256,uint8,string,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParams}.\"},\"castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParamsBySig}.\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).\"},\"constructor\":{\"details\":\"Sets the value for {name} and {version}\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"getProposalId(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-getProposalId}.\"},\"getVotes(address,uint256)\":{\"details\":\"See {IGovernor-getVotes}.\"},\"getVotesWithParams(address,uint256,bytes)\":{\"details\":\"See {IGovernor-getVotesWithParams}.\"},\"hasVoted(uint256,address)\":{\"details\":\"Returns whether `account` has cast a vote on `proposalId`.\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-hashProposal}. The proposal id is produced by hashing the ABI encoded `targets` array, the `values` array, the `calldatas` array and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in advance, before the proposal is submitted. Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the same proposal (with same operation and same description) will have the same id if submitted on multiple governors across multiple networks. This also means that in order to execute the same operation twice (on the same governor) the proposer will have to change the description in order to avoid proposal id conflicts.\"},\"name()\":{\"details\":\"See {IGovernor-name}.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"},\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155BatchReceived}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC1155Received(address,address,uint256,uint256,bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"proposalDeadline(uint256)\":{\"details\":\"See {IGovernor-proposalDeadline}.\"},\"proposalEta(uint256)\":{\"details\":\"See {IGovernor-proposalEta}.\"},\"proposalNeedsQueuing(uint256)\":{\"details\":\"See {IGovernor-proposalNeedsQueuing}.\"},\"proposalProposer(uint256)\":{\"details\":\"See {IGovernor-proposalProposer}.\"},\"proposalSnapshot(uint256)\":{\"details\":\"See {IGovernor-proposalSnapshot}.\"},\"proposalThreshold()\":{\"details\":\"See {IGovernor-proposalThreshold}.\"},\"propose(address[],uint256[],bytes[],string)\":{\"details\":\"See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}.\"},\"queue(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-queue}.\"},\"quorum(uint256)\":{\"details\":\"Minimum number of cast voted required for a proposal to be successful. NOTE: The `timepoint` parameter corresponds to the snapshot used for counting vote. This allows to scale the quorum depending on values such as the totalSupply of a token at this timepoint (see {ERC20Votes}).\"},\"relay(address,uint256,bytes)\":{\"details\":\"Relays a transaction or function call to an arbitrary target. In cases where the governance executor is some contract other than the governor itself, like when using a timelock, this function can be invoked in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake. Note that if the executor is simply the governor itself, use of `relay` is redundant.\"},\"state(uint256)\":{\"details\":\"See {IGovernor-state}.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"version()\":{\"details\":\"See {IGovernor-version}.\"},\"votingDelay()\":{\"details\":\"Delay, between the proposal is created and the vote starts. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. This can be increased to leave time for users to buy voting power, or delegate it, before the voting of a proposal starts. NOTE: While this interface returns a uint256, timepoints are stored as uint48 following the ERC-6372 clock type. Consequently this value must fit in a uint48 (when added to the current clock). See {IERC6372-clock}.\"},\"votingPeriod()\":{\"details\":\"Delay between the vote start and vote end. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting duration compared to the voting delay. NOTE: This value is stored when the proposal is submitted so that possible changes to the value do not affect proposals that have already been submitted. The type used to save it is a uint32. Consequently, while this interface returns a uint256, the value it returns should fit in a uint32.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"COUNTING_MODE()\":{\"notice\":\"module:voting\"},\"hasVoted(uint256,address)\":{\"notice\":\"module:voting\"},\"quorum(uint256)\":{\"notice\":\"module:user-config\"},\"votingDelay()\":{\"notice\":\"module:user-config\"},\"votingPeriod()\":{\"notice\":\"module:user-config\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/Governor.sol\":\"Governor\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/Governor.sol\":{\"keccak256\":\"0x2dcd108a0d2f822523460cb704ad11bda9d916d493475d92b9e2b46e55015329\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8c01464f71e183c0712a7a47dd516a6a99423b16553622d473813af4c345cf23\",\"dweb:/ipfs/QmSbXJ2DAE5iWEYFD7uYNJejrggrKpS8G3ryV3XryfyVna\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0xeb587bd3f646da7897e80f4ea71dc5ee324e985ca2d17136021aa2443f41a73f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://230f29f8a38f45150616864c0988e0ef3c269e651eefeb0ad3778e3ae387b0fd\",\"dweb:/ipfs/QmTgFRV3XAPDjXA6Gp2ug1ifwyiZGUeFDYivHJ61eJg73g\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x3d4cd07258d675b6dfa3d9dfd623a77b38fb9935f4a5381ff4bc969948720976\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://30abb60a4d98ad9a33de4fa5e9072342e12df3a79e9c71b5f59ce049ae8cd535\",\"dweb:/ipfs/QmT6NXJDjsf8H14nPYQsFELDB8q5ZTmG9cjdX2bEQJW7ST\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x1fcf8cceb1a67e6c8512267e780933c4a3f63ef44756e6c818fda79be51c8402\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://617d7d57f6f9cd449068b4d23daf485676d083aae648e038d05eb3a13291de35\",\"dweb:/ipfs/QmPADWPiGaSzZDFNpFEUx4ZPqhzPkYncBpHyTfAGcfsqzy\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x0c60057e7351874f086db8dc9291b7ada9ad62cb7725befd2991430d04a74572\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33cdfd1fc36410d45046f88ff9864350146b194736c32834baa38d99b843ffbe\",\"dweb:/ipfs/QmdVmqgFKjgEBURy4KUwWDA6J1LEg1BKcHcXsx4nkeHAD2\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol\":{\"keccak256\":\"0xbdc3bb48ccedb818cd75a6d74a16df55a822e9f6d3cc54c59f576f10aab67b5f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2284f25f2478f419d7781573b17a89d0e7c5589a865d55e2d6ed5163aee23aa8\",\"dweb:/ipfs/QmNsr2625APBQiNKpYnX5VcSnYgfUHR9Uzzp9pRXjoDqK7\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol\":{\"keccak256\":\"0x1e1d74658d7f4eab3d4f8fb0c6c5953bc5f629d9425e978d557dabff7b58b217\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be0175d00008d452d3d553890f73a3d5d51dff4372f720336c8b98f26822fcdb\",\"dweb:/ipfs/QmUkE8g5xPExWoSAKwdi5ww1qJJVtEWtjSF93G2LMQkgD3\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/IGovernor.sol":{"IGovernor":{"abi":[{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorAlreadyCastVote","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorAlreadyQueuedProposal","type":"error"},{"inputs":[],"name":"GovernorDisabledDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"votes","type":"uint256"},{"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"GovernorInsufficientProposerVotes","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"calldatas","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"GovernorInvalidProposalLength","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorInvalidSignature","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteParams","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteType","type":"error"},{"inputs":[{"internalType":"uint256","name":"votingPeriod","type":"uint256"}],"name":"GovernorInvalidVotingPeriod","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNonexistentProposal","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNotQueuedProposal","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyExecutor","type":"error"},{"inputs":[],"name":"GovernorQueueNotImplemented","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"}],"name":"GovernorRestrictedProposer","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"GovernorUnableToCancel","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"enum IGovernor.ProposalState","name":"current","type":"uint8"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"GovernorUnexpectedProposalState","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"voteStart","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"voteEnd","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"etaSeconds","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"VoteCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"},{"indexed":false,"internalType":"bytes","name":"params","type":"bytes"}],"name":"VoteCastWithParams","type":"event"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COUNTING_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"cancel","outputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"}],"name":"castVote","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteBySig","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"}],"name":"castVoteWithReason","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"castVoteWithReasonAndParams","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteWithReasonAndParamsBySig","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"execute","outputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"getProposalId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"getVotesWithParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"hashProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalEta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalNeedsQueuing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalProposer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"queue","outputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum IGovernor.ProposalState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"CLOCK_MODE()":"4bf5d7e9","COUNTING_MODE()":"dd4e2ba5","cancel(address[],uint256[],bytes[],bytes32)":"452115d6","castVote(uint256,uint8)":"56781388","castVoteBySig(uint256,uint8,address,bytes)":"8ff262e3","castVoteWithReason(uint256,uint8,string)":"7b3c71d3","castVoteWithReasonAndParams(uint256,uint8,string,bytes)":"5f398a14","castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)":"5b8d0e0d","clock()":"91ddadf4","execute(address[],uint256[],bytes[],bytes32)":"2656227d","getProposalId(address[],uint256[],bytes[],bytes32)":"a8f8a668","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","name()":"06fdde03","proposalDeadline(uint256)":"c01f9e37","proposalEta(uint256)":"ab58fb8e","proposalNeedsQueuing(uint256)":"a9a95294","proposalProposer(uint256)":"143489d0","proposalSnapshot(uint256)":"2d63f693","proposalThreshold()":"b58131b0","propose(address[],uint256[],bytes[],string)":"7d5e81e2","queue(address[],uint256[],bytes[],bytes32)":"160cbed7","quorum(uint256)":"f8ce560a","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","version()":"54fd4d50","votingDelay()":"3932abb1","votingPeriod()":"02a251a3"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorAlreadyCastVote\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorAlreadyQueuedProposal\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorDisabledDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"votes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"threshold\",\"type\":\"uint256\"}],\"name\":\"GovernorInsufficientProposerVotes\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"calldatas\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidProposalLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorInvalidSignature\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteParams\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"votingPeriod\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidVotingPeriod\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNonexistentProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNotQueuedProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyExecutor\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorQueueNotImplemented\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"}],\"name\":\"GovernorRestrictedProposer\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorUnableToCancel\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"current\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"GovernorUnexpectedProposalState\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"signatures\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteStart\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteEnd\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"etaSeconds\",\"type\":\"uint256\"}],\"name\":\"ProposalQueued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"VoteCast\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"VoteCastWithParams\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COUNTING_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"}],\"name\":\"castVote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"castVoteWithReason\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParamsBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"getProposalId\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"getVotesWithParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasVoted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"hashProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalDeadline\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalEta\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalNeedsQueuing\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalProposer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalSnapshot\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalThreshold\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"propose\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"queue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"state\",\"outputs\":[{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingPeriod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the {Governor} core. NOTE: Event parameters lack the `indexed` keyword for compatibility with GovernorBravo events. Making event parameters `indexed` affects how events are decoded, potentially breaking existing indexers.\",\"errors\":{\"GovernorAlreadyCastVote(address)\":[{\"details\":\"The vote was already cast.\"}],\"GovernorAlreadyQueuedProposal(uint256)\":[{\"details\":\"The proposal has already been queued.\"}],\"GovernorDisabledDeposit()\":[{\"details\":\"Token deposits are disabled in this contract.\"}],\"GovernorInsufficientProposerVotes(address,uint256,uint256)\":[{\"details\":\"The `proposer` does not have the required votes to create a proposal.\"}],\"GovernorInvalidProposalLength(uint256,uint256,uint256)\":[{\"details\":\"Empty proposal or a mismatch between the parameters length for a proposal call.\"}],\"GovernorInvalidSignature(address)\":[{\"details\":\"The provided signature is not valid for the expected `voter`. If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}.\"}],\"GovernorInvalidVoteParams()\":[{\"details\":\"The provided params buffer is not supported by the counting module.\"}],\"GovernorInvalidVoteType()\":[{\"details\":\"The vote type used is not valid for the corresponding counting module.\"}],\"GovernorInvalidVotingPeriod(uint256)\":[{\"details\":\"The voting period set is not a valid period.\"}],\"GovernorNonexistentProposal(uint256)\":[{\"details\":\"The `proposalId` doesn't exist.\"}],\"GovernorNotQueuedProposal(uint256)\":[{\"details\":\"The proposal hasn't been queued yet.\"}],\"GovernorOnlyExecutor(address)\":[{\"details\":\"The `account` is not the governance executor.\"}],\"GovernorQueueNotImplemented()\":[{\"details\":\"Queue operation is not implemented for this governor. Execute should be called directly.\"}],\"GovernorRestrictedProposer(address)\":[{\"details\":\"The `proposer` is not allowed to create a proposal.\"}],\"GovernorUnableToCancel(uint256,address)\":[{\"details\":\"The given `account` is unable to cancel the proposal with given `proposalId`.\"}],\"GovernorUnexpectedProposalState(uint256,uint8,bytes32)\":[{\"details\":\"The current state of a proposal is not the required for performing an operation. The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position counting from right to left. NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist). This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated). See {Governor-_encodeStateBitmap}.\"}]},\"events\":{\"ProposalCanceled(uint256)\":{\"details\":\"Emitted when a proposal is canceled.\"},\"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)\":{\"details\":\"Emitted when a proposal is created.\"},\"ProposalExecuted(uint256)\":{\"details\":\"Emitted when a proposal is executed.\"},\"ProposalQueued(uint256,uint256)\":{\"details\":\"Emitted when a proposal is queued.\"},\"VoteCast(address,uint256,uint8,uint256,string)\":{\"details\":\"Emitted when a vote is cast without params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\"},\"VoteCastWithParams(address,uint256,uint8,uint256,string,bytes)\":{\"details\":\"Emitted when a vote is cast with params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used. `params` are additional encoded parameters. Their interpretation also depends on the voting module used.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Description of the clock\"},\"COUNTING_MODE()\":{\"details\":\"A description of the possible `support` values for {castVote} and the way these votes are counted, meant to be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`. There are 2 standard keys: `support` and `quorum`. - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`. - `quorum=bravo` means that only For votes are counted towards quorum. - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum. If a counting module makes use of encoded `params`, it should include this under a `params` key with a unique name that describes the behavior. For example: - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain. - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote. NOTE: The string can be decoded by the standard https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`] JavaScript class.\"},\"cancel(address[],uint256[],bytes[],bytes32)\":{\"details\":\"Cancel a proposal. A proposal is cancellable by the proposer, but only while it is Pending state, i.e. before the vote starts. Emits a {ProposalCanceled} event.\"},\"castVote(uint256,uint8)\":{\"details\":\"Cast a vote Emits a {VoteCast} event.\"},\"castVoteBySig(uint256,uint8,address,bytes)\":{\"details\":\"Cast a vote using the voter's signature, including ERC-1271 signature support. Emits a {VoteCast} event.\"},\"castVoteWithReason(uint256,uint8,string)\":{\"details\":\"Cast a vote with a reason Emits a {VoteCast} event.\"},\"castVoteWithReasonAndParams(uint256,uint8,string,bytes)\":{\"details\":\"Cast a vote with a reason and additional encoded parameters Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params.\"},\"castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)\":{\"details\":\"Cast a vote with a reason and additional encoded parameters using the voter's signature, including ERC-1271 signature support. Emits a {VoteCast} or {VoteCastWithParams} event depending on the length of params.\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"Execute a successful proposal. This requires the quorum to be reached, the vote to be successful, and the deadline to be reached. Depending on the governor it might also be required that the proposal was queued and that some delay passed. Emits a {ProposalExecuted} event. NOTE: Some modules can modify the requirements for execution, for example by adding an additional timelock.\"},\"getProposalId(address[],uint256[],bytes[],bytes32)\":{\"details\":\"Function used to get the proposal id from the proposal details.\"},\"getVotes(address,uint256)\":{\"details\":\"Voting power of an `account` at a specific `timepoint`. Note: this can be implemented in a number of ways, for example by reading the delegated balance from one (or multiple), {ERC20Votes} tokens.\"},\"getVotesWithParams(address,uint256,bytes)\":{\"details\":\"Voting power of an `account` at a specific `timepoint` given additional encoded parameters.\"},\"hasVoted(uint256,address)\":{\"details\":\"Returns whether `account` has cast a vote on `proposalId`.\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"details\":\"Hashing function used to (re)build the proposal id from the proposal details. NOTE: For all off-chain and external calls, use {getProposalId}.\"},\"name()\":{\"details\":\"Name of the governor instance (used in building the EIP-712 domain separator).\"},\"proposalDeadline(uint256)\":{\"details\":\"Timepoint at which votes close. If using block number, votes close at the end of this block, so it is possible to cast a vote during this block.\"},\"proposalEta(uint256)\":{\"details\":\"The time when a queued proposal becomes executable (\\\"ETA\\\"). Unlike {proposalSnapshot} and {proposalDeadline}, this doesn't use the governor clock, and instead relies on the executor's clock which may be different. In most cases this will be a timestamp.\"},\"proposalNeedsQueuing(uint256)\":{\"details\":\"Whether a proposal needs to be queued before execution.\"},\"proposalProposer(uint256)\":{\"details\":\"The account that created a proposal.\"},\"proposalSnapshot(uint256)\":{\"details\":\"Timepoint used to retrieve user's votes and quorum. If using block number (as per Compound's Comp), the snapshot is performed at the end of this block. Hence, voting for this proposal starts at the beginning of the following block.\"},\"proposalThreshold()\":{\"details\":\"The number of votes required in order for a voter to become a proposer.\"},\"propose(address[],uint256[],bytes[],string)\":{\"details\":\"Create a new proposal. Vote start after a delay specified by {IGovernor-votingDelay} and lasts for a duration specified by {IGovernor-votingPeriod}. Emits a {ProposalCreated} event. NOTE: The state of the Governor and `targets` may change between the proposal creation and its execution. This may be the result of third party actions on the targeted contracts, or other governor proposals. For example, the balance of this contract could be updated or its access control permissions may be modified, possibly compromising the proposal's ability to execute successfully (e.g. the governor doesn't have enough value to cover a proposal with multiple transfers).\"},\"queue(address[],uint256[],bytes[],bytes32)\":{\"details\":\"Queue a proposal. Some governors require this step to be performed before execution can happen. If queuing is not necessary, this function may revert. Queuing a proposal requires the quorum to be reached, the vote to be successful, and the deadline to be reached. Emits a {ProposalQueued} event.\"},\"quorum(uint256)\":{\"details\":\"Minimum number of cast voted required for a proposal to be successful. NOTE: The `timepoint` parameter corresponds to the snapshot used for counting vote. This allows to scale the quorum depending on values such as the totalSupply of a token at this timepoint (see {ERC20Votes}).\"},\"state(uint256)\":{\"details\":\"Current state of a proposal, following Compound's convention\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"version()\":{\"details\":\"Version of the governor instance (used in building the EIP-712 domain separator). Default: \\\"1\\\"\"},\"votingDelay()\":{\"details\":\"Delay, between the proposal is created and the vote starts. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. This can be increased to leave time for users to buy voting power, or delegate it, before the voting of a proposal starts. NOTE: While this interface returns a uint256, timepoints are stored as uint48 following the ERC-6372 clock type. Consequently this value must fit in a uint48 (when added to the current clock). See {IERC6372-clock}.\"},\"votingPeriod()\":{\"details\":\"Delay between the vote start and vote end. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting duration compared to the voting delay. NOTE: This value is stored when the proposal is submitted so that possible changes to the value do not affect proposals that have already been submitted. The type used to save it is a uint32. Consequently, while this interface returns a uint256, the value it returns should fit in a uint32.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"COUNTING_MODE()\":{\"notice\":\"module:voting\"},\"getProposalId(address[],uint256[],bytes[],bytes32)\":{\"notice\":\"module:core\"},\"getVotes(address,uint256)\":{\"notice\":\"module:reputation\"},\"getVotesWithParams(address,uint256,bytes)\":{\"notice\":\"module:reputation\"},\"hasVoted(uint256,address)\":{\"notice\":\"module:voting\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"notice\":\"module:core\"},\"name()\":{\"notice\":\"module:core\"},\"proposalDeadline(uint256)\":{\"notice\":\"module:core\"},\"proposalEta(uint256)\":{\"notice\":\"module:core\"},\"proposalNeedsQueuing(uint256)\":{\"notice\":\"module:core\"},\"proposalProposer(uint256)\":{\"notice\":\"module:core\"},\"proposalSnapshot(uint256)\":{\"notice\":\"module:core\"},\"proposalThreshold()\":{\"notice\":\"module:core\"},\"quorum(uint256)\":{\"notice\":\"module:user-config\"},\"state(uint256)\":{\"notice\":\"module:core\"},\"version()\":{\"notice\":\"module:core\"},\"votingDelay()\":{\"notice\":\"module:user-config\"},\"votingPeriod()\":{\"notice\":\"module:user-config\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/IGovernor.sol\":\"IGovernor\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0xeb587bd3f646da7897e80f4ea71dc5ee324e985ca2d17136021aa2443f41a73f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://230f29f8a38f45150616864c0988e0ef3c269e651eefeb0ad3778e3ae387b0fd\",\"dweb:/ipfs/QmTgFRV3XAPDjXA6Gp2ug1ifwyiZGUeFDYivHJ61eJg73g\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/TimelockController.sol":{"TimelockController":{"abi":[{"inputs":[{"internalType":"uint256","name":"minDelay","type":"uint256"},{"internalType":"address[]","name":"proposers","type":"address[]"},{"internalType":"address[]","name":"executors","type":"address[]"},{"internalType":"address","name":"admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"delay","type":"uint256"},{"internalType":"uint256","name":"minDelay","type":"uint256"}],"name":"TimelockInsufficientDelay","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"payloads","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"TimelockInvalidOperationLength","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"TimelockUnauthorizedCaller","type":"error"},{"inputs":[{"internalType":"bytes32","name":"predecessorId","type":"bytes32"}],"name":"TimelockUnexecutedPredecessor","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"TimelockUnexpectedOperationState","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"CallExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"CallSalt","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"delay","type":"uint256"}],"name":"CallScheduled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"Cancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldDuration","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newDuration","type":"uint256"}],"name":"MinDelayChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"CANCELLER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXECUTOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROPOSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"cancel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"payload","type":"bytes"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"execute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"payloads","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"executeBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getMinDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getOperationState","outputs":[{"internalType":"enum TimelockController.OperationState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"hashOperation","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"payloads","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"hashOperationBatch","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperation","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationDone","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationPending","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationReady","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256","name":"delay","type":"uint256"}],"name":"schedule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"payloads","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256","name":"delay","type":"uint256"}],"name":"scheduleBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDelay","type":"uint256"}],"name":"updateDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{"abi_decode_address_fromMemory":{"entryPoint":445,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_array_address_dyn_fromMemory":{"entryPoint":466,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_memory":{"entryPoint":385,"id":null,"parameterSlots":1,"returnSlots":1},"fun_grantRole":{"entryPoint":951,"id":256,"parameterSlots":1,"returnSlots":1},"fun_grantRole_1299":{"entryPoint":661,"id":256,"parameterSlots":1,"returnSlots":1},"fun_grantRole_1301":{"entryPoint":789,"id":256,"parameterSlots":1,"returnSlots":1},"fun_grantRole_1303":{"entryPoint":1108,"id":256,"parameterSlots":1,"returnSlots":1},"increment_uint256":{"entryPoint":580,"id":null,"parameterSlots":1,"returnSlots":1},"memory_array_index_access_address_dyn":{"entryPoint":618,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[],"linkReferences":{},"object":"6080604052346200017c5762001a74803803806200001d8162000181565b9283398101906080818303126200017c57805160208201516001600160401b03908181116200017c578462000054918501620001d2565b9360408401519182116200017c57620000766060916200007e938601620001d2565b9301620001bd565b906200008a3062000295565b506001600160a01b039180831662000169575b5060005b8451811015620000f05780620000c984620000c1620000ea94896200026a565b511662000315565b50620000e384620000db83896200026a565b5116620003b7565b5062000244565b620000a1565b50925060005b8251811015620001245780620000e383620001166200011e94876200026a565b511662000454565b620000f6565b7f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d560408580600255815190600082526020820152a16040516115629081620004f28239f35b620001749062000295565b50386200009d565b600080fd5b6040519190601f01601f191682016001600160401b03811183821017620001a757604052565b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036200017c57565b81601f820112156200017c578051916001600160401b038311620001a7578260051b60209283806200020681850162000181565b8097815201928201019283116200017c578301905b8282106200022a575050505090565b8380916200023884620001bd565b8152019101906200021b565b6000198114620002545760010190565b634e487b7160e01b600052601160045260246000fd5b80518210156200027f5760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b031660008181527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205490919060ff166200031157818052816020526040822081835260205260408220600160ff19825416179055339160008051602062001a548339815191528180a4600190565b5090565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260408120549091907fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff16620003b257808352826020526040832082845260205260408320600160ff1982541617905560008051602062001a54833981519152339380a4600190565b505090565b6001600160a01b031660008181527fc3ad33e20b0c56a223ad5104fff154aa010f8715b9c981fd38fdc60a4d1a52fb60205260408120549091907ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7839060ff16620003b257808352826020526040832082845260205260408320600160ff1982541617905560008051602062001a54833981519152339380a4600190565b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d706960205260408120549091907fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e639060ff16620003b257808352826020526040832082845260205260408320600160ff1982541617905560008051602062001a54833981519152339380a460019056fe60406080815260049081361015610020575b5050361561001e57600080fd5b005b600091823560e01c90816301d5062a14610b0c57816301ffc9a714610a9957816307bd026514610a7057838263134008d3146109c65750816313bc9f20146109a6578163150b7a0214610951578163248a9ca3146109275781632ab0f529146109075781632f2ff15d146108dd57816331d50750146108bd57816336568abe14610877578163584b153e1461084e57816364d62353146107e25781637958004c1461079f5781638065657f1461077d5781638f2a0bb0146105e05781638f61f4f5146105a557816391d148541461055f578163a217fddf14610544578163b08e51c014610509578163b1c5f427146104dd578163bc197c8114610457578163c4d252f514610388578163d45c443514610360578163d547741f1461031b578163e38335e5146101d8578163f23a6e6114610180575063f27a0c9203610011573461017c578160031936011261017c576020906002549051908152f35b5080fd5b8284346101d55760a03660031901126101d55761019b610bea565b506101a4610c05565b50608435906001600160401b0382116101d557506020926101c791369101610ce8565b505163f23a6e6160e01b8152f35b80fd5b90506101e336610d5f565b90989495919392969760008051602061150d8339815191528b528a602052858b208b805260205260ff868c2054161561030d575b838314801590610303575b6102d5575061023a610241918a868a878b888f611158565b988961145b565b885b81811061025757896102548a6114c1565b80f35b80808a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b588a8a6102c86102b08f988c6102a9828e6102a38f6102d09f61029e9185916112f3565b611319565b976112f3565b359561132d565b906102bd82828787611406565b8d51948594856113df565b0390a36112ce565b610243565b85516001624fcdef60e01b031981529081019283526020830185905260408301849052918291506060010390fd5b5084831415610222565b61031633610ea9565b610217565b9190503461035c578060031936011261035c5761035891356103536001610340610c05565b9383875286602052862001543390610efc565b610fab565b5080f35b8280fd5b90503461035c57602036600319011261035c5760209282913581526001845220549051908152f35b9190503461035c57602036600319011261035c578135917ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838085528460205282852033865260205260ff83862054161561043c57506103e68361104d565b156104205750829082825260016020528120557fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb708280a280f35b826044925191635ead8eb560e01b835282015260066024820152fd5b604492519163e2517d3f60e01b835233908301526024820152fd5b8284346101d55760a03660031901126101d557610472610bea565b5061047b610c05565b506001600160401b039060443582811161017c5761049c9036908601610dc0565b5060643582811161017c576104b49036908601610dc0565b506084359182116101d557506020926104cf91369101610ce8565b505163bc197c8160e01b8152f35b50503461017c576020906105026104f336610d5f565b96959095949194939293611158565b9051908152f35b50503461017c578160031936011261017c57602090517ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838152f35b50503461017c578160031936011261017c5751908152602090f35b90503461035c578160031936011261035c578160209360ff92610580610c05565b903582528186528282206001600160a01b039091168252855220549151911615158152f35b50503461017c578160031936011261017c57602090517fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc18152f35b9190503461035c5760c036600319011261035c576001600160401b03908235828111610779576106139036908501610d2f565b936024358481116107755761062b9036908301610d2f565b94604435908111610771576106439036908401610d2f565b606493919335906084359760a4359361065b33610e26565b818b14801590610767575b610739575061067c89848489858f8b908e611158565b99610687858c61136e565b8a8c5b8a8382106106d0578e838e838161069f578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a28180808380f35b610732927f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b6102c88f8c88978f92898f8f8f6107209161071a61029e868094610727996112f3565b9a6112f3565b359861132d565b915196879687611296565b8b9061068a565b88516001624fcdef60e01b031981529081018b81526020810184905260408101929092529081906060010390fd5b50828b1415610666565b8780fd5b8680fd5b8480fd5b50503461017c5760209061050261079336610c48565b94939093929192611103565b83833461017c57602036600319011261017c576107bc83356110a6565b905191838210156107cf57602083838152f35b634e487b7160e01b815260218452602490fd5b9190503461035c57602036600319011261035c5781359130330361083857507f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5906002548151908152836020820152a160025580f35b602491519063e2850c5960e01b82523390820152fd5b8284346101d55760203660031901126101d5575061086e6020923561104d565b90519015158152f35b83833461017c578060031936011261017c57610891610c05565b90336001600160a01b038316036108ae5750610358919235610fab565b5163334bd91960e11b81528390fd5b8284346101d55760203660031901126101d5575061086e60209235611020565b9190503461035c578060031936011261035c5761035891356109026001610340610c05565b610f2d565b8284346101d55760203660031901126101d5575061086e6020923561108e565b90503461035c57602036600319011261035c57816020936001923581528085522001549051908152f35b8284346101d55760803660031901126101d55761096c610bea565b50610975610c05565b50606435906001600160401b0382116101d5575060209261099891369101610ce8565b5051630a85bd0160e11b8152f35b8284346101d55760203660031901126101d5575061086e60209235611076565b610254610a4482610a5a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b58610a3b896109fe36610c48565b60008051602061150d8339815191528b9a9697939598929a528a602052828b208b805260205260ff838c20541615610a62575b8985858a8a611103565b998a988961145b565b610a5083838888611406565b51948594856113df565b0390a36114c1565b610a6b33610ea9565b610a31565b50503461017c578160031936011261017c576020905160008051602061150d8339815191528152f35b90503461035c57602036600319011261035c57359063ffffffff60e01b821680920361035c5760209250630271189760e51b8214918215610ade575b50519015158152f35b909150637965db0b60e01b8114908115610afb575b509038610ad5565b6301ffc9a760e01b14905038610af3565b9190503461035c5760c036600319011261035c57610b28610bea565b90836024356044356001600160401b03811161035c577f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca95610b6c91369101610c1b565b95909160643595610bad6084359760a43590610b8733610e26565b610b958a828d8a8989611103565b9a8b97610ba2848a61136e565b8a5196879687611296565b0390a381610bb9578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a23880808380f35b600435906001600160a01b0382168203610c0057565b600080fd5b602435906001600160a01b0382168203610c0057565b9181601f84011215610c00578235916001600160401b038311610c005760208381860195010111610c0057565b60a0600319820112610c00576004356001600160a01b0381168103610c00579160243591604435906001600160401b038211610c0057610c8a91600401610c1b565b90916064359060843590565b90601f801991011681019081106001600160401b03821117610cb757604052565b634e487b7160e01b600052604160045260246000fd5b6001600160401b038111610cb757601f01601f191660200190565b81601f82011215610c0057803590610cff82610ccd565b92610d0d6040519485610c96565b82845260208383010111610c0057816000926020809301838601378301015290565b9181601f84011215610c00578235916001600160401b038311610c00576020808501948460051b010111610c0057565b9060a0600319830112610c00576001600160401b03600435818111610c005783610d8b91600401610d2f565b93909392602435838111610c005782610da691600401610d2f565b93909392604435918211610c0057610c8a91600401610d2f565b9080601f83011215610c00578135906001600160401b038211610cb7578160051b60405193602093610df485840187610c96565b85528380860192820101928311610c00578301905b828210610e17575050505090565b81358152908301908301610e09565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260409020547fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff1615610e8b575050565b604492506040519163e2517d3f60e01b835260048301526024820152fd5b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d7069602052604090205460008051602061150d8339815191529060ff1615610e8b575050565b80600052600060205260406000209160018060a01b0316918260005260205260ff6040600020541615610e8b575050565b9060009180835282602052604083209160018060a01b03169182845260205260ff60408420541615600014610fa657808352826020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b9060009180835282602052604083209160018060a01b03169182845260205260ff604084205416600014610fa65780835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b611029906110a6565b600481101561103757151590565b634e487b7160e01b600052602160045260246000fd5b611056906110a6565b6004811015611037576001811490811561106e575090565b600291501490565b61107f906110a6565b60048110156110375760021490565b611097906110a6565b60048110156110375760031490565b600052600160205260406000205480156000146110c35750600090565b600181036110d15750600390565b4210156110dd57600190565b600290565b908060209392818452848401376000828201840152601f01601f1916010190565b9461113961115294959293604051968795602087019960018060a01b03168a52604087015260a0606087015260c08601916110e2565b91608084015260a083015203601f198101835282610c96565b51902090565b969294909695919560405196602091828901998060c08b0160a08d525260e08a01919060005b81811061126e57505050601f19898203810160408b0152888252976001600160fb1b038111610c00579089969495939897929160051b80928a830137019380888601878703606089015252604085019460408260051b82010195836000925b848410611205575050505050506111529550608084015260a083015203908101835282610c96565b9193969850919398999496603f198282030184528935601e1984360301811215610c005783018681019190356001600160401b038111610c00578036038313610c0057611257889283926001956110e2565b9b0194019401918b98969394919a9997959a6111dd565b90919283359060018060a01b038216809203610c00579081528501928501919060010161117e565b9290936112c4926080959897969860018060a01b03168552602085015260a0604085015260a08401916110e2565b9460608201520152565b60001981146112dd5760010190565b634e487b7160e01b600052601160045260246000fd5b91908110156113035760051b0190565b634e487b7160e01b600052603260045260246000fd5b356001600160a01b0381168103610c005790565b91908110156113035760051b81013590601e1981360301821215610c005701908135916001600160401b038311610c00576020018236038113610c00579190565b9061137882611020565b6113bf576002548082106113a157504201908142116112dd576000526001602052604060002055565b6044925060405191635433660960e01b835260048301526024820152fd5b604051635ead8eb560e01b81526004810183905260016024820152604490fd5b611403949260609260018060a01b03168252602082015281604082015201916110e2565b90565b61145093600093928493826040519384928337810185815203925af13d15611453573d9061143382610ccd565b916114416040519384610c96565b82523d6000602084013e6114e1565b50565b6060906114e1565b61146481611076565b156114a2575080151580611492575b61147a5750565b6024906040519063121534c360e31b82526004820152fd5b5061149c8161108e565b15611473565b60449060405190635ead8eb560e01b8252600482015260046024820152fd5b6114ca81611076565b156114a25760005260016020526001604060002055565b90919061150a57508051156114f857805190602001fd5b60405163d6bda27560e01b8152600490fd5b56fed8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63a2646970667358221220768a1de682affad2b79f94b3dd93b85212b69ace65421db783abb4407f79eaa364736f6c634300081400332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE PUSH3 0x17C JUMPI PUSH3 0x1A74 DUP1 CODESIZE SUB DUP1 PUSH3 0x1D DUP2 PUSH3 0x181 JUMP JUMPDEST SWAP3 DUP4 CODECOPY DUP2 ADD SWAP1 PUSH1 0x80 DUP2 DUP4 SUB SLT PUSH3 0x17C JUMPI DUP1 MLOAD PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 DUP2 GT PUSH3 0x17C JUMPI DUP5 PUSH3 0x54 SWAP2 DUP6 ADD PUSH3 0x1D2 JUMP JUMPDEST SWAP4 PUSH1 0x40 DUP5 ADD MLOAD SWAP2 DUP3 GT PUSH3 0x17C JUMPI PUSH3 0x76 PUSH1 0x60 SWAP2 PUSH3 0x7E SWAP4 DUP7 ADD PUSH3 0x1D2 JUMP JUMPDEST SWAP4 ADD PUSH3 0x1BD JUMP JUMPDEST SWAP1 PUSH3 0x8A ADDRESS PUSH3 0x295 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP1 DUP4 AND PUSH3 0x169 JUMPI JUMPDEST POP PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH3 0xF0 JUMPI DUP1 PUSH3 0xC9 DUP5 PUSH3 0xC1 PUSH3 0xEA SWAP5 DUP10 PUSH3 0x26A JUMP JUMPDEST MLOAD AND PUSH3 0x315 JUMP JUMPDEST POP PUSH3 0xE3 DUP5 PUSH3 0xDB DUP4 DUP10 PUSH3 0x26A JUMP JUMPDEST MLOAD AND PUSH3 0x3B7 JUMP JUMPDEST POP PUSH3 0x244 JUMP JUMPDEST PUSH3 0xA1 JUMP JUMPDEST POP SWAP3 POP PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH3 0x124 JUMPI DUP1 PUSH3 0xE3 DUP4 PUSH3 0x116 PUSH3 0x11E SWAP5 DUP8 PUSH3 0x26A JUMP JUMPDEST MLOAD AND PUSH3 0x454 JUMP JUMPDEST PUSH3 0xF6 JUMP JUMPDEST PUSH32 0x11C24F4EAD16507C69AC467FBD5E4EED5FB5C699626D2CC6D66421DF253886D5 PUSH1 0x40 DUP6 DUP1 PUSH1 0x2 SSTORE DUP2 MLOAD SWAP1 PUSH1 0x0 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x40 MLOAD PUSH2 0x1562 SWAP1 DUP2 PUSH3 0x4F2 DUP3 CODECOPY RETURN JUMPDEST PUSH3 0x174 SWAP1 PUSH3 0x295 JUMP JUMPDEST POP CODESIZE PUSH3 0x9D JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP2 SWAP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP4 DUP3 LT OR PUSH3 0x1A7 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST MLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH3 0x17C JUMPI JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH3 0x17C JUMPI DUP1 MLOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH3 0x1A7 JUMPI DUP3 PUSH1 0x5 SHL PUSH1 0x20 SWAP3 DUP4 DUP1 PUSH3 0x206 DUP2 DUP6 ADD PUSH3 0x181 JUMP JUMPDEST DUP1 SWAP8 DUP2 MSTORE ADD SWAP3 DUP3 ADD ADD SWAP3 DUP4 GT PUSH3 0x17C JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH3 0x22A JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 DUP1 SWAP2 PUSH3 0x238 DUP5 PUSH3 0x1BD JUMP JUMPDEST DUP2 MSTORE ADD SWAP2 ADD SWAP1 PUSH3 0x21B JUMP JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH3 0x254 JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 MLOAD DUP3 LT ISZERO PUSH3 0x27F JUMPI PUSH1 0x20 SWAP2 PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0xAD3228B676F7D3CD4284A5443F17F1962B36E491B30A40B2405849E597BA5FB5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 PUSH1 0xFF AND PUSH3 0x311 JUMPI DUP2 DUP1 MSTORE DUP2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP3 KECCAK256 DUP2 DUP4 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP3 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE CALLER SWAP2 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x1A54 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP2 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0x3412D5605AC6CD444957CEDB533E5DACAD6378B4BC819EBE3652188A665066D5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 PUSH32 0xB09AA5AEB3702CFD50B6B62BC4532604938F21248A27A1D5CA736082B6819CC1 SWAP1 PUSH1 0xFF AND PUSH3 0x3B2 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x1A54 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST POP POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0xC3AD33E20B0C56A223AD5104FFF154AA010F8715B9C981FD38FDC60A4D1A52FB PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 PUSH32 0xFD643C72710C63C0180259ABA6B2D05451E3591A24E58B62239378085726F783 SWAP1 PUSH1 0xFF AND PUSH3 0x3B2 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x1A54 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0xDAE2AA361DFD1CA020A396615627D436107C35EFF9FE7738A3512819782D7069 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 SWAP1 PUSH1 0xFF AND PUSH3 0x3B2 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x1A54 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP INVALID PUSH1 0x40 PUSH1 0x80 DUP2 MSTORE PUSH1 0x4 SWAP1 DUP2 CALLDATASIZE LT ISZERO PUSH2 0x20 JUMPI JUMPDEST POP POP CALLDATASIZE ISZERO PUSH2 0x1E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST STOP JUMPDEST PUSH1 0x0 SWAP2 DUP3 CALLDATALOAD PUSH1 0xE0 SHR SWAP1 DUP2 PUSH4 0x1D5062A EQ PUSH2 0xB0C JUMPI DUP2 PUSH4 0x1FFC9A7 EQ PUSH2 0xA99 JUMPI DUP2 PUSH4 0x7BD0265 EQ PUSH2 0xA70 JUMPI DUP4 DUP3 PUSH4 0x134008D3 EQ PUSH2 0x9C6 JUMPI POP DUP2 PUSH4 0x13BC9F20 EQ PUSH2 0x9A6 JUMPI DUP2 PUSH4 0x150B7A02 EQ PUSH2 0x951 JUMPI DUP2 PUSH4 0x248A9CA3 EQ PUSH2 0x927 JUMPI DUP2 PUSH4 0x2AB0F529 EQ PUSH2 0x907 JUMPI DUP2 PUSH4 0x2F2FF15D EQ PUSH2 0x8DD JUMPI DUP2 PUSH4 0x31D50750 EQ PUSH2 0x8BD JUMPI DUP2 PUSH4 0x36568ABE EQ PUSH2 0x877 JUMPI DUP2 PUSH4 0x584B153E EQ PUSH2 0x84E JUMPI DUP2 PUSH4 0x64D62353 EQ PUSH2 0x7E2 JUMPI DUP2 PUSH4 0x7958004C EQ PUSH2 0x79F JUMPI DUP2 PUSH4 0x8065657F EQ PUSH2 0x77D JUMPI DUP2 PUSH4 0x8F2A0BB0 EQ PUSH2 0x5E0 JUMPI DUP2 PUSH4 0x8F61F4F5 EQ PUSH2 0x5A5 JUMPI DUP2 PUSH4 0x91D14854 EQ PUSH2 0x55F JUMPI DUP2 PUSH4 0xA217FDDF EQ PUSH2 0x544 JUMPI DUP2 PUSH4 0xB08E51C0 EQ PUSH2 0x509 JUMPI DUP2 PUSH4 0xB1C5F427 EQ PUSH2 0x4DD JUMPI DUP2 PUSH4 0xBC197C81 EQ PUSH2 0x457 JUMPI DUP2 PUSH4 0xC4D252F5 EQ PUSH2 0x388 JUMPI DUP2 PUSH4 0xD45C4435 EQ PUSH2 0x360 JUMPI DUP2 PUSH4 0xD547741F EQ PUSH2 0x31B JUMPI DUP2 PUSH4 0xE38335E5 EQ PUSH2 0x1D8 JUMPI DUP2 PUSH4 0xF23A6E61 EQ PUSH2 0x180 JUMPI POP PUSH4 0xF27A0C92 SUB PUSH2 0x11 JUMPI CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 PUSH1 0x2 SLOAD SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST POP DUP1 REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI PUSH2 0x19B PUSH2 0xBEA JUMP JUMPDEST POP PUSH2 0x1A4 PUSH2 0xC05 JUMP JUMPDEST POP PUSH1 0x84 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x1D5 JUMPI POP PUSH1 0x20 SWAP3 PUSH2 0x1C7 SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xCE8 JUMP JUMPDEST POP MLOAD PUSH4 0xF23A6E61 PUSH1 0xE0 SHL DUP2 MSTORE RETURN JUMPDEST DUP1 REVERT JUMPDEST SWAP1 POP PUSH2 0x1E3 CALLDATASIZE PUSH2 0xD5F JUMP JUMPDEST SWAP1 SWAP9 SWAP5 SWAP6 SWAP2 SWAP4 SWAP3 SWAP7 SWAP8 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP12 MSTORE DUP11 PUSH1 0x20 MSTORE DUP6 DUP12 KECCAK256 DUP12 DUP1 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF DUP7 DUP13 KECCAK256 SLOAD AND ISZERO PUSH2 0x30D JUMPI JUMPDEST DUP4 DUP4 EQ DUP1 ISZERO SWAP1 PUSH2 0x303 JUMPI JUMPDEST PUSH2 0x2D5 JUMPI POP PUSH2 0x23A PUSH2 0x241 SWAP2 DUP11 DUP7 DUP11 DUP8 DUP12 DUP9 DUP16 PUSH2 0x1158 JUMP JUMPDEST SWAP9 DUP10 PUSH2 0x145B JUMP JUMPDEST DUP9 JUMPDEST DUP2 DUP2 LT PUSH2 0x257 JUMPI DUP10 PUSH2 0x254 DUP11 PUSH2 0x14C1 JUMP JUMPDEST DUP1 RETURN JUMPDEST DUP1 DUP1 DUP11 PUSH32 0xC2617EFA69BAB66782FA219543714338489C4E9E178271560A91B82C3F612B58 DUP11 DUP11 PUSH2 0x2C8 PUSH2 0x2B0 DUP16 SWAP9 DUP13 PUSH2 0x2A9 DUP3 DUP15 PUSH2 0x2A3 DUP16 PUSH2 0x2D0 SWAP16 PUSH2 0x29E SWAP2 DUP6 SWAP2 PUSH2 0x12F3 JUMP JUMPDEST PUSH2 0x1319 JUMP JUMPDEST SWAP8 PUSH2 0x12F3 JUMP JUMPDEST CALLDATALOAD SWAP6 PUSH2 0x132D JUMP JUMPDEST SWAP1 PUSH2 0x2BD DUP3 DUP3 DUP8 DUP8 PUSH2 0x1406 JUMP JUMPDEST DUP14 MLOAD SWAP5 DUP6 SWAP5 DUP6 PUSH2 0x13DF JUMP JUMPDEST SUB SWAP1 LOG3 PUSH2 0x12CE JUMP JUMPDEST PUSH2 0x243 JUMP JUMPDEST DUP6 MLOAD PUSH1 0x1 PUSH3 0x4FCDEF PUSH1 0xE0 SHL SUB NOT DUP2 MSTORE SWAP1 DUP2 ADD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD DUP6 SWAP1 MSTORE PUSH1 0x40 DUP4 ADD DUP5 SWAP1 MSTORE SWAP2 DUP3 SWAP2 POP PUSH1 0x60 ADD SUB SWAP1 REVERT JUMPDEST POP DUP5 DUP4 EQ ISZERO PUSH2 0x222 JUMP JUMPDEST PUSH2 0x316 CALLER PUSH2 0xEA9 JUMP JUMPDEST PUSH2 0x217 JUMP JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x35C JUMPI PUSH2 0x358 SWAP2 CALLDATALOAD PUSH2 0x353 PUSH1 0x1 PUSH2 0x340 PUSH2 0xC05 JUMP JUMPDEST SWAP4 DUP4 DUP8 MSTORE DUP7 PUSH1 0x20 MSTORE DUP7 KECCAK256 ADD SLOAD CALLER SWAP1 PUSH2 0xEFC JUMP JUMPDEST PUSH2 0xFAB JUMP JUMPDEST POP DUP1 RETURN JUMPDEST DUP3 DUP1 REVERT JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI PUSH1 0x20 SWAP3 DUP3 SWAP2 CALLDATALOAD DUP2 MSTORE PUSH1 0x1 DUP5 MSTORE KECCAK256 SLOAD SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI DUP2 CALLDATALOAD SWAP2 PUSH32 0xFD643C72710C63C0180259ABA6B2D05451E3591A24E58B62239378085726F783 DUP1 DUP6 MSTORE DUP5 PUSH1 0x20 MSTORE DUP3 DUP6 KECCAK256 CALLER DUP7 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF DUP4 DUP7 KECCAK256 SLOAD AND ISZERO PUSH2 0x43C JUMPI POP PUSH2 0x3E6 DUP4 PUSH2 0x104D JUMP JUMPDEST ISZERO PUSH2 0x420 JUMPI POP DUP3 SWAP1 DUP3 DUP3 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE DUP2 KECCAK256 SSTORE PUSH32 0xBAA1EB22F2A492BA1A5FEA61B8DF4D27C6C8B5F3971E63BB58FA14FF72EEDB70 DUP3 DUP1 LOG2 DUP1 RETURN JUMPDEST DUP3 PUSH1 0x44 SWAP3 MLOAD SWAP2 PUSH4 0x5EAD8EB5 PUSH1 0xE0 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x6 PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x44 SWAP3 MLOAD SWAP2 PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP4 MSTORE CALLER SWAP1 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI PUSH2 0x472 PUSH2 0xBEA JUMP JUMPDEST POP PUSH2 0x47B PUSH2 0xC05 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 PUSH1 0x44 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x17C JUMPI PUSH2 0x49C SWAP1 CALLDATASIZE SWAP1 DUP7 ADD PUSH2 0xDC0 JUMP JUMPDEST POP PUSH1 0x64 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x17C JUMPI PUSH2 0x4B4 SWAP1 CALLDATASIZE SWAP1 DUP7 ADD PUSH2 0xDC0 JUMP JUMPDEST POP PUSH1 0x84 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0x1D5 JUMPI POP PUSH1 0x20 SWAP3 PUSH2 0x4CF SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xCE8 JUMP JUMPDEST POP MLOAD PUSH4 0xBC197C81 PUSH1 0xE0 SHL DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 PUSH2 0x502 PUSH2 0x4F3 CALLDATASIZE PUSH2 0xD5F JUMP JUMPDEST SWAP7 SWAP6 SWAP1 SWAP6 SWAP5 SWAP2 SWAP5 SWAP4 SWAP3 SWAP4 PUSH2 0x1158 JUMP JUMPDEST SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 MLOAD PUSH32 0xFD643C72710C63C0180259ABA6B2D05451E3591A24E58B62239378085726F783 DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x35C JUMPI DUP2 PUSH1 0x20 SWAP4 PUSH1 0xFF SWAP3 PUSH2 0x580 PUSH2 0xC05 JUMP JUMPDEST SWAP1 CALLDATALOAD DUP3 MSTORE DUP2 DUP7 MSTORE DUP3 DUP3 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP3 MSTORE DUP6 MSTORE KECCAK256 SLOAD SWAP2 MLOAD SWAP2 AND ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 MLOAD PUSH32 0xB09AA5AEB3702CFD50B6B62BC4532604938F21248A27A1D5CA736082B6819CC1 DUP2 MSTORE RETURN JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP3 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x779 JUMPI PUSH2 0x613 SWAP1 CALLDATASIZE SWAP1 DUP6 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP4 PUSH1 0x24 CALLDATALOAD DUP5 DUP2 GT PUSH2 0x775 JUMPI PUSH2 0x62B SWAP1 CALLDATASIZE SWAP1 DUP4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP5 PUSH1 0x44 CALLDATALOAD SWAP1 DUP2 GT PUSH2 0x771 JUMPI PUSH2 0x643 SWAP1 CALLDATASIZE SWAP1 DUP5 ADD PUSH2 0xD2F JUMP JUMPDEST PUSH1 0x64 SWAP4 SWAP2 SWAP4 CALLDATALOAD SWAP1 PUSH1 0x84 CALLDATALOAD SWAP8 PUSH1 0xA4 CALLDATALOAD SWAP4 PUSH2 0x65B CALLER PUSH2 0xE26 JUMP JUMPDEST DUP2 DUP12 EQ DUP1 ISZERO SWAP1 PUSH2 0x767 JUMPI JUMPDEST PUSH2 0x739 JUMPI POP PUSH2 0x67C DUP10 DUP5 DUP5 DUP10 DUP6 DUP16 DUP12 SWAP1 DUP15 PUSH2 0x1158 JUMP JUMPDEST SWAP10 PUSH2 0x687 DUP6 DUP13 PUSH2 0x136E JUMP JUMPDEST DUP11 DUP13 JUMPDEST DUP11 DUP4 DUP3 LT PUSH2 0x6D0 JUMPI DUP15 DUP4 DUP15 DUP4 DUP2 PUSH2 0x69F JUMPI DUP4 DUP1 RETURN JUMPDEST PUSH32 0x20FDA5FD27A1EA7BF5B9567F143AC5470BB059374A27E8F67CB44F946F6D0387 SWAP2 PUSH1 0x20 SWAP2 MLOAD SWAP1 DUP2 MSTORE LOG2 DUP2 DUP1 DUP1 DUP4 DUP1 RETURN JUMPDEST PUSH2 0x732 SWAP3 PUSH32 0x4CF4410CC57040E44862EF0F45F3DD5A5E02DB8EB8ADD648D4B0E236F1D07DCA DUP12 DUP12 PUSH2 0x2C8 DUP16 DUP13 DUP9 SWAP8 DUP16 SWAP3 DUP10 DUP16 DUP16 DUP16 PUSH2 0x720 SWAP2 PUSH2 0x71A PUSH2 0x29E DUP7 DUP1 SWAP5 PUSH2 0x727 SWAP10 PUSH2 0x12F3 JUMP JUMPDEST SWAP11 PUSH2 0x12F3 JUMP JUMPDEST CALLDATALOAD SWAP9 PUSH2 0x132D JUMP JUMPDEST SWAP2 MLOAD SWAP7 DUP8 SWAP7 DUP8 PUSH2 0x1296 JUMP JUMPDEST DUP12 SWAP1 PUSH2 0x68A JUMP JUMPDEST DUP9 MLOAD PUSH1 0x1 PUSH3 0x4FCDEF PUSH1 0xE0 SHL SUB NOT DUP2 MSTORE SWAP1 DUP2 ADD DUP12 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x40 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x60 ADD SUB SWAP1 REVERT JUMPDEST POP DUP3 DUP12 EQ ISZERO PUSH2 0x666 JUMP JUMPDEST DUP8 DUP1 REVERT JUMPDEST DUP7 DUP1 REVERT JUMPDEST DUP5 DUP1 REVERT JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 PUSH2 0x502 PUSH2 0x793 CALLDATASIZE PUSH2 0xC48 JUMP JUMPDEST SWAP5 SWAP4 SWAP1 SWAP4 SWAP3 SWAP2 SWAP3 PUSH2 0x1103 JUMP JUMPDEST DUP4 DUP4 CALLVALUE PUSH2 0x17C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x17C JUMPI PUSH2 0x7BC DUP4 CALLDATALOAD PUSH2 0x10A6 JUMP JUMPDEST SWAP1 MLOAD SWAP2 DUP4 DUP3 LT ISZERO PUSH2 0x7CF JUMPI PUSH1 0x20 DUP4 DUP4 DUP2 MSTORE RETURN JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x21 DUP5 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI DUP2 CALLDATALOAD SWAP2 ADDRESS CALLER SUB PUSH2 0x838 JUMPI POP PUSH32 0x11C24F4EAD16507C69AC467FBD5E4EED5FB5C699626D2CC6D66421DF253886D5 SWAP1 PUSH1 0x2 SLOAD DUP2 MLOAD SWAP1 DUP2 MSTORE DUP4 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x2 SSTORE DUP1 RETURN JUMPDEST PUSH1 0x24 SWAP2 MLOAD SWAP1 PUSH4 0xE2850C59 PUSH1 0xE0 SHL DUP3 MSTORE CALLER SWAP1 DUP3 ADD MSTORE REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x104D JUMP JUMPDEST SWAP1 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST DUP4 DUP4 CALLVALUE PUSH2 0x17C JUMPI DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH2 0x891 PUSH2 0xC05 JUMP JUMPDEST SWAP1 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SUB PUSH2 0x8AE JUMPI POP PUSH2 0x358 SWAP2 SWAP3 CALLDATALOAD PUSH2 0xFAB JUMP JUMPDEST MLOAD PUSH4 0x334BD919 PUSH1 0xE1 SHL DUP2 MSTORE DUP4 SWAP1 REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x1020 JUMP JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x35C JUMPI PUSH2 0x358 SWAP2 CALLDATALOAD PUSH2 0x902 PUSH1 0x1 PUSH2 0x340 PUSH2 0xC05 JUMP JUMPDEST PUSH2 0xF2D JUMP JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x108E JUMP JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI DUP2 PUSH1 0x20 SWAP4 PUSH1 0x1 SWAP3 CALLDATALOAD DUP2 MSTORE DUP1 DUP6 MSTORE KECCAK256 ADD SLOAD SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI PUSH2 0x96C PUSH2 0xBEA JUMP JUMPDEST POP PUSH2 0x975 PUSH2 0xC05 JUMP JUMPDEST POP PUSH1 0x64 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x1D5 JUMPI POP PUSH1 0x20 SWAP3 PUSH2 0x998 SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xCE8 JUMP JUMPDEST POP MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE RETURN JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x1076 JUMP JUMPDEST PUSH2 0x254 PUSH2 0xA44 DUP3 PUSH2 0xA5A PUSH32 0xC2617EFA69BAB66782FA219543714338489C4E9E178271560A91B82C3F612B58 PUSH2 0xA3B DUP10 PUSH2 0x9FE CALLDATASIZE PUSH2 0xC48 JUMP JUMPDEST PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP12 SWAP11 SWAP7 SWAP8 SWAP4 SWAP6 SWAP9 SWAP3 SWAP11 MSTORE DUP11 PUSH1 0x20 MSTORE DUP3 DUP12 KECCAK256 DUP12 DUP1 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF DUP4 DUP13 KECCAK256 SLOAD AND ISZERO PUSH2 0xA62 JUMPI JUMPDEST DUP10 DUP6 DUP6 DUP11 DUP11 PUSH2 0x1103 JUMP JUMPDEST SWAP10 DUP11 SWAP9 DUP10 PUSH2 0x145B JUMP JUMPDEST PUSH2 0xA50 DUP4 DUP4 DUP9 DUP9 PUSH2 0x1406 JUMP JUMPDEST MLOAD SWAP5 DUP6 SWAP5 DUP6 PUSH2 0x13DF JUMP JUMPDEST SUB SWAP1 LOG3 PUSH2 0x14C1 JUMP JUMPDEST PUSH2 0xA6B CALLER PUSH2 0xEA9 JUMP JUMPDEST PUSH2 0xA31 JUMP JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 MLOAD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP2 MSTORE RETURN JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI CALLDATALOAD SWAP1 PUSH4 0xFFFFFFFF PUSH1 0xE0 SHL DUP3 AND DUP1 SWAP3 SUB PUSH2 0x35C JUMPI PUSH1 0x20 SWAP3 POP PUSH4 0x2711897 PUSH1 0xE5 SHL DUP3 EQ SWAP2 DUP3 ISZERO PUSH2 0xADE JUMPI JUMPDEST POP MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST SWAP1 SWAP2 POP PUSH4 0x7965DB0B PUSH1 0xE0 SHL DUP2 EQ SWAP1 DUP2 ISZERO PUSH2 0xAFB JUMPI JUMPDEST POP SWAP1 CODESIZE PUSH2 0xAD5 JUMP JUMPDEST PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ SWAP1 POP CODESIZE PUSH2 0xAF3 JUMP JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI PUSH2 0xB28 PUSH2 0xBEA JUMP JUMPDEST SWAP1 DUP4 PUSH1 0x24 CALLDATALOAD PUSH1 0x44 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x35C JUMPI PUSH32 0x4CF4410CC57040E44862EF0F45F3DD5A5E02DB8EB8ADD648D4B0E236F1D07DCA SWAP6 PUSH2 0xB6C SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xC1B JUMP JUMPDEST SWAP6 SWAP1 SWAP2 PUSH1 0x64 CALLDATALOAD SWAP6 PUSH2 0xBAD PUSH1 0x84 CALLDATALOAD SWAP8 PUSH1 0xA4 CALLDATALOAD SWAP1 PUSH2 0xB87 CALLER PUSH2 0xE26 JUMP JUMPDEST PUSH2 0xB95 DUP11 DUP3 DUP14 DUP11 DUP10 DUP10 PUSH2 0x1103 JUMP JUMPDEST SWAP11 DUP12 SWAP8 PUSH2 0xBA2 DUP5 DUP11 PUSH2 0x136E JUMP JUMPDEST DUP11 MLOAD SWAP7 DUP8 SWAP7 DUP8 PUSH2 0x1296 JUMP JUMPDEST SUB SWAP1 LOG3 DUP2 PUSH2 0xBB9 JUMPI DUP4 DUP1 RETURN JUMPDEST PUSH32 0x20FDA5FD27A1EA7BF5B9567F143AC5470BB059374A27E8F67CB44F946F6D0387 SWAP2 PUSH1 0x20 SWAP2 MLOAD SWAP1 DUP2 MSTORE LOG2 CODESIZE DUP1 DUP1 DUP4 DUP1 RETURN JUMPDEST PUSH1 0x4 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0xC00 JUMPI JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0xC00 JUMPI JUMP JUMPDEST SWAP2 DUP2 PUSH1 0x1F DUP5 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP3 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0xC00 JUMPI PUSH1 0x20 DUP4 DUP2 DUP7 ADD SWAP6 ADD ADD GT PUSH2 0xC00 JUMPI JUMP JUMPDEST PUSH1 0xA0 PUSH1 0x3 NOT DUP3 ADD SLT PUSH2 0xC00 JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 SUB PUSH2 0xC00 JUMPI SWAP2 PUSH1 0x24 CALLDATALOAD SWAP2 PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0xC00 JUMPI PUSH2 0xC8A SWAP2 PUSH1 0x4 ADD PUSH2 0xC1B JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x64 CALLDATALOAD SWAP1 PUSH1 0x84 CALLDATALOAD SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP1 NOT SWAP2 ADD AND DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0xCB7 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0xCB7 JUMPI PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP1 CALLDATALOAD SWAP1 PUSH2 0xCFF DUP3 PUSH2 0xCCD JUMP JUMPDEST SWAP3 PUSH2 0xD0D PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0xC96 JUMP JUMPDEST DUP3 DUP5 MSTORE PUSH1 0x20 DUP4 DUP4 ADD ADD GT PUSH2 0xC00 JUMPI DUP2 PUSH1 0x0 SWAP3 PUSH1 0x20 DUP1 SWAP4 ADD DUP4 DUP7 ADD CALLDATACOPY DUP4 ADD ADD MSTORE SWAP1 JUMP JUMPDEST SWAP2 DUP2 PUSH1 0x1F DUP5 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP3 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0xC00 JUMPI PUSH1 0x20 DUP1 DUP6 ADD SWAP5 DUP5 PUSH1 0x5 SHL ADD ADD GT PUSH2 0xC00 JUMPI JUMP JUMPDEST SWAP1 PUSH1 0xA0 PUSH1 0x3 NOT DUP4 ADD SLT PUSH2 0xC00 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0xC00 JUMPI DUP4 PUSH2 0xD8B SWAP2 PUSH1 0x4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP4 SWAP1 SWAP4 SWAP3 PUSH1 0x24 CALLDATALOAD DUP4 DUP2 GT PUSH2 0xC00 JUMPI DUP3 PUSH2 0xDA6 SWAP2 PUSH1 0x4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP4 SWAP1 SWAP4 SWAP3 PUSH1 0x44 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0xC00 JUMPI PUSH2 0xC8A SWAP2 PUSH1 0x4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP2 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0xCB7 JUMPI DUP2 PUSH1 0x5 SHL PUSH1 0x40 MLOAD SWAP4 PUSH1 0x20 SWAP4 PUSH2 0xDF4 DUP6 DUP5 ADD DUP8 PUSH2 0xC96 JUMP JUMPDEST DUP6 MSTORE DUP4 DUP1 DUP7 ADD SWAP3 DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0xC00 JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xE17 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP2 CALLDATALOAD DUP2 MSTORE SWAP1 DUP4 ADD SWAP1 DUP4 ADD PUSH2 0xE09 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0x3412D5605AC6CD444957CEDB533E5DACAD6378B4BC819EBE3652188A665066D5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH32 0xB09AA5AEB3702CFD50B6B62BC4532604938F21248A27A1D5CA736082B6819CC1 SWAP1 PUSH1 0xFF AND ISZERO PUSH2 0xE8B JUMPI POP POP JUMP JUMPDEST PUSH1 0x44 SWAP3 POP PUSH1 0x40 MLOAD SWAP2 PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP4 MSTORE PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0xDAE2AA361DFD1CA020A396615627D436107C35EFF9FE7738A3512819782D7069 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 PUSH1 0xFF AND ISZERO PUSH2 0xE8B JUMPI POP POP JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0xE8B JUMPI POP POP JUMP JUMPDEST SWAP1 PUSH1 0x0 SWAP2 DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 DUP5 KECCAK256 SLOAD AND ISZERO PUSH1 0x0 EQ PUSH2 0xFA6 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST POP POP SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x0 SWAP2 DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 DUP5 KECCAK256 SLOAD AND PUSH1 0x0 EQ PUSH2 0xFA6 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0xFF NOT DUP2 SLOAD AND SWAP1 SSTORE PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x1029 SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x1056 SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI PUSH1 0x1 DUP2 EQ SWAP1 DUP2 ISZERO PUSH2 0x106E JUMPI POP SWAP1 JUMP JUMPDEST PUSH1 0x2 SWAP2 POP EQ SWAP1 JUMP JUMPDEST PUSH2 0x107F SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI PUSH1 0x2 EQ SWAP1 JUMP JUMPDEST PUSH2 0x1097 SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI PUSH1 0x3 EQ SWAP1 JUMP JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD DUP1 ISZERO PUSH1 0x0 EQ PUSH2 0x10C3 JUMPI POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 SUB PUSH2 0x10D1 JUMPI POP PUSH1 0x3 SWAP1 JUMP JUMPDEST TIMESTAMP LT ISZERO PUSH2 0x10DD JUMPI PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH1 0x2 SWAP1 JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x20 SWAP4 SWAP3 DUP2 DUP5 MSTORE DUP5 DUP5 ADD CALLDATACOPY PUSH1 0x0 DUP3 DUP3 ADD DUP5 ADD MSTORE PUSH1 0x1F ADD PUSH1 0x1F NOT AND ADD ADD SWAP1 JUMP JUMPDEST SWAP5 PUSH2 0x1139 PUSH2 0x1152 SWAP5 SWAP6 SWAP3 SWAP4 PUSH1 0x40 MLOAD SWAP7 DUP8 SWAP6 PUSH1 0x20 DUP8 ADD SWAP10 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP11 MSTORE PUSH1 0x40 DUP8 ADD MSTORE PUSH1 0xA0 PUSH1 0x60 DUP8 ADD MSTORE PUSH1 0xC0 DUP7 ADD SWAP2 PUSH2 0x10E2 JUMP JUMPDEST SWAP2 PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD MSTORE SUB PUSH1 0x1F NOT DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0xC96 JUMP JUMPDEST MLOAD SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST SWAP7 SWAP3 SWAP5 SWAP1 SWAP7 SWAP6 SWAP2 SWAP6 PUSH1 0x40 MLOAD SWAP7 PUSH1 0x20 SWAP2 DUP3 DUP10 ADD SWAP10 DUP1 PUSH1 0xC0 DUP12 ADD PUSH1 0xA0 DUP14 MSTORE MSTORE PUSH1 0xE0 DUP11 ADD SWAP2 SWAP1 PUSH1 0x0 JUMPDEST DUP2 DUP2 LT PUSH2 0x126E JUMPI POP POP POP PUSH1 0x1F NOT DUP10 DUP3 SUB DUP2 ADD PUSH1 0x40 DUP12 ADD MSTORE DUP9 DUP3 MSTORE SWAP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xFB SHL SUB DUP2 GT PUSH2 0xC00 JUMPI SWAP1 DUP10 SWAP7 SWAP5 SWAP6 SWAP4 SWAP9 SWAP8 SWAP3 SWAP2 PUSH1 0x5 SHL DUP1 SWAP3 DUP11 DUP4 ADD CALLDATACOPY ADD SWAP4 DUP1 DUP9 DUP7 ADD DUP8 DUP8 SUB PUSH1 0x60 DUP10 ADD MSTORE MSTORE PUSH1 0x40 DUP6 ADD SWAP5 PUSH1 0x40 DUP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP6 DUP4 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x1205 JUMPI POP POP POP POP POP POP PUSH2 0x1152 SWAP6 POP PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD MSTORE SUB SWAP1 DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0xC96 JUMP JUMPDEST SWAP2 SWAP4 SWAP7 SWAP9 POP SWAP2 SWAP4 SWAP9 SWAP10 SWAP5 SWAP7 PUSH1 0x3F NOT DUP3 DUP3 SUB ADD DUP5 MSTORE DUP10 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT ISZERO PUSH2 0xC00 JUMPI DUP4 ADD DUP7 DUP2 ADD SWAP2 SWAP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0xC00 JUMPI DUP1 CALLDATASIZE SUB DUP4 SGT PUSH2 0xC00 JUMPI PUSH2 0x1257 DUP9 SWAP3 DUP4 SWAP3 PUSH1 0x1 SWAP6 PUSH2 0x10E2 JUMP JUMPDEST SWAP12 ADD SWAP5 ADD SWAP5 ADD SWAP2 DUP12 SWAP9 SWAP7 SWAP4 SWAP5 SWAP2 SWAP11 SWAP10 SWAP8 SWAP6 SWAP11 PUSH2 0x11DD JUMP JUMPDEST SWAP1 SWAP2 SWAP3 DUP4 CALLDATALOAD SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP3 AND DUP1 SWAP3 SUB PUSH2 0xC00 JUMPI SWAP1 DUP2 MSTORE DUP6 ADD SWAP3 DUP6 ADD SWAP2 SWAP1 PUSH1 0x1 ADD PUSH2 0x117E JUMP JUMPDEST SWAP3 SWAP1 SWAP4 PUSH2 0x12C4 SWAP3 PUSH1 0x80 SWAP6 SWAP9 SWAP8 SWAP7 SWAP9 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP6 MSTORE PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD SWAP2 PUSH2 0x10E2 JUMP JUMPDEST SWAP5 PUSH1 0x60 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH2 0x12DD JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP2 SWAP1 DUP2 LT ISZERO PUSH2 0x1303 JUMPI PUSH1 0x5 SHL ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 SUB PUSH2 0xC00 JUMPI SWAP1 JUMP JUMPDEST SWAP2 SWAP1 DUP2 LT ISZERO PUSH2 0x1303 JUMPI PUSH1 0x5 SHL DUP2 ADD CALLDATALOAD SWAP1 PUSH1 0x1E NOT DUP2 CALLDATASIZE SUB ADD DUP3 SLT ISZERO PUSH2 0xC00 JUMPI ADD SWAP1 DUP2 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0xC00 JUMPI PUSH1 0x20 ADD DUP3 CALLDATASIZE SUB DUP2 SGT PUSH2 0xC00 JUMPI SWAP2 SWAP1 JUMP JUMPDEST SWAP1 PUSH2 0x1378 DUP3 PUSH2 0x1020 JUMP JUMPDEST PUSH2 0x13BF JUMPI PUSH1 0x2 SLOAD DUP1 DUP3 LT PUSH2 0x13A1 JUMPI POP TIMESTAMP ADD SWAP1 DUP2 TIMESTAMP GT PUSH2 0x12DD JUMPI PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE JUMP JUMPDEST PUSH1 0x44 SWAP3 POP PUSH1 0x40 MLOAD SWAP2 PUSH4 0x54336609 PUSH1 0xE0 SHL DUP4 MSTORE PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5EAD8EB5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST PUSH2 0x1403 SWAP5 SWAP3 PUSH1 0x60 SWAP3 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP2 PUSH1 0x40 DUP3 ADD MSTORE ADD SWAP2 PUSH2 0x10E2 JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH2 0x1450 SWAP4 PUSH1 0x0 SWAP4 SWAP3 DUP5 SWAP4 DUP3 PUSH1 0x40 MLOAD SWAP4 DUP5 SWAP3 DUP4 CALLDATACOPY DUP2 ADD DUP6 DUP2 MSTORE SUB SWAP3 GAS CALL RETURNDATASIZE ISZERO PUSH2 0x1453 JUMPI RETURNDATASIZE SWAP1 PUSH2 0x1433 DUP3 PUSH2 0xCCD JUMP JUMPDEST SWAP2 PUSH2 0x1441 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0xC96 JUMP JUMPDEST DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x14E1 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x60 SWAP1 PUSH2 0x14E1 JUMP JUMPDEST PUSH2 0x1464 DUP2 PUSH2 0x1076 JUMP JUMPDEST ISZERO PUSH2 0x14A2 JUMPI POP DUP1 ISZERO ISZERO DUP1 PUSH2 0x1492 JUMPI JUMPDEST PUSH2 0x147A JUMPI POP JUMP JUMPDEST PUSH1 0x24 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x121534C3 PUSH1 0xE3 SHL DUP3 MSTORE PUSH1 0x4 DUP3 ADD MSTORE REVERT JUMPDEST POP PUSH2 0x149C DUP2 PUSH2 0x108E JUMP JUMPDEST ISZERO PUSH2 0x1473 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x5EAD8EB5 PUSH1 0xE0 SHL DUP3 MSTORE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x4 PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH2 0x14CA DUP2 PUSH2 0x1076 JUMP JUMPDEST ISZERO PUSH2 0x14A2 JUMPI PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE JUMP JUMPDEST SWAP1 SWAP2 SWAP1 PUSH2 0x150A JUMPI POP DUP1 MLOAD ISZERO PUSH2 0x14F8 JUMPI DUP1 MLOAD SWAP1 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST JUMP INVALID 0xD8 0xAA 0xF BALANCE SWAP5 SWAP8 BYTE 0x2A GT PUSH7 0x79F7C2090F6939 0xC8 0xD4 0xE0 BYTE 0x2A DUP14 PUSH31 0x41D55E5351469E63A2646970667358221220768A1DE682AFFAD2B79F94B3DD SWAP4 0xB8 MSTORE SLT 0xB6 SWAP11 0xCE PUSH6 0x421DB783ABB4 BLOCKHASH PUSH32 0x79EAA364736F6C634300081400332F8788117E7EFF1D82E926EC794901D17C78 MUL 0x4A POP 0x27 MULMOD BLOCKHASH ADDRESS GASLIMIT BLOCKHASH 0xA7 CALLER PUSH6 0x6F0D00000000 ","sourceMap":"1084:15213:5:-:0;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::i;:::-;4429:4;4390:45;4429:4;4390:45;:::i;:::-;-1:-1:-1;;;;;;1084:15213:5;;;;4472:87;;-1:-1:-1;4619:13:5;-1:-1:-1;4656:3:5;2232:4:0;;4634:20:5;;;;;4701:12;4675:39;4701:12;;4656:3;4701:12;;;:::i;:::-;1204:26;1084:15213;4675:39;:::i;:::-;;4728:40;4755:12;;;;;:::i;:::-;1204:26;1084:15213;4728:40;:::i;:::-;;4656:3;:::i;:::-;4619:13;;4634:20;;;;-1:-1:-1;4861:3:5;2232:4:0;;4839:20:5;;;;;4906:12;4880:39;4906:12;;4861:3;4906:12;;;:::i;:::-;1204:26;1084:15213;4880:39;:::i;4861:3::-;4824:13;;4839:20;4975:27;1084:15213;4839:20;1276:26;4940:20;1276:26;1084:15213;;1276:26;-1:-1:-1;1276:26:5;;1084:15213;1276:26;;;4975:27;1084:15213;;;;;;;;;4472:87;4511:37;;;:::i;:::-;;4472:87;;;1084:15213;-1:-1:-1;1084:15213:5;;;;;;;;;-1:-1:-1;;1084:15213:5;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;:::o;:::-;;;;;;;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;2232:4:0;-1:-1:-1;;2232:4:0;;;;;;;:::o;:::-;1084:15213:5;;;2232:4:0;;;;;;;;1204:26:5;2232:4:0;;1204:26:5;;;;;;;;;;;;:::o;:::-;1084:15213;;;1204:26;;;;;;;;6179:316:0;-1:-1:-1;;;;;1084:15213:5;2232:4:0;1084:15213:5;;;;;;;;;;2232:4:0;;1084:15213:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;735:10:30;6370:40:0;-1:-1:-1;;;;;;;;;;;6370:40:0;;;1084:15213:5;6424:11:0;:::o;6272:217::-;6466:12;;:::o;6179:316::-;-1:-1:-1;;;;;1084:15213:5;2954:6:0;1084:15213:5;;;;;;;;;;2954:6:0;;1084:15213:5;1204:26;;1084:15213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;735:10:30;6370:40:0;;;1084:15213:5;6424:11:0;:::o;6272:217::-;6466:12;;;:::o;6179:316::-;-1:-1:-1;;;;;1084:15213:5;2954:6:0;1084:15213:5;;;;;;;;;;2954:6:0;;1084:15213:5;1349:27;;1084:15213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;735:10:30;6370:40:0;;;1084:15213:5;6424:11:0;:::o;6179:316::-;-1:-1:-1;;;;;1084:15213:5;2954:6:0;1084:15213:5;;;;;;;;;;2954:6:0;;1084:15213:5;1276:26;;1084:15213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;735:10:30;6370:40:0;;;1084:15213:5;6424:11:0;:::o"},"deployedBytecode":{"functionDebugData":{"abi_decode_address":{"entryPoint":3077,"id":null,"parameterSlots":0,"returnSlots":1},"abi_decode_address_10973":{"entryPoint":3050,"id":null,"parameterSlots":0,"returnSlots":1},"abi_decode_addresst_uint256t_bytes_calldatat_bytes32t_bytes32":{"entryPoint":3144,"id":null,"parameterSlots":1,"returnSlots":6},"abi_decode_array_address_dyn_calldata":{"entryPoint":3375,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_array_address_dyn_calldatat_array_uint256_dyn_calldatat_array_bytes_calldata_dyn_calldatat_bytes32t_bytes32":{"entryPoint":3423,"id":null,"parameterSlots":1,"returnSlots":8},"abi_decode_array_uint256_dyn":{"entryPoint":3520,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_bytes":{"entryPoint":3304,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_bytes_calldata":{"entryPoint":3099,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_address_uint256_bytes_calldata":{"entryPoint":5087,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_address_uint256_bytes_calldata_bytes32_uint256":{"entryPoint":4758,"id":null,"parameterSlots":7,"returnSlots":1},"abi_encode_bytes_calldata":{"entryPoint":4322,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_uint256_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"array_allocation_size_bytes":{"entryPoint":3277,"id":null,"parameterSlots":1,"returnSlots":1},"calldata_array_index_access_address_dyn_calldata":{"entryPoint":4851,"id":null,"parameterSlots":3,"returnSlots":1},"calldata_array_index_access_bytes_calldata_dyn_calldata":{"entryPoint":4909,"id":null,"parameterSlots":3,"returnSlots":2},"finalize_allocation":{"entryPoint":3222,"id":null,"parameterSlots":2,"returnSlots":0},"fun_afterCall":{"entryPoint":5313,"id":3777,"parameterSlots":1,"returnSlots":0},"fun_beforeCall":{"entryPoint":5211,"id":3750,"parameterSlots":2,"returnSlots":0},"fun_checkRole":{"entryPoint":3836,"id":114,"parameterSlots":2,"returnSlots":0},"fun_checkRole_10974":{"entryPoint":3622,"id":114,"parameterSlots":1,"returnSlots":0},"fun_checkRole_10977":{"entryPoint":3753,"id":114,"parameterSlots":1,"returnSlots":0},"fun_execute":{"entryPoint":5126,"id":3710,"parameterSlots":4,"returnSlots":0},"fun_getOperationState":{"entryPoint":4262,"id":3211,"parameterSlots":1,"returnSlots":1},"fun_grantRole":{"entryPoint":3885,"id":256,"parameterSlots":2,"returnSlots":1},"fun_hashOperation":{"entryPoint":4355,"id":3248,"parameterSlots":6,"returnSlots":1},"fun_hashOperationBatch":{"entryPoint":4440,"id":3279,"parameterSlots":8,"returnSlots":1},"fun_isOperation":{"entryPoint":4128,"id":3095,"parameterSlots":1,"returnSlots":1},"fun_isOperationDone":{"entryPoint":4238,"id":3153,"parameterSlots":1,"returnSlots":1},"fun_isOperationPending":{"entryPoint":4173,"id":3121,"parameterSlots":1,"returnSlots":1},"fun_isOperationReady":{"entryPoint":4214,"id":3137,"parameterSlots":1,"returnSlots":1},"fun_revokeRole":{"entryPoint":4011,"id":294,"parameterSlots":2,"returnSlots":1},"fun_schedule":{"entryPoint":4974,"id":3485,"parameterSlots":2,"returnSlots":0},"fun_verifyCallResult":{"entryPoint":5345,"id":7077,"parameterSlots":2,"returnSlots":1},"increment_uint256":{"entryPoint":4814,"id":null,"parameterSlots":1,"returnSlots":1},"read_from_calldatat_address":{"entryPoint":4889,"id":null,"parameterSlots":1,"returnSlots":1}},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"60406080815260049081361015610020575b5050361561001e57600080fd5b005b600091823560e01c90816301d5062a14610b0c57816301ffc9a714610a9957816307bd026514610a7057838263134008d3146109c65750816313bc9f20146109a6578163150b7a0214610951578163248a9ca3146109275781632ab0f529146109075781632f2ff15d146108dd57816331d50750146108bd57816336568abe14610877578163584b153e1461084e57816364d62353146107e25781637958004c1461079f5781638065657f1461077d5781638f2a0bb0146105e05781638f61f4f5146105a557816391d148541461055f578163a217fddf14610544578163b08e51c014610509578163b1c5f427146104dd578163bc197c8114610457578163c4d252f514610388578163d45c443514610360578163d547741f1461031b578163e38335e5146101d8578163f23a6e6114610180575063f27a0c9203610011573461017c578160031936011261017c576020906002549051908152f35b5080fd5b8284346101d55760a03660031901126101d55761019b610bea565b506101a4610c05565b50608435906001600160401b0382116101d557506020926101c791369101610ce8565b505163f23a6e6160e01b8152f35b80fd5b90506101e336610d5f565b90989495919392969760008051602061150d8339815191528b528a602052858b208b805260205260ff868c2054161561030d575b838314801590610303575b6102d5575061023a610241918a868a878b888f611158565b988961145b565b885b81811061025757896102548a6114c1565b80f35b80808a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b588a8a6102c86102b08f988c6102a9828e6102a38f6102d09f61029e9185916112f3565b611319565b976112f3565b359561132d565b906102bd82828787611406565b8d51948594856113df565b0390a36112ce565b610243565b85516001624fcdef60e01b031981529081019283526020830185905260408301849052918291506060010390fd5b5084831415610222565b61031633610ea9565b610217565b9190503461035c578060031936011261035c5761035891356103536001610340610c05565b9383875286602052862001543390610efc565b610fab565b5080f35b8280fd5b90503461035c57602036600319011261035c5760209282913581526001845220549051908152f35b9190503461035c57602036600319011261035c578135917ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838085528460205282852033865260205260ff83862054161561043c57506103e68361104d565b156104205750829082825260016020528120557fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb708280a280f35b826044925191635ead8eb560e01b835282015260066024820152fd5b604492519163e2517d3f60e01b835233908301526024820152fd5b8284346101d55760a03660031901126101d557610472610bea565b5061047b610c05565b506001600160401b039060443582811161017c5761049c9036908601610dc0565b5060643582811161017c576104b49036908601610dc0565b506084359182116101d557506020926104cf91369101610ce8565b505163bc197c8160e01b8152f35b50503461017c576020906105026104f336610d5f565b96959095949194939293611158565b9051908152f35b50503461017c578160031936011261017c57602090517ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838152f35b50503461017c578160031936011261017c5751908152602090f35b90503461035c578160031936011261035c578160209360ff92610580610c05565b903582528186528282206001600160a01b039091168252855220549151911615158152f35b50503461017c578160031936011261017c57602090517fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc18152f35b9190503461035c5760c036600319011261035c576001600160401b03908235828111610779576106139036908501610d2f565b936024358481116107755761062b9036908301610d2f565b94604435908111610771576106439036908401610d2f565b606493919335906084359760a4359361065b33610e26565b818b14801590610767575b610739575061067c89848489858f8b908e611158565b99610687858c61136e565b8a8c5b8a8382106106d0578e838e838161069f578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a28180808380f35b610732927f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b6102c88f8c88978f92898f8f8f6107209161071a61029e868094610727996112f3565b9a6112f3565b359861132d565b915196879687611296565b8b9061068a565b88516001624fcdef60e01b031981529081018b81526020810184905260408101929092529081906060010390fd5b50828b1415610666565b8780fd5b8680fd5b8480fd5b50503461017c5760209061050261079336610c48565b94939093929192611103565b83833461017c57602036600319011261017c576107bc83356110a6565b905191838210156107cf57602083838152f35b634e487b7160e01b815260218452602490fd5b9190503461035c57602036600319011261035c5781359130330361083857507f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5906002548151908152836020820152a160025580f35b602491519063e2850c5960e01b82523390820152fd5b8284346101d55760203660031901126101d5575061086e6020923561104d565b90519015158152f35b83833461017c578060031936011261017c57610891610c05565b90336001600160a01b038316036108ae5750610358919235610fab565b5163334bd91960e11b81528390fd5b8284346101d55760203660031901126101d5575061086e60209235611020565b9190503461035c578060031936011261035c5761035891356109026001610340610c05565b610f2d565b8284346101d55760203660031901126101d5575061086e6020923561108e565b90503461035c57602036600319011261035c57816020936001923581528085522001549051908152f35b8284346101d55760803660031901126101d55761096c610bea565b50610975610c05565b50606435906001600160401b0382116101d5575060209261099891369101610ce8565b5051630a85bd0160e11b8152f35b8284346101d55760203660031901126101d5575061086e60209235611076565b610254610a4482610a5a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b58610a3b896109fe36610c48565b60008051602061150d8339815191528b9a9697939598929a528a602052828b208b805260205260ff838c20541615610a62575b8985858a8a611103565b998a988961145b565b610a5083838888611406565b51948594856113df565b0390a36114c1565b610a6b33610ea9565b610a31565b50503461017c578160031936011261017c576020905160008051602061150d8339815191528152f35b90503461035c57602036600319011261035c57359063ffffffff60e01b821680920361035c5760209250630271189760e51b8214918215610ade575b50519015158152f35b909150637965db0b60e01b8114908115610afb575b509038610ad5565b6301ffc9a760e01b14905038610af3565b9190503461035c5760c036600319011261035c57610b28610bea565b90836024356044356001600160401b03811161035c577f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca95610b6c91369101610c1b565b95909160643595610bad6084359760a43590610b8733610e26565b610b958a828d8a8989611103565b9a8b97610ba2848a61136e565b8a5196879687611296565b0390a381610bb9578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a23880808380f35b600435906001600160a01b0382168203610c0057565b600080fd5b602435906001600160a01b0382168203610c0057565b9181601f84011215610c00578235916001600160401b038311610c005760208381860195010111610c0057565b60a0600319820112610c00576004356001600160a01b0381168103610c00579160243591604435906001600160401b038211610c0057610c8a91600401610c1b565b90916064359060843590565b90601f801991011681019081106001600160401b03821117610cb757604052565b634e487b7160e01b600052604160045260246000fd5b6001600160401b038111610cb757601f01601f191660200190565b81601f82011215610c0057803590610cff82610ccd565b92610d0d6040519485610c96565b82845260208383010111610c0057816000926020809301838601378301015290565b9181601f84011215610c00578235916001600160401b038311610c00576020808501948460051b010111610c0057565b9060a0600319830112610c00576001600160401b03600435818111610c005783610d8b91600401610d2f565b93909392602435838111610c005782610da691600401610d2f565b93909392604435918211610c0057610c8a91600401610d2f565b9080601f83011215610c00578135906001600160401b038211610cb7578160051b60405193602093610df485840187610c96565b85528380860192820101928311610c00578301905b828210610e17575050505090565b81358152908301908301610e09565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260409020547fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff1615610e8b575050565b604492506040519163e2517d3f60e01b835260048301526024820152fd5b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d7069602052604090205460008051602061150d8339815191529060ff1615610e8b575050565b80600052600060205260406000209160018060a01b0316918260005260205260ff6040600020541615610e8b575050565b9060009180835282602052604083209160018060a01b03169182845260205260ff60408420541615600014610fa657808352826020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b9060009180835282602052604083209160018060a01b03169182845260205260ff604084205416600014610fa65780835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b611029906110a6565b600481101561103757151590565b634e487b7160e01b600052602160045260246000fd5b611056906110a6565b6004811015611037576001811490811561106e575090565b600291501490565b61107f906110a6565b60048110156110375760021490565b611097906110a6565b60048110156110375760031490565b600052600160205260406000205480156000146110c35750600090565b600181036110d15750600390565b4210156110dd57600190565b600290565b908060209392818452848401376000828201840152601f01601f1916010190565b9461113961115294959293604051968795602087019960018060a01b03168a52604087015260a0606087015260c08601916110e2565b91608084015260a083015203601f198101835282610c96565b51902090565b969294909695919560405196602091828901998060c08b0160a08d525260e08a01919060005b81811061126e57505050601f19898203810160408b0152888252976001600160fb1b038111610c00579089969495939897929160051b80928a830137019380888601878703606089015252604085019460408260051b82010195836000925b848410611205575050505050506111529550608084015260a083015203908101835282610c96565b9193969850919398999496603f198282030184528935601e1984360301811215610c005783018681019190356001600160401b038111610c00578036038313610c0057611257889283926001956110e2565b9b0194019401918b98969394919a9997959a6111dd565b90919283359060018060a01b038216809203610c00579081528501928501919060010161117e565b9290936112c4926080959897969860018060a01b03168552602085015260a0604085015260a08401916110e2565b9460608201520152565b60001981146112dd5760010190565b634e487b7160e01b600052601160045260246000fd5b91908110156113035760051b0190565b634e487b7160e01b600052603260045260246000fd5b356001600160a01b0381168103610c005790565b91908110156113035760051b81013590601e1981360301821215610c005701908135916001600160401b038311610c00576020018236038113610c00579190565b9061137882611020565b6113bf576002548082106113a157504201908142116112dd576000526001602052604060002055565b6044925060405191635433660960e01b835260048301526024820152fd5b604051635ead8eb560e01b81526004810183905260016024820152604490fd5b611403949260609260018060a01b03168252602082015281604082015201916110e2565b90565b61145093600093928493826040519384928337810185815203925af13d15611453573d9061143382610ccd565b916114416040519384610c96565b82523d6000602084013e6114e1565b50565b6060906114e1565b61146481611076565b156114a2575080151580611492575b61147a5750565b6024906040519063121534c360e31b82526004820152fd5b5061149c8161108e565b15611473565b60449060405190635ead8eb560e01b8252600482015260046024820152fd5b6114ca81611076565b156114a25760005260016020526001604060002055565b90919061150a57508051156114f857805190602001fd5b60405163d6bda27560e01b8152600490fd5b56fed8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63a2646970667358221220768a1de682affad2b79f94b3dd93b85212b69ace65421db783abb4407f79eaa364736f6c63430008140033","opcodes":"PUSH1 0x40 PUSH1 0x80 DUP2 MSTORE PUSH1 0x4 SWAP1 DUP2 CALLDATASIZE LT ISZERO PUSH2 0x20 JUMPI JUMPDEST POP POP CALLDATASIZE ISZERO PUSH2 0x1E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST STOP JUMPDEST PUSH1 0x0 SWAP2 DUP3 CALLDATALOAD PUSH1 0xE0 SHR SWAP1 DUP2 PUSH4 0x1D5062A EQ PUSH2 0xB0C JUMPI DUP2 PUSH4 0x1FFC9A7 EQ PUSH2 0xA99 JUMPI DUP2 PUSH4 0x7BD0265 EQ PUSH2 0xA70 JUMPI DUP4 DUP3 PUSH4 0x134008D3 EQ PUSH2 0x9C6 JUMPI POP DUP2 PUSH4 0x13BC9F20 EQ PUSH2 0x9A6 JUMPI DUP2 PUSH4 0x150B7A02 EQ PUSH2 0x951 JUMPI DUP2 PUSH4 0x248A9CA3 EQ PUSH2 0x927 JUMPI DUP2 PUSH4 0x2AB0F529 EQ PUSH2 0x907 JUMPI DUP2 PUSH4 0x2F2FF15D EQ PUSH2 0x8DD JUMPI DUP2 PUSH4 0x31D50750 EQ PUSH2 0x8BD JUMPI DUP2 PUSH4 0x36568ABE EQ PUSH2 0x877 JUMPI DUP2 PUSH4 0x584B153E EQ PUSH2 0x84E JUMPI DUP2 PUSH4 0x64D62353 EQ PUSH2 0x7E2 JUMPI DUP2 PUSH4 0x7958004C EQ PUSH2 0x79F JUMPI DUP2 PUSH4 0x8065657F EQ PUSH2 0x77D JUMPI DUP2 PUSH4 0x8F2A0BB0 EQ PUSH2 0x5E0 JUMPI DUP2 PUSH4 0x8F61F4F5 EQ PUSH2 0x5A5 JUMPI DUP2 PUSH4 0x91D14854 EQ PUSH2 0x55F JUMPI DUP2 PUSH4 0xA217FDDF EQ PUSH2 0x544 JUMPI DUP2 PUSH4 0xB08E51C0 EQ PUSH2 0x509 JUMPI DUP2 PUSH4 0xB1C5F427 EQ PUSH2 0x4DD JUMPI DUP2 PUSH4 0xBC197C81 EQ PUSH2 0x457 JUMPI DUP2 PUSH4 0xC4D252F5 EQ PUSH2 0x388 JUMPI DUP2 PUSH4 0xD45C4435 EQ PUSH2 0x360 JUMPI DUP2 PUSH4 0xD547741F EQ PUSH2 0x31B JUMPI DUP2 PUSH4 0xE38335E5 EQ PUSH2 0x1D8 JUMPI DUP2 PUSH4 0xF23A6E61 EQ PUSH2 0x180 JUMPI POP PUSH4 0xF27A0C92 SUB PUSH2 0x11 JUMPI CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 PUSH1 0x2 SLOAD SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST POP DUP1 REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI PUSH2 0x19B PUSH2 0xBEA JUMP JUMPDEST POP PUSH2 0x1A4 PUSH2 0xC05 JUMP JUMPDEST POP PUSH1 0x84 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x1D5 JUMPI POP PUSH1 0x20 SWAP3 PUSH2 0x1C7 SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xCE8 JUMP JUMPDEST POP MLOAD PUSH4 0xF23A6E61 PUSH1 0xE0 SHL DUP2 MSTORE RETURN JUMPDEST DUP1 REVERT JUMPDEST SWAP1 POP PUSH2 0x1E3 CALLDATASIZE PUSH2 0xD5F JUMP JUMPDEST SWAP1 SWAP9 SWAP5 SWAP6 SWAP2 SWAP4 SWAP3 SWAP7 SWAP8 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP12 MSTORE DUP11 PUSH1 0x20 MSTORE DUP6 DUP12 KECCAK256 DUP12 DUP1 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF DUP7 DUP13 KECCAK256 SLOAD AND ISZERO PUSH2 0x30D JUMPI JUMPDEST DUP4 DUP4 EQ DUP1 ISZERO SWAP1 PUSH2 0x303 JUMPI JUMPDEST PUSH2 0x2D5 JUMPI POP PUSH2 0x23A PUSH2 0x241 SWAP2 DUP11 DUP7 DUP11 DUP8 DUP12 DUP9 DUP16 PUSH2 0x1158 JUMP JUMPDEST SWAP9 DUP10 PUSH2 0x145B JUMP JUMPDEST DUP9 JUMPDEST DUP2 DUP2 LT PUSH2 0x257 JUMPI DUP10 PUSH2 0x254 DUP11 PUSH2 0x14C1 JUMP JUMPDEST DUP1 RETURN JUMPDEST DUP1 DUP1 DUP11 PUSH32 0xC2617EFA69BAB66782FA219543714338489C4E9E178271560A91B82C3F612B58 DUP11 DUP11 PUSH2 0x2C8 PUSH2 0x2B0 DUP16 SWAP9 DUP13 PUSH2 0x2A9 DUP3 DUP15 PUSH2 0x2A3 DUP16 PUSH2 0x2D0 SWAP16 PUSH2 0x29E SWAP2 DUP6 SWAP2 PUSH2 0x12F3 JUMP JUMPDEST PUSH2 0x1319 JUMP JUMPDEST SWAP8 PUSH2 0x12F3 JUMP JUMPDEST CALLDATALOAD SWAP6 PUSH2 0x132D JUMP JUMPDEST SWAP1 PUSH2 0x2BD DUP3 DUP3 DUP8 DUP8 PUSH2 0x1406 JUMP JUMPDEST DUP14 MLOAD SWAP5 DUP6 SWAP5 DUP6 PUSH2 0x13DF JUMP JUMPDEST SUB SWAP1 LOG3 PUSH2 0x12CE JUMP JUMPDEST PUSH2 0x243 JUMP JUMPDEST DUP6 MLOAD PUSH1 0x1 PUSH3 0x4FCDEF PUSH1 0xE0 SHL SUB NOT DUP2 MSTORE SWAP1 DUP2 ADD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD DUP6 SWAP1 MSTORE PUSH1 0x40 DUP4 ADD DUP5 SWAP1 MSTORE SWAP2 DUP3 SWAP2 POP PUSH1 0x60 ADD SUB SWAP1 REVERT JUMPDEST POP DUP5 DUP4 EQ ISZERO PUSH2 0x222 JUMP JUMPDEST PUSH2 0x316 CALLER PUSH2 0xEA9 JUMP JUMPDEST PUSH2 0x217 JUMP JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x35C JUMPI PUSH2 0x358 SWAP2 CALLDATALOAD PUSH2 0x353 PUSH1 0x1 PUSH2 0x340 PUSH2 0xC05 JUMP JUMPDEST SWAP4 DUP4 DUP8 MSTORE DUP7 PUSH1 0x20 MSTORE DUP7 KECCAK256 ADD SLOAD CALLER SWAP1 PUSH2 0xEFC JUMP JUMPDEST PUSH2 0xFAB JUMP JUMPDEST POP DUP1 RETURN JUMPDEST DUP3 DUP1 REVERT JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI PUSH1 0x20 SWAP3 DUP3 SWAP2 CALLDATALOAD DUP2 MSTORE PUSH1 0x1 DUP5 MSTORE KECCAK256 SLOAD SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI DUP2 CALLDATALOAD SWAP2 PUSH32 0xFD643C72710C63C0180259ABA6B2D05451E3591A24E58B62239378085726F783 DUP1 DUP6 MSTORE DUP5 PUSH1 0x20 MSTORE DUP3 DUP6 KECCAK256 CALLER DUP7 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF DUP4 DUP7 KECCAK256 SLOAD AND ISZERO PUSH2 0x43C JUMPI POP PUSH2 0x3E6 DUP4 PUSH2 0x104D JUMP JUMPDEST ISZERO PUSH2 0x420 JUMPI POP DUP3 SWAP1 DUP3 DUP3 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE DUP2 KECCAK256 SSTORE PUSH32 0xBAA1EB22F2A492BA1A5FEA61B8DF4D27C6C8B5F3971E63BB58FA14FF72EEDB70 DUP3 DUP1 LOG2 DUP1 RETURN JUMPDEST DUP3 PUSH1 0x44 SWAP3 MLOAD SWAP2 PUSH4 0x5EAD8EB5 PUSH1 0xE0 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x6 PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x44 SWAP3 MLOAD SWAP2 PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP4 MSTORE CALLER SWAP1 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI PUSH2 0x472 PUSH2 0xBEA JUMP JUMPDEST POP PUSH2 0x47B PUSH2 0xC05 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 PUSH1 0x44 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x17C JUMPI PUSH2 0x49C SWAP1 CALLDATASIZE SWAP1 DUP7 ADD PUSH2 0xDC0 JUMP JUMPDEST POP PUSH1 0x64 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x17C JUMPI PUSH2 0x4B4 SWAP1 CALLDATASIZE SWAP1 DUP7 ADD PUSH2 0xDC0 JUMP JUMPDEST POP PUSH1 0x84 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0x1D5 JUMPI POP PUSH1 0x20 SWAP3 PUSH2 0x4CF SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xCE8 JUMP JUMPDEST POP MLOAD PUSH4 0xBC197C81 PUSH1 0xE0 SHL DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 PUSH2 0x502 PUSH2 0x4F3 CALLDATASIZE PUSH2 0xD5F JUMP JUMPDEST SWAP7 SWAP6 SWAP1 SWAP6 SWAP5 SWAP2 SWAP5 SWAP4 SWAP3 SWAP4 PUSH2 0x1158 JUMP JUMPDEST SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 MLOAD PUSH32 0xFD643C72710C63C0180259ABA6B2D05451E3591A24E58B62239378085726F783 DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x35C JUMPI DUP2 PUSH1 0x20 SWAP4 PUSH1 0xFF SWAP3 PUSH2 0x580 PUSH2 0xC05 JUMP JUMPDEST SWAP1 CALLDATALOAD DUP3 MSTORE DUP2 DUP7 MSTORE DUP3 DUP3 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP3 MSTORE DUP6 MSTORE KECCAK256 SLOAD SWAP2 MLOAD SWAP2 AND ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 MLOAD PUSH32 0xB09AA5AEB3702CFD50B6B62BC4532604938F21248A27A1D5CA736082B6819CC1 DUP2 MSTORE RETURN JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP3 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x779 JUMPI PUSH2 0x613 SWAP1 CALLDATASIZE SWAP1 DUP6 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP4 PUSH1 0x24 CALLDATALOAD DUP5 DUP2 GT PUSH2 0x775 JUMPI PUSH2 0x62B SWAP1 CALLDATASIZE SWAP1 DUP4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP5 PUSH1 0x44 CALLDATALOAD SWAP1 DUP2 GT PUSH2 0x771 JUMPI PUSH2 0x643 SWAP1 CALLDATASIZE SWAP1 DUP5 ADD PUSH2 0xD2F JUMP JUMPDEST PUSH1 0x64 SWAP4 SWAP2 SWAP4 CALLDATALOAD SWAP1 PUSH1 0x84 CALLDATALOAD SWAP8 PUSH1 0xA4 CALLDATALOAD SWAP4 PUSH2 0x65B CALLER PUSH2 0xE26 JUMP JUMPDEST DUP2 DUP12 EQ DUP1 ISZERO SWAP1 PUSH2 0x767 JUMPI JUMPDEST PUSH2 0x739 JUMPI POP PUSH2 0x67C DUP10 DUP5 DUP5 DUP10 DUP6 DUP16 DUP12 SWAP1 DUP15 PUSH2 0x1158 JUMP JUMPDEST SWAP10 PUSH2 0x687 DUP6 DUP13 PUSH2 0x136E JUMP JUMPDEST DUP11 DUP13 JUMPDEST DUP11 DUP4 DUP3 LT PUSH2 0x6D0 JUMPI DUP15 DUP4 DUP15 DUP4 DUP2 PUSH2 0x69F JUMPI DUP4 DUP1 RETURN JUMPDEST PUSH32 0x20FDA5FD27A1EA7BF5B9567F143AC5470BB059374A27E8F67CB44F946F6D0387 SWAP2 PUSH1 0x20 SWAP2 MLOAD SWAP1 DUP2 MSTORE LOG2 DUP2 DUP1 DUP1 DUP4 DUP1 RETURN JUMPDEST PUSH2 0x732 SWAP3 PUSH32 0x4CF4410CC57040E44862EF0F45F3DD5A5E02DB8EB8ADD648D4B0E236F1D07DCA DUP12 DUP12 PUSH2 0x2C8 DUP16 DUP13 DUP9 SWAP8 DUP16 SWAP3 DUP10 DUP16 DUP16 DUP16 PUSH2 0x720 SWAP2 PUSH2 0x71A PUSH2 0x29E DUP7 DUP1 SWAP5 PUSH2 0x727 SWAP10 PUSH2 0x12F3 JUMP JUMPDEST SWAP11 PUSH2 0x12F3 JUMP JUMPDEST CALLDATALOAD SWAP9 PUSH2 0x132D JUMP JUMPDEST SWAP2 MLOAD SWAP7 DUP8 SWAP7 DUP8 PUSH2 0x1296 JUMP JUMPDEST DUP12 SWAP1 PUSH2 0x68A JUMP JUMPDEST DUP9 MLOAD PUSH1 0x1 PUSH3 0x4FCDEF PUSH1 0xE0 SHL SUB NOT DUP2 MSTORE SWAP1 DUP2 ADD DUP12 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x40 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x60 ADD SUB SWAP1 REVERT JUMPDEST POP DUP3 DUP12 EQ ISZERO PUSH2 0x666 JUMP JUMPDEST DUP8 DUP1 REVERT JUMPDEST DUP7 DUP1 REVERT JUMPDEST DUP5 DUP1 REVERT JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 PUSH2 0x502 PUSH2 0x793 CALLDATASIZE PUSH2 0xC48 JUMP JUMPDEST SWAP5 SWAP4 SWAP1 SWAP4 SWAP3 SWAP2 SWAP3 PUSH2 0x1103 JUMP JUMPDEST DUP4 DUP4 CALLVALUE PUSH2 0x17C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x17C JUMPI PUSH2 0x7BC DUP4 CALLDATALOAD PUSH2 0x10A6 JUMP JUMPDEST SWAP1 MLOAD SWAP2 DUP4 DUP3 LT ISZERO PUSH2 0x7CF JUMPI PUSH1 0x20 DUP4 DUP4 DUP2 MSTORE RETURN JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x21 DUP5 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI DUP2 CALLDATALOAD SWAP2 ADDRESS CALLER SUB PUSH2 0x838 JUMPI POP PUSH32 0x11C24F4EAD16507C69AC467FBD5E4EED5FB5C699626D2CC6D66421DF253886D5 SWAP1 PUSH1 0x2 SLOAD DUP2 MLOAD SWAP1 DUP2 MSTORE DUP4 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x2 SSTORE DUP1 RETURN JUMPDEST PUSH1 0x24 SWAP2 MLOAD SWAP1 PUSH4 0xE2850C59 PUSH1 0xE0 SHL DUP3 MSTORE CALLER SWAP1 DUP3 ADD MSTORE REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x104D JUMP JUMPDEST SWAP1 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST DUP4 DUP4 CALLVALUE PUSH2 0x17C JUMPI DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH2 0x891 PUSH2 0xC05 JUMP JUMPDEST SWAP1 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SUB PUSH2 0x8AE JUMPI POP PUSH2 0x358 SWAP2 SWAP3 CALLDATALOAD PUSH2 0xFAB JUMP JUMPDEST MLOAD PUSH4 0x334BD919 PUSH1 0xE1 SHL DUP2 MSTORE DUP4 SWAP1 REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x1020 JUMP JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x35C JUMPI PUSH2 0x358 SWAP2 CALLDATALOAD PUSH2 0x902 PUSH1 0x1 PUSH2 0x340 PUSH2 0xC05 JUMP JUMPDEST PUSH2 0xF2D JUMP JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x108E JUMP JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI DUP2 PUSH1 0x20 SWAP4 PUSH1 0x1 SWAP3 CALLDATALOAD DUP2 MSTORE DUP1 DUP6 MSTORE KECCAK256 ADD SLOAD SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI PUSH2 0x96C PUSH2 0xBEA JUMP JUMPDEST POP PUSH2 0x975 PUSH2 0xC05 JUMP JUMPDEST POP PUSH1 0x64 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x1D5 JUMPI POP PUSH1 0x20 SWAP3 PUSH2 0x998 SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xCE8 JUMP JUMPDEST POP MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE RETURN JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x1076 JUMP JUMPDEST PUSH2 0x254 PUSH2 0xA44 DUP3 PUSH2 0xA5A PUSH32 0xC2617EFA69BAB66782FA219543714338489C4E9E178271560A91B82C3F612B58 PUSH2 0xA3B DUP10 PUSH2 0x9FE CALLDATASIZE PUSH2 0xC48 JUMP JUMPDEST PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP12 SWAP11 SWAP7 SWAP8 SWAP4 SWAP6 SWAP9 SWAP3 SWAP11 MSTORE DUP11 PUSH1 0x20 MSTORE DUP3 DUP12 KECCAK256 DUP12 DUP1 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF DUP4 DUP13 KECCAK256 SLOAD AND ISZERO PUSH2 0xA62 JUMPI JUMPDEST DUP10 DUP6 DUP6 DUP11 DUP11 PUSH2 0x1103 JUMP JUMPDEST SWAP10 DUP11 SWAP9 DUP10 PUSH2 0x145B JUMP JUMPDEST PUSH2 0xA50 DUP4 DUP4 DUP9 DUP9 PUSH2 0x1406 JUMP JUMPDEST MLOAD SWAP5 DUP6 SWAP5 DUP6 PUSH2 0x13DF JUMP JUMPDEST SUB SWAP1 LOG3 PUSH2 0x14C1 JUMP JUMPDEST PUSH2 0xA6B CALLER PUSH2 0xEA9 JUMP JUMPDEST PUSH2 0xA31 JUMP JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 MLOAD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP2 MSTORE RETURN JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI CALLDATALOAD SWAP1 PUSH4 0xFFFFFFFF PUSH1 0xE0 SHL DUP3 AND DUP1 SWAP3 SUB PUSH2 0x35C JUMPI PUSH1 0x20 SWAP3 POP PUSH4 0x2711897 PUSH1 0xE5 SHL DUP3 EQ SWAP2 DUP3 ISZERO PUSH2 0xADE JUMPI JUMPDEST POP MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST SWAP1 SWAP2 POP PUSH4 0x7965DB0B PUSH1 0xE0 SHL DUP2 EQ SWAP1 DUP2 ISZERO PUSH2 0xAFB JUMPI JUMPDEST POP SWAP1 CODESIZE PUSH2 0xAD5 JUMP JUMPDEST PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ SWAP1 POP CODESIZE PUSH2 0xAF3 JUMP JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI PUSH2 0xB28 PUSH2 0xBEA JUMP JUMPDEST SWAP1 DUP4 PUSH1 0x24 CALLDATALOAD PUSH1 0x44 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x35C JUMPI PUSH32 0x4CF4410CC57040E44862EF0F45F3DD5A5E02DB8EB8ADD648D4B0E236F1D07DCA SWAP6 PUSH2 0xB6C SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xC1B JUMP JUMPDEST SWAP6 SWAP1 SWAP2 PUSH1 0x64 CALLDATALOAD SWAP6 PUSH2 0xBAD PUSH1 0x84 CALLDATALOAD SWAP8 PUSH1 0xA4 CALLDATALOAD SWAP1 PUSH2 0xB87 CALLER PUSH2 0xE26 JUMP JUMPDEST PUSH2 0xB95 DUP11 DUP3 DUP14 DUP11 DUP10 DUP10 PUSH2 0x1103 JUMP JUMPDEST SWAP11 DUP12 SWAP8 PUSH2 0xBA2 DUP5 DUP11 PUSH2 0x136E JUMP JUMPDEST DUP11 MLOAD SWAP7 DUP8 SWAP7 DUP8 PUSH2 0x1296 JUMP JUMPDEST SUB SWAP1 LOG3 DUP2 PUSH2 0xBB9 JUMPI DUP4 DUP1 RETURN JUMPDEST PUSH32 0x20FDA5FD27A1EA7BF5B9567F143AC5470BB059374A27E8F67CB44F946F6D0387 SWAP2 PUSH1 0x20 SWAP2 MLOAD SWAP1 DUP2 MSTORE LOG2 CODESIZE DUP1 DUP1 DUP4 DUP1 RETURN JUMPDEST PUSH1 0x4 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0xC00 JUMPI JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0xC00 JUMPI JUMP JUMPDEST SWAP2 DUP2 PUSH1 0x1F DUP5 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP3 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0xC00 JUMPI PUSH1 0x20 DUP4 DUP2 DUP7 ADD SWAP6 ADD ADD GT PUSH2 0xC00 JUMPI JUMP JUMPDEST PUSH1 0xA0 PUSH1 0x3 NOT DUP3 ADD SLT PUSH2 0xC00 JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 SUB PUSH2 0xC00 JUMPI SWAP2 PUSH1 0x24 CALLDATALOAD SWAP2 PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0xC00 JUMPI PUSH2 0xC8A SWAP2 PUSH1 0x4 ADD PUSH2 0xC1B JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x64 CALLDATALOAD SWAP1 PUSH1 0x84 CALLDATALOAD SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP1 NOT SWAP2 ADD AND DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0xCB7 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0xCB7 JUMPI PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP1 CALLDATALOAD SWAP1 PUSH2 0xCFF DUP3 PUSH2 0xCCD JUMP JUMPDEST SWAP3 PUSH2 0xD0D PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0xC96 JUMP JUMPDEST DUP3 DUP5 MSTORE PUSH1 0x20 DUP4 DUP4 ADD ADD GT PUSH2 0xC00 JUMPI DUP2 PUSH1 0x0 SWAP3 PUSH1 0x20 DUP1 SWAP4 ADD DUP4 DUP7 ADD CALLDATACOPY DUP4 ADD ADD MSTORE SWAP1 JUMP JUMPDEST SWAP2 DUP2 PUSH1 0x1F DUP5 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP3 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0xC00 JUMPI PUSH1 0x20 DUP1 DUP6 ADD SWAP5 DUP5 PUSH1 0x5 SHL ADD ADD GT PUSH2 0xC00 JUMPI JUMP JUMPDEST SWAP1 PUSH1 0xA0 PUSH1 0x3 NOT DUP4 ADD SLT PUSH2 0xC00 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0xC00 JUMPI DUP4 PUSH2 0xD8B SWAP2 PUSH1 0x4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP4 SWAP1 SWAP4 SWAP3 PUSH1 0x24 CALLDATALOAD DUP4 DUP2 GT PUSH2 0xC00 JUMPI DUP3 PUSH2 0xDA6 SWAP2 PUSH1 0x4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP4 SWAP1 SWAP4 SWAP3 PUSH1 0x44 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0xC00 JUMPI PUSH2 0xC8A SWAP2 PUSH1 0x4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP2 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0xCB7 JUMPI DUP2 PUSH1 0x5 SHL PUSH1 0x40 MLOAD SWAP4 PUSH1 0x20 SWAP4 PUSH2 0xDF4 DUP6 DUP5 ADD DUP8 PUSH2 0xC96 JUMP JUMPDEST DUP6 MSTORE DUP4 DUP1 DUP7 ADD SWAP3 DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0xC00 JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xE17 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP2 CALLDATALOAD DUP2 MSTORE SWAP1 DUP4 ADD SWAP1 DUP4 ADD PUSH2 0xE09 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0x3412D5605AC6CD444957CEDB533E5DACAD6378B4BC819EBE3652188A665066D5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH32 0xB09AA5AEB3702CFD50B6B62BC4532604938F21248A27A1D5CA736082B6819CC1 SWAP1 PUSH1 0xFF AND ISZERO PUSH2 0xE8B JUMPI POP POP JUMP JUMPDEST PUSH1 0x44 SWAP3 POP PUSH1 0x40 MLOAD SWAP2 PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP4 MSTORE PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0xDAE2AA361DFD1CA020A396615627D436107C35EFF9FE7738A3512819782D7069 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 PUSH1 0xFF AND ISZERO PUSH2 0xE8B JUMPI POP POP JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0xE8B JUMPI POP POP JUMP JUMPDEST SWAP1 PUSH1 0x0 SWAP2 DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 DUP5 KECCAK256 SLOAD AND ISZERO PUSH1 0x0 EQ PUSH2 0xFA6 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST POP POP SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x0 SWAP2 DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 DUP5 KECCAK256 SLOAD AND PUSH1 0x0 EQ PUSH2 0xFA6 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0xFF NOT DUP2 SLOAD AND SWAP1 SSTORE PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x1029 SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x1056 SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI PUSH1 0x1 DUP2 EQ SWAP1 DUP2 ISZERO PUSH2 0x106E JUMPI POP SWAP1 JUMP JUMPDEST PUSH1 0x2 SWAP2 POP EQ SWAP1 JUMP JUMPDEST PUSH2 0x107F SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI PUSH1 0x2 EQ SWAP1 JUMP JUMPDEST PUSH2 0x1097 SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI PUSH1 0x3 EQ SWAP1 JUMP JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD DUP1 ISZERO PUSH1 0x0 EQ PUSH2 0x10C3 JUMPI POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 SUB PUSH2 0x10D1 JUMPI POP PUSH1 0x3 SWAP1 JUMP JUMPDEST TIMESTAMP LT ISZERO PUSH2 0x10DD JUMPI PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH1 0x2 SWAP1 JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x20 SWAP4 SWAP3 DUP2 DUP5 MSTORE DUP5 DUP5 ADD CALLDATACOPY PUSH1 0x0 DUP3 DUP3 ADD DUP5 ADD MSTORE PUSH1 0x1F ADD PUSH1 0x1F NOT AND ADD ADD SWAP1 JUMP JUMPDEST SWAP5 PUSH2 0x1139 PUSH2 0x1152 SWAP5 SWAP6 SWAP3 SWAP4 PUSH1 0x40 MLOAD SWAP7 DUP8 SWAP6 PUSH1 0x20 DUP8 ADD SWAP10 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP11 MSTORE PUSH1 0x40 DUP8 ADD MSTORE PUSH1 0xA0 PUSH1 0x60 DUP8 ADD MSTORE PUSH1 0xC0 DUP7 ADD SWAP2 PUSH2 0x10E2 JUMP JUMPDEST SWAP2 PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD MSTORE SUB PUSH1 0x1F NOT DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0xC96 JUMP JUMPDEST MLOAD SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST SWAP7 SWAP3 SWAP5 SWAP1 SWAP7 SWAP6 SWAP2 SWAP6 PUSH1 0x40 MLOAD SWAP7 PUSH1 0x20 SWAP2 DUP3 DUP10 ADD SWAP10 DUP1 PUSH1 0xC0 DUP12 ADD PUSH1 0xA0 DUP14 MSTORE MSTORE PUSH1 0xE0 DUP11 ADD SWAP2 SWAP1 PUSH1 0x0 JUMPDEST DUP2 DUP2 LT PUSH2 0x126E JUMPI POP POP POP PUSH1 0x1F NOT DUP10 DUP3 SUB DUP2 ADD PUSH1 0x40 DUP12 ADD MSTORE DUP9 DUP3 MSTORE SWAP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xFB SHL SUB DUP2 GT PUSH2 0xC00 JUMPI SWAP1 DUP10 SWAP7 SWAP5 SWAP6 SWAP4 SWAP9 SWAP8 SWAP3 SWAP2 PUSH1 0x5 SHL DUP1 SWAP3 DUP11 DUP4 ADD CALLDATACOPY ADD SWAP4 DUP1 DUP9 DUP7 ADD DUP8 DUP8 SUB PUSH1 0x60 DUP10 ADD MSTORE MSTORE PUSH1 0x40 DUP6 ADD SWAP5 PUSH1 0x40 DUP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP6 DUP4 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x1205 JUMPI POP POP POP POP POP POP PUSH2 0x1152 SWAP6 POP PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD MSTORE SUB SWAP1 DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0xC96 JUMP JUMPDEST SWAP2 SWAP4 SWAP7 SWAP9 POP SWAP2 SWAP4 SWAP9 SWAP10 SWAP5 SWAP7 PUSH1 0x3F NOT DUP3 DUP3 SUB ADD DUP5 MSTORE DUP10 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT ISZERO PUSH2 0xC00 JUMPI DUP4 ADD DUP7 DUP2 ADD SWAP2 SWAP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0xC00 JUMPI DUP1 CALLDATASIZE SUB DUP4 SGT PUSH2 0xC00 JUMPI PUSH2 0x1257 DUP9 SWAP3 DUP4 SWAP3 PUSH1 0x1 SWAP6 PUSH2 0x10E2 JUMP JUMPDEST SWAP12 ADD SWAP5 ADD SWAP5 ADD SWAP2 DUP12 SWAP9 SWAP7 SWAP4 SWAP5 SWAP2 SWAP11 SWAP10 SWAP8 SWAP6 SWAP11 PUSH2 0x11DD JUMP JUMPDEST SWAP1 SWAP2 SWAP3 DUP4 CALLDATALOAD SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP3 AND DUP1 SWAP3 SUB PUSH2 0xC00 JUMPI SWAP1 DUP2 MSTORE DUP6 ADD SWAP3 DUP6 ADD SWAP2 SWAP1 PUSH1 0x1 ADD PUSH2 0x117E JUMP JUMPDEST SWAP3 SWAP1 SWAP4 PUSH2 0x12C4 SWAP3 PUSH1 0x80 SWAP6 SWAP9 SWAP8 SWAP7 SWAP9 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP6 MSTORE PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD SWAP2 PUSH2 0x10E2 JUMP JUMPDEST SWAP5 PUSH1 0x60 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH2 0x12DD JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP2 SWAP1 DUP2 LT ISZERO PUSH2 0x1303 JUMPI PUSH1 0x5 SHL ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 SUB PUSH2 0xC00 JUMPI SWAP1 JUMP JUMPDEST SWAP2 SWAP1 DUP2 LT ISZERO PUSH2 0x1303 JUMPI PUSH1 0x5 SHL DUP2 ADD CALLDATALOAD SWAP1 PUSH1 0x1E NOT DUP2 CALLDATASIZE SUB ADD DUP3 SLT ISZERO PUSH2 0xC00 JUMPI ADD SWAP1 DUP2 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0xC00 JUMPI PUSH1 0x20 ADD DUP3 CALLDATASIZE SUB DUP2 SGT PUSH2 0xC00 JUMPI SWAP2 SWAP1 JUMP JUMPDEST SWAP1 PUSH2 0x1378 DUP3 PUSH2 0x1020 JUMP JUMPDEST PUSH2 0x13BF JUMPI PUSH1 0x2 SLOAD DUP1 DUP3 LT PUSH2 0x13A1 JUMPI POP TIMESTAMP ADD SWAP1 DUP2 TIMESTAMP GT PUSH2 0x12DD JUMPI PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE JUMP JUMPDEST PUSH1 0x44 SWAP3 POP PUSH1 0x40 MLOAD SWAP2 PUSH4 0x54336609 PUSH1 0xE0 SHL DUP4 MSTORE PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5EAD8EB5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST PUSH2 0x1403 SWAP5 SWAP3 PUSH1 0x60 SWAP3 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP2 PUSH1 0x40 DUP3 ADD MSTORE ADD SWAP2 PUSH2 0x10E2 JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH2 0x1450 SWAP4 PUSH1 0x0 SWAP4 SWAP3 DUP5 SWAP4 DUP3 PUSH1 0x40 MLOAD SWAP4 DUP5 SWAP3 DUP4 CALLDATACOPY DUP2 ADD DUP6 DUP2 MSTORE SUB SWAP3 GAS CALL RETURNDATASIZE ISZERO PUSH2 0x1453 JUMPI RETURNDATASIZE SWAP1 PUSH2 0x1433 DUP3 PUSH2 0xCCD JUMP JUMPDEST SWAP2 PUSH2 0x1441 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0xC96 JUMP JUMPDEST DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x14E1 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x60 SWAP1 PUSH2 0x14E1 JUMP JUMPDEST PUSH2 0x1464 DUP2 PUSH2 0x1076 JUMP JUMPDEST ISZERO PUSH2 0x14A2 JUMPI POP DUP1 ISZERO ISZERO DUP1 PUSH2 0x1492 JUMPI JUMPDEST PUSH2 0x147A JUMPI POP JUMP JUMPDEST PUSH1 0x24 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x121534C3 PUSH1 0xE3 SHL DUP3 MSTORE PUSH1 0x4 DUP3 ADD MSTORE REVERT JUMPDEST POP PUSH2 0x149C DUP2 PUSH2 0x108E JUMP JUMPDEST ISZERO PUSH2 0x1473 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x5EAD8EB5 PUSH1 0xE0 SHL DUP3 MSTORE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x4 PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH2 0x14CA DUP2 PUSH2 0x1076 JUMP JUMPDEST ISZERO PUSH2 0x14A2 JUMPI PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE JUMP JUMPDEST SWAP1 SWAP2 SWAP1 PUSH2 0x150A JUMPI POP DUP1 MLOAD ISZERO PUSH2 0x14F8 JUMPI DUP1 MLOAD SWAP1 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST JUMP INVALID 0xD8 0xAA 0xF BALANCE SWAP5 SWAP8 BYTE 0x2A GT PUSH7 0x79F7C2090F6939 0xC8 0xD4 0xE0 BYTE 0x2A DUP14 PUSH31 0x41D55E5351469E63A2646970667358221220768A1DE682AFFAD2B79F94B3DD SWAP4 0xB8 MSTORE SLT 0xB6 SWAP11 0xCE PUSH6 0x421DB783ABB4 BLOCKHASH PUSH32 0x79EAA364736F6C63430008140033000000000000000000000000000000000000 ","sourceMap":"1084:15213:5:-:0;;;;;;;;;;;;-1:-1:-1;1084:15213:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8013:9;1084:15213;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1084:15213:5;;;;;;:::i;:::-;;;;:::i;:::-;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;1084:15213:5;-1:-1:-1;;;1084:15213:5;;;;;;;;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1084:15213:5;;;;;;;;;;;;;;;;;;;5347:26;5343:87;;1084:15213;13397:31;;;;;:68;;;1084:15213;13393:184;;13600:64;;13691:11;13600:64;;;;;;;;;:::i;:::-;13691:11;;;:::i;:::-;13718:13;13733:18;;;;;;14027:2;;;;:::i;:::-;1084:15213;;13753:3;13789:10;;;13953:43;13789:10;;13953:43;13877:11;13789:10;;;13829:9;13789:10;;;;13753:3;13789:10;;;;;;:::i;:::-;;:::i;:::-;13829:9;;:::i;:::-;1084:15213;13877:11;;:::i;:::-;13926:7;;;;;;;:::i;:::-;1084:15213;;13953:43;;;;;:::i;:::-;;;;13753:3;:::i;:::-;13718:13;;13393:184;1084:15213;;-1:-1:-1;;;;;;13488:78:5;;;;;1084:15213;;;;;;;;;;;;;;;;;;-1:-1:-1;1084:15213:5;;13488:78;;;13397:68;13432:33;;;;;13397:68;;5343:87;5406:12;735:10:30;5406:12:5;:::i;:::-;5343:87;;1084:15213;;;;;;;;;;;;;;;4747:26:0;1084:15213:5;;3282:12:0;1084:15213:5;;;:::i;:::-;;;;;;;;;;3901:22:0;1084:15213:5;735:10:30;3282:12:0;;:::i;:::-;4747:26;:::i;:::-;;1084:15213:5;;;;;;;;;;;;;;-1:-1:-1;;1084:15213:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1084:15213:5;;;;;;1349:27;;1084:15213;;;;;;;;;735:10:30;1084:15213:5;;;;;;;;;;3519:23:0;3515:108;;11408:22:5;;;;:::i;:::-;11407:23;11403:230;;1084:15213;;;;;;;;;;;;11680:13;;;;1084:15213;;11403:230;1084:15213;;;;11453:169;;;;;;;;1084:15213;11523:85;1084:15213;;;;11453:169;3515:108:0;1084:15213:5;;;3565:47:0;;;;;;735:10:30;3565:47:0;;;1084:15213:5;;;;;3565:47:0;1084:15213:5;;;;;;;;-1:-1:-1;;1084:15213:5;;;;;;:::i;:::-;;;;:::i;:::-;-1:-1:-1;;;;;;1084:15213:5;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;1084:15213:5;-1:-1:-1;;;1084:15213:5;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;1349:27;1084:15213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1204:26;1084:15213;;;;;;;;;;;;-1:-1:-1;;1084:15213:5;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;735:10:30;3282:12:0;735:10:30;3282:12:0;:::i;:::-;10138:31:5;;;;;:68;;;1084:15213;10134:184;;10341:64;;;;;;;;;;;;:::i;:::-;10429:5;;;;;:::i;:::-;10450:13;;10465:18;;;;;;;10609;;;;;10605:72;;1084:15213;;;10605:72;10648:18;1084:15213;;;;;;;10648:18;10605:72;;;1084:15213;;;10485:3;;10530:10;10509:76;10530:10;;10509:76;10530:10;;;;;;;;;;10542:9;10530:10;;;;;;10553:11;10530:10;;:::i;:::-;10542:9;;:::i;:::-;1084:15213;10553:11;;:::i;:::-;1084:15213;;10509:76;;;;;:::i;10485:3::-;10450:13;;;;10134:184;1084:15213;;-1:-1:-1;;;;;;10229:78:5;;;;;1084:15213;;;;;;;;;;;;;;;;;;;;;13488:78;;;10138:68;10173:33;;;;;10138:68;;1084:15213;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;1084:15213:5;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;1084:15213:5;;;;;;;;;;;;;;;;;-1:-1:-1;;1084:15213:5;;;;;;15620:4;;735:10:30;15602:23:5;15598:95;;1084:15213;15707:35;1084:15213;15722:9;1084:15213;;;;;;;;;;;15707:35;15722:9;1084:15213;;;15598:95;1084:15213;;;15648:34;;;;;;735:10:30;15648:34:5;;;1084:15213;15648:34;1084:15213;;;;;;;;-1:-1:-1;;1084:15213:5;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;735:10:30;;-1:-1:-1;;;;;1084:15213:5;;5421:34:0;5417:102;;1084:15213:5;5529:37:0;1084:15213:5;;;5529:37:0;:::i;5417:102::-;1084:15213:5;-1:-1:-1;;;5478:30:0;;1084:15213:5;;5478:30:0;1084:15213:5;;;;;;;;-1:-1:-1;;1084:15213:5;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;4330:25:0;1084:15213:5;;3282:12:0;1084:15213:5;;;:::i;3282:12:0:-;4330:25;:::i;1084:15213:5:-;;;;;;;;-1:-1:-1;;1084:15213:5;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;1084:15213:5;;;;;;;;;;;;;;;;3901:22:0;1084:15213:5;;;;;;;;;;;;;;;-1:-1:-1;;1084:15213:5;;;;;;:::i;:::-;;;;:::i;:::-;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;1084:15213:5;-1:-1:-1;;;1084:15213:5;;;;;;;;;;;-1:-1:-1;;1084:15213:5;;;;;;;;;;:::i;:::-;12623:2;12490:11;1084:15213;12559:43;;12407:56;1084:15213;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;1084:15213:5;;;;;;;;;;;;;;;;;;;;;;;;;;;5347:26;5343:87;;1084:15213;12407:56;;;;;;:::i;:::-;12490:11;;;;;:::i;:::-;12536:7;;;;;;:::i;:::-;1084:15213;12559:43;;;;;:::i;:::-;;;;12623:2;:::i;5343:87::-;5406:12;735:10:30;5406:12:5;:::i;:::-;5343:87;;1084:15213;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1084:15213:5;;;;;;;;;;;-1:-1:-1;;1084:15213:5;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;775:49:20;;;:89;;;;1084:15213:5;;;;;;;;;775:89:20;2688:32:0;;-1:-1:-1;;;;2673:47:0;;;:87;;;;775:89:20;;;;;;2673:87:0;-1:-1:-1;;;862:40:41;;-1:-1:-1;2673:87:0;;;1084:15213:5;;;;;;;;;-1:-1:-1;;1084:15213:5;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;9438:61;1084:15213;;;;;;;:::i;:::-;;;;;;;9438:61;1084:15213;;;;;735:10:30;3282:12:0;735:10:30;3282:12:0;:::i;:::-;9340:53:5;;;;;;;;:::i;:::-;9417:5;;;;;;;:::i;:::-;1084:15213;;9438:61;;;;;:::i;:::-;;;;9513:18;9509:72;;1084:15213;;;9509:72;9552:18;1084:15213;;;;;;;9552:18;9509:72;;;1084:15213;;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;:::o;:::-;;;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;;;;;;;;;:::o;:::-;;-1:-1:-1;;1084:15213:5;;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;-1:-1:-1;;1084:15213:5;;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;1084:15213:5;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;1084:15213:5;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;3432:197:0;-1:-1:-1;;;;;1084:15213:5;2954:6:0;1084:15213:5;;;;;;;;;;1204:26;;1084:15213;;3519:23:0;3515:108;;3432:197;;:::o;3515:108::-;1084:15213:5;;;;;3565:47:0;;;;;;;;;1084:15213:5;;;;;3565:47:0;3432:197;-1:-1:-1;;;;;1084:15213:5;2954:6:0;1084:15213:5;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1276:26:5;1084:15213;;3519:23:0;3515:108;;3432:197;;:::o;:::-;1084:15213:5;2954:6:0;1084:15213:5;2954:6:0;1084:15213:5;;;2954:6:0;1084:15213:5;;;;;;;;;;2954:6:0;1084:15213:5;;;;;2954:6:0;1084:15213:5;;;3519:23:0;3515:108;;3432:197;;:::o;6179:316::-;;2954:6;1084:15213:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6276:23:0;6272:217;1084:15213:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6370:40:0;735:10:30;6370:40:0;;;1084:15213:5;6424:11:0;:::o;6272:217::-;6466:12;;;:::o;6732:317::-;;2954:6;1084:15213:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6826:217:0;1084:15213:5;;;;;;;;;;;;;;;;;;;;;;;;;;;6924:40:0;735:10:30;6924:40:0;;;1084:15213:5;6978:11:0;:::o;6006:129:5:-;6083:21;6006:129;6083:21;:::i;:::-;1084:15213;;;;;;6083:45;;6006:129;:::o;1084:15213::-;;;;6108:20;1084:15213;;;;;6108:20;1084:15213;6270:209;6370:21;6270:209;6370:21;:::i;:::-;1084:15213;;;;;;6417:22;6408:31;;:64;;;;;6401:71;6270:209;:::o;6408:64::-;6452:20;6443:29;;;6270:209;:::o;6615:134::-;6697:21;6615:134;6697:21;:::i;:::-;1084:15213;;;;;;6722:20;6697:45;6615:134;:::o;6828:132::-;6909:21;6828:132;6909:21;:::i;:::-;1084:15213;;;;;;6934:19;6909:44;6828:132;:::o;7278:460::-;-1:-1:-1;1084:15213:5;7197:11;1084:15213;;;-1:-1:-1;1084:15213:5;;7422:14;;7418:314;7422:14;;;7452:27;-1:-1:-1;7452:27:5;:::o;7418:314::-;7197:11;7500:28;;7197:11;;7544:26;7551:19;7544:26;:::o;7496:236::-;7603:15;-1:-1:-1;7603:15:5;;;7197:11;7634:29;:::o;7587:145::-;7701:20;7694:27;:::o;1084:15213::-;;;;;;;;;;;;;-1:-1:-1;1084:15213:5;;;;;;;;-1:-1:-1;;1084:15213:5;;;;:::o;8142:279::-;;1084:15213;8363:50;8142:279;;;;1084:15213;;8363:50;;;;;;1084:15213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;8363:50;1084:15213;;8363:50;;;;;;:::i;:::-;1084:15213;8353:61;;8142:279;:::o;8537:320::-;;;;;;;;;1084:15213;;8793:56;;;;;;1084:15213;;;;;;;;;;;;;;-1:-1:-1;1084:15213:5;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1084:15213:5;;;;;;;;;;;;;8793:56;1084:15213;;;;;;;;;;8793:56;;;;;;;;:::i;1084:15213::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::o;:::-;-1:-1:-1;;1084:15213:5;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1084:15213:5;;;;;;;;;;;;;;;:::o;10784:399::-;;10852:15;;;:::i;:::-;10848:131;;8013:9;1084:15213;11034:16;;;11030:96;;11153:15;;1084:15213;11153:15;;;1084:15213;;;-1:-1:-1;1084:15213:5;11135:11;1084:15213;;;-1:-1:-1;1084:15213:5;;10784:399::o;11030:96::-;1084:15213;;;;;11073:42;;;;;;;;;1084:15213;;;;;11073:42;10848:131;1084:15213;;-1:-1:-1;;;10890:78:5;;1084:15213;10890:78;;1084:15213;;;;;;;;;;10890:78;1084:15213;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;14100:232::-;14280:45;14100:232;14239:31;14100:232;;;;1084:15213;;;;;;;;;;;;;14239:31;;;;1084:15213;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;14239:31;1084:15213;;;;14280:45;:::i;:::-;;14100:232::o;1084:15213::-;;;14280:45;:::i;14415:367::-;14497:20;;;:::i;:::-;14496:21;14492:137;;14642:25;;;;:58;;;14415:367;14638:138;;14415:367;:::o;14638:138::-;1084:15213;;;;14723:42;;;;;;;;;1084:15213;14723:42;14642:58;14672:28;;;;:::i;:::-;14671:29;14642:58;;14492:137;1084:15213;;;;11453:169;;;;14540:78;;1084:15213;14540:78;;1084:15213;;;;;;14540:78;14864:236;14919:20;;;:::i;:::-;14918:21;14914:137;;-1:-1:-1;1084:15213:5;1434:1;1084:15213;;1434:1;1084:15213;-1:-1:-1;1084:15213:5;;14864:236::o;5221:224:29:-;;;;5337:8;;-1:-1:-1;1084:15213:5;;5690:21:29;:17;;5815:158;;;;;;5686:354;1084:15213:5;;-1:-1:-1;;;6010:19:29;;;;;5333:106;5411:17::o"},"methodIdentifiers":{"CANCELLER_ROLE()":"b08e51c0","DEFAULT_ADMIN_ROLE()":"a217fddf","EXECUTOR_ROLE()":"07bd0265","PROPOSER_ROLE()":"8f61f4f5","cancel(bytes32)":"c4d252f5","execute(address,uint256,bytes,bytes32,bytes32)":"134008d3","executeBatch(address[],uint256[],bytes[],bytes32,bytes32)":"e38335e5","getMinDelay()":"f27a0c92","getOperationState(bytes32)":"7958004c","getRoleAdmin(bytes32)":"248a9ca3","getTimestamp(bytes32)":"d45c4435","grantRole(bytes32,address)":"2f2ff15d","hasRole(bytes32,address)":"91d14854","hashOperation(address,uint256,bytes,bytes32,bytes32)":"8065657f","hashOperationBatch(address[],uint256[],bytes[],bytes32,bytes32)":"b1c5f427","isOperation(bytes32)":"31d50750","isOperationDone(bytes32)":"2ab0f529","isOperationPending(bytes32)":"584b153e","isOperationReady(bytes32)":"13bc9f20","onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","onERC721Received(address,address,uint256,bytes)":"150b7a02","renounceRole(bytes32,address)":"36568abe","revokeRole(bytes32,address)":"d547741f","schedule(address,uint256,bytes,bytes32,bytes32,uint256)":"01d5062a","scheduleBatch(address[],uint256[],bytes[],bytes32,bytes32,uint256)":"8f2a0bb0","supportsInterface(bytes4)":"01ffc9a7","updateDelay(uint256)":"64d62353"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"minDelay\",\"type\":\"uint256\"},{\"internalType\":\"address[]\",\"name\":\"proposers\",\"type\":\"address[]\"},{\"internalType\":\"address[]\",\"name\":\"executors\",\"type\":\"address[]\"},{\"internalType\":\"address\",\"name\":\"admin\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"AccessControlBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"neededRole\",\"type\":\"bytes32\"}],\"name\":\"AccessControlUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"delay\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minDelay\",\"type\":\"uint256\"}],\"name\":\"TimelockInsufficientDelay\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payloads\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"TimelockInvalidOperationLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"TimelockUnauthorizedCaller\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"predecessorId\",\"type\":\"bytes32\"}],\"name\":\"TimelockUnexecutedPredecessor\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"TimelockUnexpectedOperationState\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"CallExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"CallSalt\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"predecessor\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"delay\",\"type\":\"uint256\"}],\"name\":\"CallScheduled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"Cancelled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldDuration\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newDuration\",\"type\":\"uint256\"}],\"name\":\"MinDelayChange\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"previousAdminRole\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"newAdminRole\",\"type\":\"bytes32\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"CANCELLER_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DEFAULT_ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXECUTOR_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PROPOSER_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"cancel\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"payload\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"predecessor\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"payloads\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"predecessor\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"executeBatch\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getMinDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getOperationState\",\"outputs\":[{\"internalType\":\"enum TimelockController.OperationState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getTimestamp\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"predecessor\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"hashOperation\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"payloads\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"predecessor\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"hashOperationBatch\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"isOperation\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"isOperationDone\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"isOperationPending\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"isOperationReady\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"predecessor\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"delay\",\"type\":\"uint256\"}],\"name\":\"schedule\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"payloads\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"predecessor\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"delay\",\"type\":\"uint256\"}],\"name\":\"scheduleBatch\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"newDelay\",\"type\":\"uint256\"}],\"name\":\"updateDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"Contract module which acts as a timelocked controller. When set as the owner of an `Ownable` smart contract, it enforces a timelock on all `onlyOwner` maintenance operations. This gives time for users of the controlled contract to exit before a potentially dangerous maintenance operation is applied. By default, this contract is self administered, meaning administration tasks have to go through the timelock process. The proposer (resp executor) role is in charge of proposing (resp executing) operations. A common use case is to position this {TimelockController} as the owner of a smart contract, with a multisig or a DAO as the sole proposer.\",\"errors\":{\"AccessControlBadConfirmation()\":[{\"details\":\"The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\"}],\"AccessControlUnauthorizedAccount(address,bytes32)\":[{\"details\":\"The `account` is missing a role.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"TimelockInsufficientDelay(uint256,uint256)\":[{\"details\":\"The schedule operation doesn't meet the minimum delay.\"}],\"TimelockInvalidOperationLength(uint256,uint256,uint256)\":[{\"details\":\"Mismatch between the parameters length for an operation call.\"}],\"TimelockUnauthorizedCaller(address)\":[{\"details\":\"The caller account is not authorized.\"}],\"TimelockUnexecutedPredecessor(bytes32)\":[{\"details\":\"The predecessor to an operation not yet done.\"}],\"TimelockUnexpectedOperationState(bytes32,bytes32)\":[{\"details\":\"The current state of an operation is not as required. The `expectedStates` is a bitmap with the bits enabled for each OperationState enum position counting from right to left. See {_encodeStateBitmap}.\"}]},\"events\":{\"CallExecuted(bytes32,uint256,address,uint256,bytes)\":{\"details\":\"Emitted when a call is performed as part of operation `id`.\"},\"CallSalt(bytes32,bytes32)\":{\"details\":\"Emitted when new proposal is scheduled with non-zero salt.\"},\"CallScheduled(bytes32,uint256,address,uint256,bytes,bytes32,uint256)\":{\"details\":\"Emitted when a call is scheduled as part of operation `id`.\"},\"Cancelled(bytes32)\":{\"details\":\"Emitted when operation `id` is cancelled.\"},\"MinDelayChange(uint256,uint256)\":{\"details\":\"Emitted when the minimum delay for future operations is modified.\"},\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted to signal this.\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call. This account bears the admin role (for the granted role). Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call: - if using `revokeRole`, it is the admin role bearer - if using `renounceRole`, it is the role bearer (i.e. `account`)\"}},\"kind\":\"dev\",\"methods\":{\"cancel(bytes32)\":{\"details\":\"Cancel an operation. Requirements: - the caller must have the 'canceller' role.\"},\"constructor\":{\"details\":\"Initializes the contract with the following parameters: - `minDelay`: initial minimum delay in seconds for operations - `proposers`: accounts to be granted proposer and canceller roles - `executors`: accounts to be granted executor role - `admin`: optional account to be granted admin role; disable with zero address IMPORTANT: The optional admin can aid with initial configuration of roles after deployment without being subject to delay, but this role should be subsequently renounced in favor of administration through timelocked proposals. Previous versions of this contract would assign this admin to the deployer automatically and should be renounced as well.\"},\"execute(address,uint256,bytes,bytes32,bytes32)\":{\"details\":\"Execute an (ready) operation containing a single transaction. Emits a {CallExecuted} event. Requirements: - the caller must have the 'executor' role.\"},\"executeBatch(address[],uint256[],bytes[],bytes32,bytes32)\":{\"details\":\"Execute an (ready) operation containing a batch of transactions. Emits one {CallExecuted} event per transaction in the batch. Requirements: - the caller must have the 'executor' role.\"},\"getMinDelay()\":{\"details\":\"Returns the minimum delay in seconds for an operation to become valid. This value can be changed by executing an operation that calls `updateDelay`.\"},\"getOperationState(bytes32)\":{\"details\":\"Returns operation state.\"},\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {_setRoleAdmin}.\"},\"getTimestamp(bytes32)\":{\"details\":\"Returns the timestamp at which an operation becomes ready (0 for unset operations, 1 for done operations).\"},\"grantRole(bytes32,address)\":{\"details\":\"Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleGranted} event.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"hashOperation(address,uint256,bytes,bytes32,bytes32)\":{\"details\":\"Returns the identifier of an operation containing a single transaction.\"},\"hashOperationBatch(address[],uint256[],bytes[],bytes32,bytes32)\":{\"details\":\"Returns the identifier of an operation containing a batch of transactions.\"},\"isOperation(bytes32)\":{\"details\":\"Returns whether an id corresponds to a registered operation. This includes both Waiting, Ready, and Done operations.\"},\"isOperationDone(bytes32)\":{\"details\":\"Returns whether an operation is done or not.\"},\"isOperationPending(bytes32)\":{\"details\":\"Returns whether an operation is pending or not. Note that a \\\"pending\\\" operation may also be \\\"ready\\\".\"},\"isOperationReady(bytes32)\":{\"details\":\"Returns whether an operation is ready for execution. Note that a \\\"ready\\\" operation is also \\\"pending\\\".\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Always returns `IERC721Receiver.onERC721Received.selector`.\"},\"renounceRole(bytes32,address)\":{\"details\":\"Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been revoked `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`. May emit a {RoleRevoked} event.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleRevoked} event.\"},\"schedule(address,uint256,bytes,bytes32,bytes32,uint256)\":{\"details\":\"Schedule an operation containing a single transaction. Emits {CallSalt} if salt is nonzero, and {CallScheduled}. Requirements: - the caller must have the 'proposer' role.\"},\"scheduleBatch(address[],uint256[],bytes[],bytes32,bytes32,uint256)\":{\"details\":\"Schedule an operation containing a batch of transactions. Emits {CallSalt} if salt is nonzero, and one {CallScheduled} event per transaction in the batch. Requirements: - the caller must have the 'proposer' role.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"updateDelay(uint256)\":{\"details\":\"Changes the minimum timelock duration for future operations. Emits a {MinDelayChange} event. Requirements: - the caller must be the timelock itself. This can only be achieved by scheduling and later executing an operation where the timelock is the target and the data is the ABI-encoded call to this function.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/TimelockController.sol\":\"TimelockController\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xc1bebdee8943bd5e9ef1e0f2e63296aa1dd4171a66b9e74d0286220e891e1458\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://928cf2f0042c606f3dcb21bd8a272573f462a215cd65285d2d6b407f31e9bd67\",\"dweb:/ipfs/QmWGxjckno6sfjHPX5naPnsfsyisgy4PJDf46eLw9umfpx\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0x4d9a2b261b56a1e4a37bb038151dec98b952fed16de2bdfdda27e38e2b12b530\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f724110f7aeb6151af800ab8c12e6060b29bda9e013f0ccb331eb754d6a7cbf0\",\"dweb:/ipfs/QmUcjzCZpxtUPdEThtAzE1f9LvuJiUGZxTdH9N6bHrb5Cf\"]},\"@openzeppelin/contracts/governance/TimelockController.sol\":{\"keccak256\":\"0x42ce53c97c0d57628662c1a6e277a6eee113aeedd0cae61805e0513ac2866daf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fff5babafc1100625c7f60ee3694fe98b73446992211a30dbfbc2b98cced16\",\"dweb:/ipfs/QmRU8ThthE6USLbEgLNf6jVKp36qJNAkzDZ5RBoYSN7bLC\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol\":{\"keccak256\":\"0xe103e95f854ef0cd1bba5f469175f67cd332f5c2561941f165e3dd65cee94d6d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6cf8cc5d07cf8003255f9d766fe8188b9f6e33b6240e126a605f0d061566b23e\",\"dweb:/ipfs/Qmd7okDCSoUt1L4G9hmb5c4W8kWUnfpAa2jyBKUp4xKErd\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol\":{\"keccak256\":\"0xaad20f8713b5cd98114278482d5d91b9758f9727048527d582e8e88fd4901fd8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5396e8dbb000c2fada59b7d2093b9c7c870fd09413ab0fdaba45d882959c6244\",\"dweb:/ipfs/QmXQn5XckSiUsUBpMYuiFeqnojRX4rKa9jmgjCPeTuPmhh\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol":{"GovernorCountingSimple":{"abi":[{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorAlreadyCastVote","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorAlreadyQueuedProposal","type":"error"},{"inputs":[],"name":"GovernorDisabledDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"votes","type":"uint256"},{"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"GovernorInsufficientProposerVotes","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"calldatas","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"GovernorInvalidProposalLength","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorInvalidSignature","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteParams","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteType","type":"error"},{"inputs":[{"internalType":"uint256","name":"votingPeriod","type":"uint256"}],"name":"GovernorInvalidVotingPeriod","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNonexistentProposal","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNotQueuedProposal","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyExecutor","type":"error"},{"inputs":[],"name":"GovernorQueueNotImplemented","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"}],"name":"GovernorRestrictedProposer","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"GovernorUnableToCancel","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"enum IGovernor.ProposalState","name":"current","type":"uint8"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"GovernorUnexpectedProposalState","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"voteStart","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"voteEnd","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"etaSeconds","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"VoteCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"},{"indexed":false,"internalType":"bytes","name":"params","type":"bytes"}],"name":"VoteCastWithParams","type":"event"},{"inputs":[],"name":"BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COUNTING_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"EXTENDED_BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"cancel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"}],"name":"castVote","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"}],"name":"castVoteWithReason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"castVoteWithReasonAndParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteWithReasonAndParamsBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"execute","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"getProposalId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"getVotesWithParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"hashProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalEta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposalNeedsQueuing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalProposer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalVotes","outputs":[{"internalType":"uint256","name":"againstVotes","type":"uint256"},{"internalType":"uint256","name":"forVotes","type":"uint256"},{"internalType":"uint256","name":"abstainVotes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"queue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"relay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum IGovernor.ProposalState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"BALLOT_TYPEHASH()":"deaaa7cc","CLOCK_MODE()":"4bf5d7e9","COUNTING_MODE()":"dd4e2ba5","EXTENDED_BALLOT_TYPEHASH()":"2fe3e261","cancel(address[],uint256[],bytes[],bytes32)":"452115d6","castVote(uint256,uint8)":"56781388","castVoteBySig(uint256,uint8,address,bytes)":"8ff262e3","castVoteWithReason(uint256,uint8,string)":"7b3c71d3","castVoteWithReasonAndParams(uint256,uint8,string,bytes)":"5f398a14","castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)":"5b8d0e0d","clock()":"91ddadf4","eip712Domain()":"84b0196e","execute(address[],uint256[],bytes[],bytes32)":"2656227d","getProposalId(address[],uint256[],bytes[],bytes32)":"a8f8a668","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","name()":"06fdde03","nonces(address)":"7ecebe00","onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","onERC721Received(address,address,uint256,bytes)":"150b7a02","proposalDeadline(uint256)":"c01f9e37","proposalEta(uint256)":"ab58fb8e","proposalNeedsQueuing(uint256)":"a9a95294","proposalProposer(uint256)":"143489d0","proposalSnapshot(uint256)":"2d63f693","proposalThreshold()":"b58131b0","proposalVotes(uint256)":"544ffc9c","propose(address[],uint256[],bytes[],string)":"7d5e81e2","queue(address[],uint256[],bytes[],bytes32)":"160cbed7","quorum(uint256)":"f8ce560a","relay(address,uint256,bytes)":"c28bc2fa","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","version()":"54fd4d50","votingDelay()":"3932abb1","votingPeriod()":"02a251a3"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorAlreadyCastVote\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorAlreadyQueuedProposal\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorDisabledDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"votes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"threshold\",\"type\":\"uint256\"}],\"name\":\"GovernorInsufficientProposerVotes\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"calldatas\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidProposalLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorInvalidSignature\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteParams\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"votingPeriod\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidVotingPeriod\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNonexistentProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNotQueuedProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyExecutor\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorQueueNotImplemented\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"}],\"name\":\"GovernorRestrictedProposer\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorUnableToCancel\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"current\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"GovernorUnexpectedProposalState\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"signatures\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteStart\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteEnd\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"etaSeconds\",\"type\":\"uint256\"}],\"name\":\"ProposalQueued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"VoteCast\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"VoteCastWithParams\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COUNTING_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXTENDED_BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"}],\"name\":\"castVote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"castVoteWithReason\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParamsBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"getProposalId\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"getVotesWithParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasVoted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"hashProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalDeadline\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalEta\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"proposalNeedsQueuing\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalProposer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalSnapshot\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalThreshold\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"againstVotes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"forVotes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"abstainVotes\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"propose\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"queue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"relay\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"state\",\"outputs\":[{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingPeriod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"Extension of {Governor} for simple, 3 options, vote counting.\",\"errors\":{\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"GovernorAlreadyCastVote(address)\":[{\"details\":\"The vote was already cast.\"}],\"GovernorAlreadyQueuedProposal(uint256)\":[{\"details\":\"The proposal has already been queued.\"}],\"GovernorDisabledDeposit()\":[{\"details\":\"Token deposits are disabled in this contract.\"}],\"GovernorInsufficientProposerVotes(address,uint256,uint256)\":[{\"details\":\"The `proposer` does not have the required votes to create a proposal.\"}],\"GovernorInvalidProposalLength(uint256,uint256,uint256)\":[{\"details\":\"Empty proposal or a mismatch between the parameters length for a proposal call.\"}],\"GovernorInvalidSignature(address)\":[{\"details\":\"The provided signature is not valid for the expected `voter`. If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}.\"}],\"GovernorInvalidVoteParams()\":[{\"details\":\"The provided params buffer is not supported by the counting module.\"}],\"GovernorInvalidVoteType()\":[{\"details\":\"The vote type used is not valid for the corresponding counting module.\"}],\"GovernorInvalidVotingPeriod(uint256)\":[{\"details\":\"The voting period set is not a valid period.\"}],\"GovernorNonexistentProposal(uint256)\":[{\"details\":\"The `proposalId` doesn't exist.\"}],\"GovernorNotQueuedProposal(uint256)\":[{\"details\":\"The proposal hasn't been queued yet.\"}],\"GovernorOnlyExecutor(address)\":[{\"details\":\"The `account` is not the governance executor.\"}],\"GovernorQueueNotImplemented()\":[{\"details\":\"Queue operation is not implemented for this governor. Execute should be called directly.\"}],\"GovernorRestrictedProposer(address)\":[{\"details\":\"The `proposer` is not allowed to create a proposal.\"}],\"GovernorUnableToCancel(uint256,address)\":[{\"details\":\"The given `account` is unable to cancel the proposal with given `proposalId`.\"}],\"GovernorUnexpectedProposalState(uint256,uint8,bytes32)\":[{\"details\":\"The current state of a proposal is not the required for performing an operation. The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position counting from right to left. NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist). This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated). See {Governor-_encodeStateBitmap}.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}]},\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"ProposalCanceled(uint256)\":{\"details\":\"Emitted when a proposal is canceled.\"},\"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)\":{\"details\":\"Emitted when a proposal is created.\"},\"ProposalExecuted(uint256)\":{\"details\":\"Emitted when a proposal is executed.\"},\"ProposalQueued(uint256,uint256)\":{\"details\":\"Emitted when a proposal is queued.\"},\"VoteCast(address,uint256,uint8,uint256,string)\":{\"details\":\"Emitted when a vote is cast without params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\"},\"VoteCastWithParams(address,uint256,uint8,uint256,string,bytes)\":{\"details\":\"Emitted when a vote is cast with params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used. `params` are additional encoded parameters. Their interpretation also depends on the voting module used.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Description of the clock\"},\"COUNTING_MODE()\":{\"details\":\"See {IGovernor-COUNTING_MODE}.\"},\"cancel(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-cancel}.\"},\"castVote(uint256,uint8)\":{\"details\":\"See {IGovernor-castVote}.\"},\"castVoteBySig(uint256,uint8,address,bytes)\":{\"details\":\"See {IGovernor-castVoteBySig}.\"},\"castVoteWithReason(uint256,uint8,string)\":{\"details\":\"See {IGovernor-castVoteWithReason}.\"},\"castVoteWithReasonAndParams(uint256,uint8,string,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParams}.\"},\"castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParamsBySig}.\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"getProposalId(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-getProposalId}.\"},\"getVotes(address,uint256)\":{\"details\":\"See {IGovernor-getVotes}.\"},\"getVotesWithParams(address,uint256,bytes)\":{\"details\":\"See {IGovernor-getVotesWithParams}.\"},\"hasVoted(uint256,address)\":{\"details\":\"See {IGovernor-hasVoted}.\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-hashProposal}. The proposal id is produced by hashing the ABI encoded `targets` array, the `values` array, the `calldatas` array and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in advance, before the proposal is submitted. Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the same proposal (with same operation and same description) will have the same id if submitted on multiple governors across multiple networks. This also means that in order to execute the same operation twice (on the same governor) the proposer will have to change the description in order to avoid proposal id conflicts.\"},\"name()\":{\"details\":\"See {IGovernor-name}.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"},\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155BatchReceived}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC1155Received(address,address,uint256,uint256,bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"proposalDeadline(uint256)\":{\"details\":\"See {IGovernor-proposalDeadline}.\"},\"proposalEta(uint256)\":{\"details\":\"See {IGovernor-proposalEta}.\"},\"proposalNeedsQueuing(uint256)\":{\"details\":\"See {IGovernor-proposalNeedsQueuing}.\"},\"proposalProposer(uint256)\":{\"details\":\"See {IGovernor-proposalProposer}.\"},\"proposalSnapshot(uint256)\":{\"details\":\"See {IGovernor-proposalSnapshot}.\"},\"proposalThreshold()\":{\"details\":\"See {IGovernor-proposalThreshold}.\"},\"proposalVotes(uint256)\":{\"details\":\"Accessor to the internal vote counts.\"},\"propose(address[],uint256[],bytes[],string)\":{\"details\":\"See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}.\"},\"queue(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-queue}.\"},\"quorum(uint256)\":{\"details\":\"Minimum number of cast voted required for a proposal to be successful. NOTE: The `timepoint` parameter corresponds to the snapshot used for counting vote. This allows to scale the quorum depending on values such as the totalSupply of a token at this timepoint (see {ERC20Votes}).\"},\"relay(address,uint256,bytes)\":{\"details\":\"Relays a transaction or function call to an arbitrary target. In cases where the governance executor is some contract other than the governor itself, like when using a timelock, this function can be invoked in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake. Note that if the executor is simply the governor itself, use of `relay` is redundant.\"},\"state(uint256)\":{\"details\":\"See {IGovernor-state}.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"version()\":{\"details\":\"See {IGovernor-version}.\"},\"votingDelay()\":{\"details\":\"Delay, between the proposal is created and the vote starts. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. This can be increased to leave time for users to buy voting power, or delegate it, before the voting of a proposal starts. NOTE: While this interface returns a uint256, timepoints are stored as uint48 following the ERC-6372 clock type. Consequently this value must fit in a uint48 (when added to the current clock). See {IERC6372-clock}.\"},\"votingPeriod()\":{\"details\":\"Delay between the vote start and vote end. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting duration compared to the voting delay. NOTE: This value is stored when the proposal is submitted so that possible changes to the value do not affect proposals that have already been submitted. The type used to save it is a uint32. Consequently, while this interface returns a uint256, the value it returns should fit in a uint32.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"quorum(uint256)\":{\"notice\":\"module:user-config\"},\"votingDelay()\":{\"notice\":\"module:user-config\"},\"votingPeriod()\":{\"notice\":\"module:user-config\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol\":\"GovernorCountingSimple\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/Governor.sol\":{\"keccak256\":\"0x2dcd108a0d2f822523460cb704ad11bda9d916d493475d92b9e2b46e55015329\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8c01464f71e183c0712a7a47dd516a6a99423b16553622d473813af4c345cf23\",\"dweb:/ipfs/QmSbXJ2DAE5iWEYFD7uYNJejrggrKpS8G3ryV3XryfyVna\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0xeb587bd3f646da7897e80f4ea71dc5ee324e985ca2d17136021aa2443f41a73f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://230f29f8a38f45150616864c0988e0ef3c269e651eefeb0ad3778e3ae387b0fd\",\"dweb:/ipfs/QmTgFRV3XAPDjXA6Gp2ug1ifwyiZGUeFDYivHJ61eJg73g\"]},\"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol\":{\"keccak256\":\"0xdc21c15a8582ca58529bf4b63209718a86fd944cbb206a492687333fe8cce0ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4a4a30ef6ff3d7165c00a6f41a37569035a8b1602b77ecac8453a6ef2cf7c149\",\"dweb:/ipfs/QmZjt4yg3vWWeDMQ6avpXLYLMjctv3jwaWgrH4c5ozSg83\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x3d4cd07258d675b6dfa3d9dfd623a77b38fb9935f4a5381ff4bc969948720976\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://30abb60a4d98ad9a33de4fa5e9072342e12df3a79e9c71b5f59ce049ae8cd535\",\"dweb:/ipfs/QmT6NXJDjsf8H14nPYQsFELDB8q5ZTmG9cjdX2bEQJW7ST\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x1fcf8cceb1a67e6c8512267e780933c4a3f63ef44756e6c818fda79be51c8402\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://617d7d57f6f9cd449068b4d23daf485676d083aae648e038d05eb3a13291de35\",\"dweb:/ipfs/QmPADWPiGaSzZDFNpFEUx4ZPqhzPkYncBpHyTfAGcfsqzy\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x0c60057e7351874f086db8dc9291b7ada9ad62cb7725befd2991430d04a74572\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33cdfd1fc36410d45046f88ff9864350146b194736c32834baa38d99b843ffbe\",\"dweb:/ipfs/QmdVmqgFKjgEBURy4KUwWDA6J1LEg1BKcHcXsx4nkeHAD2\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol\":{\"keccak256\":\"0xbdc3bb48ccedb818cd75a6d74a16df55a822e9f6d3cc54c59f576f10aab67b5f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2284f25f2478f419d7781573b17a89d0e7c5589a865d55e2d6ed5163aee23aa8\",\"dweb:/ipfs/QmNsr2625APBQiNKpYnX5VcSnYgfUHR9Uzzp9pRXjoDqK7\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol\":{\"keccak256\":\"0x1e1d74658d7f4eab3d4f8fb0c6c5953bc5f629d9425e978d557dabff7b58b217\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be0175d00008d452d3d553890f73a3d5d51dff4372f720336c8b98f26822fcdb\",\"dweb:/ipfs/QmUkE8g5xPExWoSAKwdi5ww1qJJVtEWtjSF93G2LMQkgD3\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol":{"GovernorSettings":{"abi":[{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorAlreadyCastVote","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorAlreadyQueuedProposal","type":"error"},{"inputs":[],"name":"GovernorDisabledDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"votes","type":"uint256"},{"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"GovernorInsufficientProposerVotes","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"calldatas","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"GovernorInvalidProposalLength","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorInvalidSignature","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteParams","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteType","type":"error"},{"inputs":[{"internalType":"uint256","name":"votingPeriod","type":"uint256"}],"name":"GovernorInvalidVotingPeriod","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNonexistentProposal","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNotQueuedProposal","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyExecutor","type":"error"},{"inputs":[],"name":"GovernorQueueNotImplemented","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"}],"name":"GovernorRestrictedProposer","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"GovernorUnableToCancel","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"enum IGovernor.ProposalState","name":"current","type":"uint8"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"GovernorUnexpectedProposalState","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"voteStart","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"voteEnd","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"etaSeconds","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldProposalThreshold","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newProposalThreshold","type":"uint256"}],"name":"ProposalThresholdSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"VoteCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"},{"indexed":false,"internalType":"bytes","name":"params","type":"bytes"}],"name":"VoteCastWithParams","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldVotingDelay","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotingDelay","type":"uint256"}],"name":"VotingDelaySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldVotingPeriod","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotingPeriod","type":"uint256"}],"name":"VotingPeriodSet","type":"event"},{"inputs":[],"name":"BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COUNTING_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXTENDED_BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"cancel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"}],"name":"castVote","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"}],"name":"castVoteWithReason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"castVoteWithReasonAndParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteWithReasonAndParamsBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"execute","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"getProposalId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"getVotesWithParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"hashProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalEta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposalNeedsQueuing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalProposer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"queue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"relay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newProposalThreshold","type":"uint256"}],"name":"setProposalThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint48","name":"newVotingDelay","type":"uint48"}],"name":"setVotingDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"newVotingPeriod","type":"uint32"}],"name":"setVotingPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum IGovernor.ProposalState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"BALLOT_TYPEHASH()":"deaaa7cc","CLOCK_MODE()":"4bf5d7e9","COUNTING_MODE()":"dd4e2ba5","EXTENDED_BALLOT_TYPEHASH()":"2fe3e261","cancel(address[],uint256[],bytes[],bytes32)":"452115d6","castVote(uint256,uint8)":"56781388","castVoteBySig(uint256,uint8,address,bytes)":"8ff262e3","castVoteWithReason(uint256,uint8,string)":"7b3c71d3","castVoteWithReasonAndParams(uint256,uint8,string,bytes)":"5f398a14","castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)":"5b8d0e0d","clock()":"91ddadf4","eip712Domain()":"84b0196e","execute(address[],uint256[],bytes[],bytes32)":"2656227d","getProposalId(address[],uint256[],bytes[],bytes32)":"a8f8a668","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","name()":"06fdde03","nonces(address)":"7ecebe00","onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","onERC721Received(address,address,uint256,bytes)":"150b7a02","proposalDeadline(uint256)":"c01f9e37","proposalEta(uint256)":"ab58fb8e","proposalNeedsQueuing(uint256)":"a9a95294","proposalProposer(uint256)":"143489d0","proposalSnapshot(uint256)":"2d63f693","proposalThreshold()":"b58131b0","propose(address[],uint256[],bytes[],string)":"7d5e81e2","queue(address[],uint256[],bytes[],bytes32)":"160cbed7","quorum(uint256)":"f8ce560a","relay(address,uint256,bytes)":"c28bc2fa","setProposalThreshold(uint256)":"ece40cc1","setVotingDelay(uint48)":"79051887","setVotingPeriod(uint32)":"e540d01d","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","version()":"54fd4d50","votingDelay()":"3932abb1","votingPeriod()":"02a251a3"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorAlreadyCastVote\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorAlreadyQueuedProposal\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorDisabledDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"votes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"threshold\",\"type\":\"uint256\"}],\"name\":\"GovernorInsufficientProposerVotes\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"calldatas\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidProposalLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorInvalidSignature\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteParams\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"votingPeriod\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidVotingPeriod\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNonexistentProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNotQueuedProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyExecutor\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorQueueNotImplemented\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"}],\"name\":\"GovernorRestrictedProposer\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorUnableToCancel\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"current\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"GovernorUnexpectedProposalState\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"signatures\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteStart\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteEnd\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"etaSeconds\",\"type\":\"uint256\"}],\"name\":\"ProposalQueued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldProposalThreshold\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newProposalThreshold\",\"type\":\"uint256\"}],\"name\":\"ProposalThresholdSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"VoteCast\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"VoteCastWithParams\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldVotingDelay\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newVotingDelay\",\"type\":\"uint256\"}],\"name\":\"VotingDelaySet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldVotingPeriod\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newVotingPeriod\",\"type\":\"uint256\"}],\"name\":\"VotingPeriodSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COUNTING_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXTENDED_BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"}],\"name\":\"castVote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"castVoteWithReason\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParamsBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"getProposalId\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"getVotesWithParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasVoted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"hashProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalDeadline\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalEta\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"proposalNeedsQueuing\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalProposer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalSnapshot\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalThreshold\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"propose\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"queue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"relay\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"newProposalThreshold\",\"type\":\"uint256\"}],\"name\":\"setProposalThreshold\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint48\",\"name\":\"newVotingDelay\",\"type\":\"uint48\"}],\"name\":\"setVotingDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"newVotingPeriod\",\"type\":\"uint32\"}],\"name\":\"setVotingPeriod\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"state\",\"outputs\":[{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingPeriod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"Extension of {Governor} for settings updatable through governance.\",\"errors\":{\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"GovernorAlreadyCastVote(address)\":[{\"details\":\"The vote was already cast.\"}],\"GovernorAlreadyQueuedProposal(uint256)\":[{\"details\":\"The proposal has already been queued.\"}],\"GovernorDisabledDeposit()\":[{\"details\":\"Token deposits are disabled in this contract.\"}],\"GovernorInsufficientProposerVotes(address,uint256,uint256)\":[{\"details\":\"The `proposer` does not have the required votes to create a proposal.\"}],\"GovernorInvalidProposalLength(uint256,uint256,uint256)\":[{\"details\":\"Empty proposal or a mismatch between the parameters length for a proposal call.\"}],\"GovernorInvalidSignature(address)\":[{\"details\":\"The provided signature is not valid for the expected `voter`. If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}.\"}],\"GovernorInvalidVoteParams()\":[{\"details\":\"The provided params buffer is not supported by the counting module.\"}],\"GovernorInvalidVoteType()\":[{\"details\":\"The vote type used is not valid for the corresponding counting module.\"}],\"GovernorInvalidVotingPeriod(uint256)\":[{\"details\":\"The voting period set is not a valid period.\"}],\"GovernorNonexistentProposal(uint256)\":[{\"details\":\"The `proposalId` doesn't exist.\"}],\"GovernorNotQueuedProposal(uint256)\":[{\"details\":\"The proposal hasn't been queued yet.\"}],\"GovernorOnlyExecutor(address)\":[{\"details\":\"The `account` is not the governance executor.\"}],\"GovernorQueueNotImplemented()\":[{\"details\":\"Queue operation is not implemented for this governor. Execute should be called directly.\"}],\"GovernorRestrictedProposer(address)\":[{\"details\":\"The `proposer` is not allowed to create a proposal.\"}],\"GovernorUnableToCancel(uint256,address)\":[{\"details\":\"The given `account` is unable to cancel the proposal with given `proposalId`.\"}],\"GovernorUnexpectedProposalState(uint256,uint8,bytes32)\":[{\"details\":\"The current state of a proposal is not the required for performing an operation. The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position counting from right to left. NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist). This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated). See {Governor-_encodeStateBitmap}.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}]},\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"ProposalCanceled(uint256)\":{\"details\":\"Emitted when a proposal is canceled.\"},\"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)\":{\"details\":\"Emitted when a proposal is created.\"},\"ProposalExecuted(uint256)\":{\"details\":\"Emitted when a proposal is executed.\"},\"ProposalQueued(uint256,uint256)\":{\"details\":\"Emitted when a proposal is queued.\"},\"VoteCast(address,uint256,uint8,uint256,string)\":{\"details\":\"Emitted when a vote is cast without params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\"},\"VoteCastWithParams(address,uint256,uint8,uint256,string,bytes)\":{\"details\":\"Emitted when a vote is cast with params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used. `params` are additional encoded parameters. Their interpretation also depends on the voting module used.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Description of the clock\"},\"COUNTING_MODE()\":{\"details\":\"A description of the possible `support` values for {castVote} and the way these votes are counted, meant to be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`. There are 2 standard keys: `support` and `quorum`. - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`. - `quorum=bravo` means that only For votes are counted towards quorum. - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum. If a counting module makes use of encoded `params`, it should include this under a `params` key with a unique name that describes the behavior. For example: - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain. - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote. NOTE: The string can be decoded by the standard https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`] JavaScript class.\"},\"cancel(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-cancel}.\"},\"castVote(uint256,uint8)\":{\"details\":\"See {IGovernor-castVote}.\"},\"castVoteBySig(uint256,uint8,address,bytes)\":{\"details\":\"See {IGovernor-castVoteBySig}.\"},\"castVoteWithReason(uint256,uint8,string)\":{\"details\":\"See {IGovernor-castVoteWithReason}.\"},\"castVoteWithReasonAndParams(uint256,uint8,string,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParams}.\"},\"castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParamsBySig}.\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).\"},\"constructor\":{\"details\":\"Initialize the governance parameters.\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"getProposalId(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-getProposalId}.\"},\"getVotes(address,uint256)\":{\"details\":\"See {IGovernor-getVotes}.\"},\"getVotesWithParams(address,uint256,bytes)\":{\"details\":\"See {IGovernor-getVotesWithParams}.\"},\"hasVoted(uint256,address)\":{\"details\":\"Returns whether `account` has cast a vote on `proposalId`.\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-hashProposal}. The proposal id is produced by hashing the ABI encoded `targets` array, the `values` array, the `calldatas` array and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in advance, before the proposal is submitted. Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the same proposal (with same operation and same description) will have the same id if submitted on multiple governors across multiple networks. This also means that in order to execute the same operation twice (on the same governor) the proposer will have to change the description in order to avoid proposal id conflicts.\"},\"name()\":{\"details\":\"See {IGovernor-name}.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"},\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155BatchReceived}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC1155Received(address,address,uint256,uint256,bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"proposalDeadline(uint256)\":{\"details\":\"See {IGovernor-proposalDeadline}.\"},\"proposalEta(uint256)\":{\"details\":\"See {IGovernor-proposalEta}.\"},\"proposalNeedsQueuing(uint256)\":{\"details\":\"See {IGovernor-proposalNeedsQueuing}.\"},\"proposalProposer(uint256)\":{\"details\":\"See {IGovernor-proposalProposer}.\"},\"proposalSnapshot(uint256)\":{\"details\":\"See {IGovernor-proposalSnapshot}.\"},\"proposalThreshold()\":{\"details\":\"See {Governor-proposalThreshold}.\"},\"propose(address[],uint256[],bytes[],string)\":{\"details\":\"See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}.\"},\"queue(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-queue}.\"},\"quorum(uint256)\":{\"details\":\"Minimum number of cast voted required for a proposal to be successful. NOTE: The `timepoint` parameter corresponds to the snapshot used for counting vote. This allows to scale the quorum depending on values such as the totalSupply of a token at this timepoint (see {ERC20Votes}).\"},\"relay(address,uint256,bytes)\":{\"details\":\"Relays a transaction or function call to an arbitrary target. In cases where the governance executor is some contract other than the governor itself, like when using a timelock, this function can be invoked in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake. Note that if the executor is simply the governor itself, use of `relay` is redundant.\"},\"setProposalThreshold(uint256)\":{\"details\":\"Update the proposal threshold. This operation can only be performed through a governance proposal. Emits a {ProposalThresholdSet} event.\"},\"setVotingDelay(uint48)\":{\"details\":\"Update the voting delay. This operation can only be performed through a governance proposal. Emits a {VotingDelaySet} event.\"},\"setVotingPeriod(uint32)\":{\"details\":\"Update the voting period. This operation can only be performed through a governance proposal. Emits a {VotingPeriodSet} event.\"},\"state(uint256)\":{\"details\":\"See {IGovernor-state}.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"version()\":{\"details\":\"See {IGovernor-version}.\"},\"votingDelay()\":{\"details\":\"See {IGovernor-votingDelay}.\"},\"votingPeriod()\":{\"details\":\"See {IGovernor-votingPeriod}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"COUNTING_MODE()\":{\"notice\":\"module:voting\"},\"hasVoted(uint256,address)\":{\"notice\":\"module:voting\"},\"quorum(uint256)\":{\"notice\":\"module:user-config\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol\":\"GovernorSettings\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/Governor.sol\":{\"keccak256\":\"0x2dcd108a0d2f822523460cb704ad11bda9d916d493475d92b9e2b46e55015329\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8c01464f71e183c0712a7a47dd516a6a99423b16553622d473813af4c345cf23\",\"dweb:/ipfs/QmSbXJ2DAE5iWEYFD7uYNJejrggrKpS8G3ryV3XryfyVna\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0xeb587bd3f646da7897e80f4ea71dc5ee324e985ca2d17136021aa2443f41a73f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://230f29f8a38f45150616864c0988e0ef3c269e651eefeb0ad3778e3ae387b0fd\",\"dweb:/ipfs/QmTgFRV3XAPDjXA6Gp2ug1ifwyiZGUeFDYivHJ61eJg73g\"]},\"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol\":{\"keccak256\":\"0x1e0810708b8f5de8d3db73240ccee2d36a305cb904aa5acd4588834ebce6acce\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9758197a4d3cb1aa3036a9bd0edbf34a2eba82e484d3d519da495e495d752dee\",\"dweb:/ipfs/QmYtV61Sp55bfcW4DZvsRuDo2EKb5PekqoY3nx5STJn6Zt\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x3d4cd07258d675b6dfa3d9dfd623a77b38fb9935f4a5381ff4bc969948720976\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://30abb60a4d98ad9a33de4fa5e9072342e12df3a79e9c71b5f59ce049ae8cd535\",\"dweb:/ipfs/QmT6NXJDjsf8H14nPYQsFELDB8q5ZTmG9cjdX2bEQJW7ST\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x1fcf8cceb1a67e6c8512267e780933c4a3f63ef44756e6c818fda79be51c8402\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://617d7d57f6f9cd449068b4d23daf485676d083aae648e038d05eb3a13291de35\",\"dweb:/ipfs/QmPADWPiGaSzZDFNpFEUx4ZPqhzPkYncBpHyTfAGcfsqzy\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x0c60057e7351874f086db8dc9291b7ada9ad62cb7725befd2991430d04a74572\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33cdfd1fc36410d45046f88ff9864350146b194736c32834baa38d99b843ffbe\",\"dweb:/ipfs/QmdVmqgFKjgEBURy4KUwWDA6J1LEg1BKcHcXsx4nkeHAD2\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol\":{\"keccak256\":\"0xbdc3bb48ccedb818cd75a6d74a16df55a822e9f6d3cc54c59f576f10aab67b5f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2284f25f2478f419d7781573b17a89d0e7c5589a865d55e2d6ed5163aee23aa8\",\"dweb:/ipfs/QmNsr2625APBQiNKpYnX5VcSnYgfUHR9Uzzp9pRXjoDqK7\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol\":{\"keccak256\":\"0x1e1d74658d7f4eab3d4f8fb0c6c5953bc5f629d9425e978d557dabff7b58b217\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be0175d00008d452d3d553890f73a3d5d51dff4372f720336c8b98f26822fcdb\",\"dweb:/ipfs/QmUkE8g5xPExWoSAKwdi5ww1qJJVtEWtjSF93G2LMQkgD3\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol":{"GovernorTimelockControl":{"abi":[{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorAlreadyCastVote","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorAlreadyQueuedProposal","type":"error"},{"inputs":[],"name":"GovernorDisabledDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"votes","type":"uint256"},{"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"GovernorInsufficientProposerVotes","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"calldatas","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"GovernorInvalidProposalLength","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorInvalidSignature","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteParams","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteType","type":"error"},{"inputs":[{"internalType":"uint256","name":"votingPeriod","type":"uint256"}],"name":"GovernorInvalidVotingPeriod","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNonexistentProposal","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNotQueuedProposal","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyExecutor","type":"error"},{"inputs":[],"name":"GovernorQueueNotImplemented","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"}],"name":"GovernorRestrictedProposer","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"GovernorUnableToCancel","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"enum IGovernor.ProposalState","name":"current","type":"uint8"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"GovernorUnexpectedProposalState","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"voteStart","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"voteEnd","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"etaSeconds","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldTimelock","type":"address"},{"indexed":false,"internalType":"address","name":"newTimelock","type":"address"}],"name":"TimelockChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"VoteCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"},{"indexed":false,"internalType":"bytes","name":"params","type":"bytes"}],"name":"VoteCastWithParams","type":"event"},{"inputs":[],"name":"BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COUNTING_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXTENDED_BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"cancel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"}],"name":"castVote","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"}],"name":"castVoteWithReason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"castVoteWithReasonAndParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteWithReasonAndParamsBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"execute","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"getProposalId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"getVotesWithParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"hashProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalEta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposalNeedsQueuing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalProposer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"queue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"relay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum IGovernor.ProposalState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timelock","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract TimelockController","name":"newTimelock","type":"address"}],"name":"updateTimelock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"BALLOT_TYPEHASH()":"deaaa7cc","CLOCK_MODE()":"4bf5d7e9","COUNTING_MODE()":"dd4e2ba5","EXTENDED_BALLOT_TYPEHASH()":"2fe3e261","cancel(address[],uint256[],bytes[],bytes32)":"452115d6","castVote(uint256,uint8)":"56781388","castVoteBySig(uint256,uint8,address,bytes)":"8ff262e3","castVoteWithReason(uint256,uint8,string)":"7b3c71d3","castVoteWithReasonAndParams(uint256,uint8,string,bytes)":"5f398a14","castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)":"5b8d0e0d","clock()":"91ddadf4","eip712Domain()":"84b0196e","execute(address[],uint256[],bytes[],bytes32)":"2656227d","getProposalId(address[],uint256[],bytes[],bytes32)":"a8f8a668","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","name()":"06fdde03","nonces(address)":"7ecebe00","onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","onERC721Received(address,address,uint256,bytes)":"150b7a02","proposalDeadline(uint256)":"c01f9e37","proposalEta(uint256)":"ab58fb8e","proposalNeedsQueuing(uint256)":"a9a95294","proposalProposer(uint256)":"143489d0","proposalSnapshot(uint256)":"2d63f693","proposalThreshold()":"b58131b0","propose(address[],uint256[],bytes[],string)":"7d5e81e2","queue(address[],uint256[],bytes[],bytes32)":"160cbed7","quorum(uint256)":"f8ce560a","relay(address,uint256,bytes)":"c28bc2fa","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","timelock()":"d33219b4","updateTimelock(address)":"a890c910","version()":"54fd4d50","votingDelay()":"3932abb1","votingPeriod()":"02a251a3"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorAlreadyCastVote\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorAlreadyQueuedProposal\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorDisabledDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"votes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"threshold\",\"type\":\"uint256\"}],\"name\":\"GovernorInsufficientProposerVotes\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"calldatas\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidProposalLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorInvalidSignature\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteParams\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"votingPeriod\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidVotingPeriod\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNonexistentProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNotQueuedProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyExecutor\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorQueueNotImplemented\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"}],\"name\":\"GovernorRestrictedProposer\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorUnableToCancel\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"current\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"GovernorUnexpectedProposalState\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"signatures\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteStart\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteEnd\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"etaSeconds\",\"type\":\"uint256\"}],\"name\":\"ProposalQueued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"oldTimelock\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newTimelock\",\"type\":\"address\"}],\"name\":\"TimelockChange\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"VoteCast\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"VoteCastWithParams\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COUNTING_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXTENDED_BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"}],\"name\":\"castVote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"castVoteWithReason\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParamsBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"getProposalId\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"getVotesWithParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasVoted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"hashProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalDeadline\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalEta\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"proposalNeedsQueuing\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalProposer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalSnapshot\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalThreshold\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"propose\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"queue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"relay\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"state\",\"outputs\":[{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"timelock\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract TimelockController\",\"name\":\"newTimelock\",\"type\":\"address\"}],\"name\":\"updateTimelock\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingPeriod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"Extension of {Governor} that binds the execution process to an instance of {TimelockController}. This adds a delay, enforced by the {TimelockController} to all successful proposal (in addition to the voting duration). The {Governor} needs the proposer (and ideally the executor and canceller) roles for the {Governor} to work properly. Using this model means the proposal will be operated by the {TimelockController} and not by the {Governor}. Thus, the assets and permissions must be attached to the {TimelockController}. Any asset sent to the {Governor} will be inaccessible from a proposal, unless executed via {Governor-relay}. WARNING: Setting up the TimelockController to have additional proposers or cancelers besides the governor is very risky, as it grants them the ability to: 1) execute operations as the timelock, and thus possibly performing operations or accessing funds that are expected to only be accessible through a vote, and 2) block governance proposals that have been approved by the voters, effectively executing a Denial of Service attack.\",\"errors\":{\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"GovernorAlreadyCastVote(address)\":[{\"details\":\"The vote was already cast.\"}],\"GovernorAlreadyQueuedProposal(uint256)\":[{\"details\":\"The proposal has already been queued.\"}],\"GovernorDisabledDeposit()\":[{\"details\":\"Token deposits are disabled in this contract.\"}],\"GovernorInsufficientProposerVotes(address,uint256,uint256)\":[{\"details\":\"The `proposer` does not have the required votes to create a proposal.\"}],\"GovernorInvalidProposalLength(uint256,uint256,uint256)\":[{\"details\":\"Empty proposal or a mismatch between the parameters length for a proposal call.\"}],\"GovernorInvalidSignature(address)\":[{\"details\":\"The provided signature is not valid for the expected `voter`. If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}.\"}],\"GovernorInvalidVoteParams()\":[{\"details\":\"The provided params buffer is not supported by the counting module.\"}],\"GovernorInvalidVoteType()\":[{\"details\":\"The vote type used is not valid for the corresponding counting module.\"}],\"GovernorInvalidVotingPeriod(uint256)\":[{\"details\":\"The voting period set is not a valid period.\"}],\"GovernorNonexistentProposal(uint256)\":[{\"details\":\"The `proposalId` doesn't exist.\"}],\"GovernorNotQueuedProposal(uint256)\":[{\"details\":\"The proposal hasn't been queued yet.\"}],\"GovernorOnlyExecutor(address)\":[{\"details\":\"The `account` is not the governance executor.\"}],\"GovernorQueueNotImplemented()\":[{\"details\":\"Queue operation is not implemented for this governor. Execute should be called directly.\"}],\"GovernorRestrictedProposer(address)\":[{\"details\":\"The `proposer` is not allowed to create a proposal.\"}],\"GovernorUnableToCancel(uint256,address)\":[{\"details\":\"The given `account` is unable to cancel the proposal with given `proposalId`.\"}],\"GovernorUnexpectedProposalState(uint256,uint8,bytes32)\":[{\"details\":\"The current state of a proposal is not the required for performing an operation. The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position counting from right to left. NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist). This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated). See {Governor-_encodeStateBitmap}.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}]},\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"ProposalCanceled(uint256)\":{\"details\":\"Emitted when a proposal is canceled.\"},\"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)\":{\"details\":\"Emitted when a proposal is created.\"},\"ProposalExecuted(uint256)\":{\"details\":\"Emitted when a proposal is executed.\"},\"ProposalQueued(uint256,uint256)\":{\"details\":\"Emitted when a proposal is queued.\"},\"TimelockChange(address,address)\":{\"details\":\"Emitted when the timelock controller used for proposal execution is modified.\"},\"VoteCast(address,uint256,uint8,uint256,string)\":{\"details\":\"Emitted when a vote is cast without params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\"},\"VoteCastWithParams(address,uint256,uint8,uint256,string,bytes)\":{\"details\":\"Emitted when a vote is cast with params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used. `params` are additional encoded parameters. Their interpretation also depends on the voting module used.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Description of the clock\"},\"COUNTING_MODE()\":{\"details\":\"A description of the possible `support` values for {castVote} and the way these votes are counted, meant to be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`. There are 2 standard keys: `support` and `quorum`. - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`. - `quorum=bravo` means that only For votes are counted towards quorum. - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum. If a counting module makes use of encoded `params`, it should include this under a `params` key with a unique name that describes the behavior. For example: - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain. - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote. NOTE: The string can be decoded by the standard https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`] JavaScript class.\"},\"cancel(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-cancel}.\"},\"castVote(uint256,uint8)\":{\"details\":\"See {IGovernor-castVote}.\"},\"castVoteBySig(uint256,uint8,address,bytes)\":{\"details\":\"See {IGovernor-castVoteBySig}.\"},\"castVoteWithReason(uint256,uint8,string)\":{\"details\":\"See {IGovernor-castVoteWithReason}.\"},\"castVoteWithReasonAndParams(uint256,uint8,string,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParams}.\"},\"castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParamsBySig}.\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).\"},\"constructor\":{\"details\":\"Set the timelock.\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"getProposalId(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-getProposalId}.\"},\"getVotes(address,uint256)\":{\"details\":\"See {IGovernor-getVotes}.\"},\"getVotesWithParams(address,uint256,bytes)\":{\"details\":\"See {IGovernor-getVotesWithParams}.\"},\"hasVoted(uint256,address)\":{\"details\":\"Returns whether `account` has cast a vote on `proposalId`.\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-hashProposal}. The proposal id is produced by hashing the ABI encoded `targets` array, the `values` array, the `calldatas` array and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in advance, before the proposal is submitted. Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the same proposal (with same operation and same description) will have the same id if submitted on multiple governors across multiple networks. This also means that in order to execute the same operation twice (on the same governor) the proposer will have to change the description in order to avoid proposal id conflicts.\"},\"name()\":{\"details\":\"See {IGovernor-name}.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"},\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155BatchReceived}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC1155Received(address,address,uint256,uint256,bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"proposalDeadline(uint256)\":{\"details\":\"See {IGovernor-proposalDeadline}.\"},\"proposalEta(uint256)\":{\"details\":\"See {IGovernor-proposalEta}.\"},\"proposalNeedsQueuing(uint256)\":{\"details\":\"See {IGovernor-proposalNeedsQueuing}.\"},\"proposalProposer(uint256)\":{\"details\":\"See {IGovernor-proposalProposer}.\"},\"proposalSnapshot(uint256)\":{\"details\":\"See {IGovernor-proposalSnapshot}.\"},\"proposalThreshold()\":{\"details\":\"See {IGovernor-proposalThreshold}.\"},\"propose(address[],uint256[],bytes[],string)\":{\"details\":\"See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}.\"},\"queue(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-queue}.\"},\"quorum(uint256)\":{\"details\":\"Minimum number of cast voted required for a proposal to be successful. NOTE: The `timepoint` parameter corresponds to the snapshot used for counting vote. This allows to scale the quorum depending on values such as the totalSupply of a token at this timepoint (see {ERC20Votes}).\"},\"relay(address,uint256,bytes)\":{\"details\":\"Relays a transaction or function call to an arbitrary target. In cases where the governance executor is some contract other than the governor itself, like when using a timelock, this function can be invoked in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake. Note that if the executor is simply the governor itself, use of `relay` is redundant.\"},\"state(uint256)\":{\"details\":\"Overridden version of the {Governor-state} function that considers the status reported by the timelock.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"timelock()\":{\"details\":\"Public accessor to check the address of the timelock\"},\"updateTimelock(address)\":{\"details\":\"Public endpoint to update the underlying timelock instance. Restricted to the timelock itself, so updates must be proposed, scheduled, and executed through governance proposals. CAUTION: It is not recommended to change the timelock while there are other queued governance proposals.\"},\"version()\":{\"details\":\"See {IGovernor-version}.\"},\"votingDelay()\":{\"details\":\"Delay, between the proposal is created and the vote starts. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. This can be increased to leave time for users to buy voting power, or delegate it, before the voting of a proposal starts. NOTE: While this interface returns a uint256, timepoints are stored as uint48 following the ERC-6372 clock type. Consequently this value must fit in a uint48 (when added to the current clock). See {IERC6372-clock}.\"},\"votingPeriod()\":{\"details\":\"Delay between the vote start and vote end. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting duration compared to the voting delay. NOTE: This value is stored when the proposal is submitted so that possible changes to the value do not affect proposals that have already been submitted. The type used to save it is a uint32. Consequently, while this interface returns a uint256, the value it returns should fit in a uint32.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"COUNTING_MODE()\":{\"notice\":\"module:voting\"},\"hasVoted(uint256,address)\":{\"notice\":\"module:voting\"},\"quorum(uint256)\":{\"notice\":\"module:user-config\"},\"votingDelay()\":{\"notice\":\"module:user-config\"},\"votingPeriod()\":{\"notice\":\"module:user-config\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol\":\"GovernorTimelockControl\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xc1bebdee8943bd5e9ef1e0f2e63296aa1dd4171a66b9e74d0286220e891e1458\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://928cf2f0042c606f3dcb21bd8a272573f462a215cd65285d2d6b407f31e9bd67\",\"dweb:/ipfs/QmWGxjckno6sfjHPX5naPnsfsyisgy4PJDf46eLw9umfpx\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0x4d9a2b261b56a1e4a37bb038151dec98b952fed16de2bdfdda27e38e2b12b530\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f724110f7aeb6151af800ab8c12e6060b29bda9e013f0ccb331eb754d6a7cbf0\",\"dweb:/ipfs/QmUcjzCZpxtUPdEThtAzE1f9LvuJiUGZxTdH9N6bHrb5Cf\"]},\"@openzeppelin/contracts/governance/Governor.sol\":{\"keccak256\":\"0x2dcd108a0d2f822523460cb704ad11bda9d916d493475d92b9e2b46e55015329\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8c01464f71e183c0712a7a47dd516a6a99423b16553622d473813af4c345cf23\",\"dweb:/ipfs/QmSbXJ2DAE5iWEYFD7uYNJejrggrKpS8G3ryV3XryfyVna\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0xeb587bd3f646da7897e80f4ea71dc5ee324e985ca2d17136021aa2443f41a73f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://230f29f8a38f45150616864c0988e0ef3c269e651eefeb0ad3778e3ae387b0fd\",\"dweb:/ipfs/QmTgFRV3XAPDjXA6Gp2ug1ifwyiZGUeFDYivHJ61eJg73g\"]},\"@openzeppelin/contracts/governance/TimelockController.sol\":{\"keccak256\":\"0x42ce53c97c0d57628662c1a6e277a6eee113aeedd0cae61805e0513ac2866daf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fff5babafc1100625c7f60ee3694fe98b73446992211a30dbfbc2b98cced16\",\"dweb:/ipfs/QmRU8ThthE6USLbEgLNf6jVKp36qJNAkzDZ5RBoYSN7bLC\"]},\"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol\":{\"keccak256\":\"0xa5690e95962c9ce88129b64e25de1a9be912a916e3b7097de44e0fe4177290b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fb99742d3ac1efaf266f63bfc43fbbeaa6bce9a6c2067c4d87bc6d261e425f4a\",\"dweb:/ipfs/Qmcdkp6ESPBxMUGnptMD3qjzGoHFjTLK1kJYFxty9cqnpc\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x3d4cd07258d675b6dfa3d9dfd623a77b38fb9935f4a5381ff4bc969948720976\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://30abb60a4d98ad9a33de4fa5e9072342e12df3a79e9c71b5f59ce049ae8cd535\",\"dweb:/ipfs/QmT6NXJDjsf8H14nPYQsFELDB8q5ZTmG9cjdX2bEQJW7ST\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol\":{\"keccak256\":\"0xe103e95f854ef0cd1bba5f469175f67cd332f5c2561941f165e3dd65cee94d6d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6cf8cc5d07cf8003255f9d766fe8188b9f6e33b6240e126a605f0d061566b23e\",\"dweb:/ipfs/Qmd7okDCSoUt1L4G9hmb5c4W8kWUnfpAa2jyBKUp4xKErd\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol\":{\"keccak256\":\"0xaad20f8713b5cd98114278482d5d91b9758f9727048527d582e8e88fd4901fd8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5396e8dbb000c2fada59b7d2093b9c7c870fd09413ab0fdaba45d882959c6244\",\"dweb:/ipfs/QmXQn5XckSiUsUBpMYuiFeqnojRX4rKa9jmgjCPeTuPmhh\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x1fcf8cceb1a67e6c8512267e780933c4a3f63ef44756e6c818fda79be51c8402\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://617d7d57f6f9cd449068b4d23daf485676d083aae648e038d05eb3a13291de35\",\"dweb:/ipfs/QmPADWPiGaSzZDFNpFEUx4ZPqhzPkYncBpHyTfAGcfsqzy\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x0c60057e7351874f086db8dc9291b7ada9ad62cb7725befd2991430d04a74572\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33cdfd1fc36410d45046f88ff9864350146b194736c32834baa38d99b843ffbe\",\"dweb:/ipfs/QmdVmqgFKjgEBURy4KUwWDA6J1LEg1BKcHcXsx4nkeHAD2\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol\":{\"keccak256\":\"0xbdc3bb48ccedb818cd75a6d74a16df55a822e9f6d3cc54c59f576f10aab67b5f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2284f25f2478f419d7781573b17a89d0e7c5589a865d55e2d6ed5163aee23aa8\",\"dweb:/ipfs/QmNsr2625APBQiNKpYnX5VcSnYgfUHR9Uzzp9pRXjoDqK7\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol\":{\"keccak256\":\"0x1e1d74658d7f4eab3d4f8fb0c6c5953bc5f629d9425e978d557dabff7b58b217\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be0175d00008d452d3d553890f73a3d5d51dff4372f720336c8b98f26822fcdb\",\"dweb:/ipfs/QmUkE8g5xPExWoSAKwdi5ww1qJJVtEWtjSF93G2LMQkgD3\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol":{"GovernorVotes":{"abi":[{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorAlreadyCastVote","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorAlreadyQueuedProposal","type":"error"},{"inputs":[],"name":"GovernorDisabledDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"votes","type":"uint256"},{"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"GovernorInsufficientProposerVotes","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"calldatas","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"GovernorInvalidProposalLength","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorInvalidSignature","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteParams","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteType","type":"error"},{"inputs":[{"internalType":"uint256","name":"votingPeriod","type":"uint256"}],"name":"GovernorInvalidVotingPeriod","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNonexistentProposal","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNotQueuedProposal","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyExecutor","type":"error"},{"inputs":[],"name":"GovernorQueueNotImplemented","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"}],"name":"GovernorRestrictedProposer","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"GovernorUnableToCancel","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"enum IGovernor.ProposalState","name":"current","type":"uint8"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"GovernorUnexpectedProposalState","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"voteStart","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"voteEnd","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"etaSeconds","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"VoteCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"},{"indexed":false,"internalType":"bytes","name":"params","type":"bytes"}],"name":"VoteCastWithParams","type":"event"},{"inputs":[],"name":"BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COUNTING_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXTENDED_BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"cancel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"}],"name":"castVote","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"}],"name":"castVoteWithReason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"castVoteWithReasonAndParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteWithReasonAndParamsBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"execute","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"getProposalId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"getVotesWithParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"hashProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalEta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposalNeedsQueuing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalProposer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"queue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"relay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum IGovernor.ProposalState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC5805","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"BALLOT_TYPEHASH()":"deaaa7cc","CLOCK_MODE()":"4bf5d7e9","COUNTING_MODE()":"dd4e2ba5","EXTENDED_BALLOT_TYPEHASH()":"2fe3e261","cancel(address[],uint256[],bytes[],bytes32)":"452115d6","castVote(uint256,uint8)":"56781388","castVoteBySig(uint256,uint8,address,bytes)":"8ff262e3","castVoteWithReason(uint256,uint8,string)":"7b3c71d3","castVoteWithReasonAndParams(uint256,uint8,string,bytes)":"5f398a14","castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)":"5b8d0e0d","clock()":"91ddadf4","eip712Domain()":"84b0196e","execute(address[],uint256[],bytes[],bytes32)":"2656227d","getProposalId(address[],uint256[],bytes[],bytes32)":"a8f8a668","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","name()":"06fdde03","nonces(address)":"7ecebe00","onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","onERC721Received(address,address,uint256,bytes)":"150b7a02","proposalDeadline(uint256)":"c01f9e37","proposalEta(uint256)":"ab58fb8e","proposalNeedsQueuing(uint256)":"a9a95294","proposalProposer(uint256)":"143489d0","proposalSnapshot(uint256)":"2d63f693","proposalThreshold()":"b58131b0","propose(address[],uint256[],bytes[],string)":"7d5e81e2","queue(address[],uint256[],bytes[],bytes32)":"160cbed7","quorum(uint256)":"f8ce560a","relay(address,uint256,bytes)":"c28bc2fa","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","token()":"fc0c546a","version()":"54fd4d50","votingDelay()":"3932abb1","votingPeriod()":"02a251a3"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorAlreadyCastVote\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorAlreadyQueuedProposal\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorDisabledDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"votes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"threshold\",\"type\":\"uint256\"}],\"name\":\"GovernorInsufficientProposerVotes\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"calldatas\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidProposalLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorInvalidSignature\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteParams\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"votingPeriod\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidVotingPeriod\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNonexistentProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNotQueuedProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyExecutor\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorQueueNotImplemented\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"}],\"name\":\"GovernorRestrictedProposer\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorUnableToCancel\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"current\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"GovernorUnexpectedProposalState\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"signatures\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteStart\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteEnd\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"etaSeconds\",\"type\":\"uint256\"}],\"name\":\"ProposalQueued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"VoteCast\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"VoteCastWithParams\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COUNTING_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXTENDED_BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"}],\"name\":\"castVote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"castVoteWithReason\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParamsBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"getProposalId\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"getVotesWithParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasVoted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"hashProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalDeadline\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalEta\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"proposalNeedsQueuing\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalProposer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalSnapshot\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalThreshold\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"propose\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"queue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"relay\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"state\",\"outputs\":[{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"token\",\"outputs\":[{\"internalType\":\"contract IERC5805\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingPeriod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"Extension of {Governor} for voting weight extraction from an {ERC20Votes} token, or since v4.5 an {ERC721Votes} token.\",\"errors\":{\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"GovernorAlreadyCastVote(address)\":[{\"details\":\"The vote was already cast.\"}],\"GovernorAlreadyQueuedProposal(uint256)\":[{\"details\":\"The proposal has already been queued.\"}],\"GovernorDisabledDeposit()\":[{\"details\":\"Token deposits are disabled in this contract.\"}],\"GovernorInsufficientProposerVotes(address,uint256,uint256)\":[{\"details\":\"The `proposer` does not have the required votes to create a proposal.\"}],\"GovernorInvalidProposalLength(uint256,uint256,uint256)\":[{\"details\":\"Empty proposal or a mismatch between the parameters length for a proposal call.\"}],\"GovernorInvalidSignature(address)\":[{\"details\":\"The provided signature is not valid for the expected `voter`. If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}.\"}],\"GovernorInvalidVoteParams()\":[{\"details\":\"The provided params buffer is not supported by the counting module.\"}],\"GovernorInvalidVoteType()\":[{\"details\":\"The vote type used is not valid for the corresponding counting module.\"}],\"GovernorInvalidVotingPeriod(uint256)\":[{\"details\":\"The voting period set is not a valid period.\"}],\"GovernorNonexistentProposal(uint256)\":[{\"details\":\"The `proposalId` doesn't exist.\"}],\"GovernorNotQueuedProposal(uint256)\":[{\"details\":\"The proposal hasn't been queued yet.\"}],\"GovernorOnlyExecutor(address)\":[{\"details\":\"The `account` is not the governance executor.\"}],\"GovernorQueueNotImplemented()\":[{\"details\":\"Queue operation is not implemented for this governor. Execute should be called directly.\"}],\"GovernorRestrictedProposer(address)\":[{\"details\":\"The `proposer` is not allowed to create a proposal.\"}],\"GovernorUnableToCancel(uint256,address)\":[{\"details\":\"The given `account` is unable to cancel the proposal with given `proposalId`.\"}],\"GovernorUnexpectedProposalState(uint256,uint8,bytes32)\":[{\"details\":\"The current state of a proposal is not the required for performing an operation. The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position counting from right to left. NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist). This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated). See {Governor-_encodeStateBitmap}.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}]},\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"ProposalCanceled(uint256)\":{\"details\":\"Emitted when a proposal is canceled.\"},\"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)\":{\"details\":\"Emitted when a proposal is created.\"},\"ProposalExecuted(uint256)\":{\"details\":\"Emitted when a proposal is executed.\"},\"ProposalQueued(uint256,uint256)\":{\"details\":\"Emitted when a proposal is queued.\"},\"VoteCast(address,uint256,uint8,uint256,string)\":{\"details\":\"Emitted when a vote is cast without params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\"},\"VoteCastWithParams(address,uint256,uint8,uint256,string,bytes)\":{\"details\":\"Emitted when a vote is cast with params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used. `params` are additional encoded parameters. Their interpretation also depends on the voting module used.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Machine-readable description of the clock as specified in ERC-6372.\"},\"COUNTING_MODE()\":{\"details\":\"A description of the possible `support` values for {castVote} and the way these votes are counted, meant to be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`. There are 2 standard keys: `support` and `quorum`. - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`. - `quorum=bravo` means that only For votes are counted towards quorum. - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum. If a counting module makes use of encoded `params`, it should include this under a `params` key with a unique name that describes the behavior. For example: - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain. - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote. NOTE: The string can be decoded by the standard https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`] JavaScript class.\"},\"cancel(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-cancel}.\"},\"castVote(uint256,uint8)\":{\"details\":\"See {IGovernor-castVote}.\"},\"castVoteBySig(uint256,uint8,address,bytes)\":{\"details\":\"See {IGovernor-castVoteBySig}.\"},\"castVoteWithReason(uint256,uint8,string)\":{\"details\":\"See {IGovernor-castVoteWithReason}.\"},\"castVoteWithReasonAndParams(uint256,uint8,string,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParams}.\"},\"castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParamsBySig}.\"},\"clock()\":{\"details\":\"Clock (as specified in ERC-6372) is set to match the token's clock. Fallback to block numbers if the token does not implement ERC-6372.\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"getProposalId(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-getProposalId}.\"},\"getVotes(address,uint256)\":{\"details\":\"See {IGovernor-getVotes}.\"},\"getVotesWithParams(address,uint256,bytes)\":{\"details\":\"See {IGovernor-getVotesWithParams}.\"},\"hasVoted(uint256,address)\":{\"details\":\"Returns whether `account` has cast a vote on `proposalId`.\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-hashProposal}. The proposal id is produced by hashing the ABI encoded `targets` array, the `values` array, the `calldatas` array and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in advance, before the proposal is submitted. Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the same proposal (with same operation and same description) will have the same id if submitted on multiple governors across multiple networks. This also means that in order to execute the same operation twice (on the same governor) the proposer will have to change the description in order to avoid proposal id conflicts.\"},\"name()\":{\"details\":\"See {IGovernor-name}.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"},\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155BatchReceived}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC1155Received(address,address,uint256,uint256,bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"proposalDeadline(uint256)\":{\"details\":\"See {IGovernor-proposalDeadline}.\"},\"proposalEta(uint256)\":{\"details\":\"See {IGovernor-proposalEta}.\"},\"proposalNeedsQueuing(uint256)\":{\"details\":\"See {IGovernor-proposalNeedsQueuing}.\"},\"proposalProposer(uint256)\":{\"details\":\"See {IGovernor-proposalProposer}.\"},\"proposalSnapshot(uint256)\":{\"details\":\"See {IGovernor-proposalSnapshot}.\"},\"proposalThreshold()\":{\"details\":\"See {IGovernor-proposalThreshold}.\"},\"propose(address[],uint256[],bytes[],string)\":{\"details\":\"See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}.\"},\"queue(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-queue}.\"},\"quorum(uint256)\":{\"details\":\"Minimum number of cast voted required for a proposal to be successful. NOTE: The `timepoint` parameter corresponds to the snapshot used for counting vote. This allows to scale the quorum depending on values such as the totalSupply of a token at this timepoint (see {ERC20Votes}).\"},\"relay(address,uint256,bytes)\":{\"details\":\"Relays a transaction or function call to an arbitrary target. In cases where the governance executor is some contract other than the governor itself, like when using a timelock, this function can be invoked in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake. Note that if the executor is simply the governor itself, use of `relay` is redundant.\"},\"state(uint256)\":{\"details\":\"See {IGovernor-state}.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"token()\":{\"details\":\"The token that voting power is sourced from.\"},\"version()\":{\"details\":\"See {IGovernor-version}.\"},\"votingDelay()\":{\"details\":\"Delay, between the proposal is created and the vote starts. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. This can be increased to leave time for users to buy voting power, or delegate it, before the voting of a proposal starts. NOTE: While this interface returns a uint256, timepoints are stored as uint48 following the ERC-6372 clock type. Consequently this value must fit in a uint48 (when added to the current clock). See {IERC6372-clock}.\"},\"votingPeriod()\":{\"details\":\"Delay between the vote start and vote end. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting duration compared to the voting delay. NOTE: This value is stored when the proposal is submitted so that possible changes to the value do not affect proposals that have already been submitted. The type used to save it is a uint32. Consequently, while this interface returns a uint256, the value it returns should fit in a uint32.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"COUNTING_MODE()\":{\"notice\":\"module:voting\"},\"hasVoted(uint256,address)\":{\"notice\":\"module:voting\"},\"quorum(uint256)\":{\"notice\":\"module:user-config\"},\"votingDelay()\":{\"notice\":\"module:user-config\"},\"votingPeriod()\":{\"notice\":\"module:user-config\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol\":\"GovernorVotes\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/Governor.sol\":{\"keccak256\":\"0x2dcd108a0d2f822523460cb704ad11bda9d916d493475d92b9e2b46e55015329\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8c01464f71e183c0712a7a47dd516a6a99423b16553622d473813af4c345cf23\",\"dweb:/ipfs/QmSbXJ2DAE5iWEYFD7uYNJejrggrKpS8G3ryV3XryfyVna\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0xeb587bd3f646da7897e80f4ea71dc5ee324e985ca2d17136021aa2443f41a73f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://230f29f8a38f45150616864c0988e0ef3c269e651eefeb0ad3778e3ae387b0fd\",\"dweb:/ipfs/QmTgFRV3XAPDjXA6Gp2ug1ifwyiZGUeFDYivHJ61eJg73g\"]},\"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol\":{\"keccak256\":\"0x6fc0e9e0c3ed137dc2281a120cdc01b92010a26e6fd5fc4e6af08fc0f28bdb9e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2de2620f20f2ec0f52b14b241bec63815a5e5c42a76198a754d899fedfbdb97a\",\"dweb:/ipfs/QmTPcYhinbDv9T6T1hzNjbZrWNWSFYauoug4zdPvDTXect\"]},\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0x5e2b397ae88fd5c68e4f6762eb9f65f65c36702eb57796495f471d024ce70947\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://348fc8e291d54314bb22437b532f443d5dbfb80c8cc9591567c1af6554ccf856\",\"dweb:/ipfs/QmP8ZTyitZinxcpwAHeYHhwj7u21zPpKXSiww38V74sXC2\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x3d4cd07258d675b6dfa3d9dfd623a77b38fb9935f4a5381ff4bc969948720976\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://30abb60a4d98ad9a33de4fa5e9072342e12df3a79e9c71b5f59ce049ae8cd535\",\"dweb:/ipfs/QmT6NXJDjsf8H14nPYQsFELDB8q5ZTmG9cjdX2bEQJW7ST\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC5805.sol\":{\"keccak256\":\"0x4b9b89f91adbb7d3574f85394754cfb08c5b4eafca8a7061e2094a019ab8f818\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7373d5dbb8eb2381aa0883a456fac89283fcaf52f42fa805d4188f270716742a\",\"dweb:/ipfs/QmVnZDmT4ABvNhRJMaQnbCzsCA8HpyHPVaxi4fCi92LFv2\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x1fcf8cceb1a67e6c8512267e780933c4a3f63ef44756e6c818fda79be51c8402\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://617d7d57f6f9cd449068b4d23daf485676d083aae648e038d05eb3a13291de35\",\"dweb:/ipfs/QmPADWPiGaSzZDFNpFEUx4ZPqhzPkYncBpHyTfAGcfsqzy\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x0c60057e7351874f086db8dc9291b7ada9ad62cb7725befd2991430d04a74572\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33cdfd1fc36410d45046f88ff9864350146b194736c32834baa38d99b843ffbe\",\"dweb:/ipfs/QmdVmqgFKjgEBURy4KUwWDA6J1LEg1BKcHcXsx4nkeHAD2\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol\":{\"keccak256\":\"0xbdc3bb48ccedb818cd75a6d74a16df55a822e9f6d3cc54c59f576f10aab67b5f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2284f25f2478f419d7781573b17a89d0e7c5589a865d55e2d6ed5163aee23aa8\",\"dweb:/ipfs/QmNsr2625APBQiNKpYnX5VcSnYgfUHR9Uzzp9pRXjoDqK7\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol\":{\"keccak256\":\"0x1e1d74658d7f4eab3d4f8fb0c6c5953bc5f629d9425e978d557dabff7b58b217\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be0175d00008d452d3d553890f73a3d5d51dff4372f720336c8b98f26822fcdb\",\"dweb:/ipfs/QmUkE8g5xPExWoSAKwdi5ww1qJJVtEWtjSF93G2LMQkgD3\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol":{"GovernorVotesQuorumFraction":{"abi":[{"inputs":[],"name":"CheckpointUnorderedInsertion","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorAlreadyCastVote","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorAlreadyQueuedProposal","type":"error"},{"inputs":[],"name":"GovernorDisabledDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"votes","type":"uint256"},{"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"GovernorInsufficientProposerVotes","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"calldatas","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"GovernorInvalidProposalLength","type":"error"},{"inputs":[{"internalType":"uint256","name":"quorumNumerator","type":"uint256"},{"internalType":"uint256","name":"quorumDenominator","type":"uint256"}],"name":"GovernorInvalidQuorumFraction","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorInvalidSignature","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteParams","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteType","type":"error"},{"inputs":[{"internalType":"uint256","name":"votingPeriod","type":"uint256"}],"name":"GovernorInvalidVotingPeriod","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNonexistentProposal","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNotQueuedProposal","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyExecutor","type":"error"},{"inputs":[],"name":"GovernorQueueNotImplemented","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"}],"name":"GovernorRestrictedProposer","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"GovernorUnableToCancel","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"enum IGovernor.ProposalState","name":"current","type":"uint8"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"GovernorUnexpectedProposalState","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"voteStart","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"voteEnd","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"etaSeconds","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldQuorumNumerator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newQuorumNumerator","type":"uint256"}],"name":"QuorumNumeratorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"VoteCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"},{"indexed":false,"internalType":"bytes","name":"params","type":"bytes"}],"name":"VoteCastWithParams","type":"event"},{"inputs":[],"name":"BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COUNTING_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXTENDED_BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"cancel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"}],"name":"castVote","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"}],"name":"castVoteWithReason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"castVoteWithReasonAndParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteWithReasonAndParamsBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"execute","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"getProposalId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"getVotesWithParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"hashProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalEta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposalNeedsQueuing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalProposer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"queue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"quorumDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"quorumNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"quorumNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"relay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum IGovernor.ProposalState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC5805","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newQuorumNumerator","type":"uint256"}],"name":"updateQuorumNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"BALLOT_TYPEHASH()":"deaaa7cc","CLOCK_MODE()":"4bf5d7e9","COUNTING_MODE()":"dd4e2ba5","EXTENDED_BALLOT_TYPEHASH()":"2fe3e261","cancel(address[],uint256[],bytes[],bytes32)":"452115d6","castVote(uint256,uint8)":"56781388","castVoteBySig(uint256,uint8,address,bytes)":"8ff262e3","castVoteWithReason(uint256,uint8,string)":"7b3c71d3","castVoteWithReasonAndParams(uint256,uint8,string,bytes)":"5f398a14","castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)":"5b8d0e0d","clock()":"91ddadf4","eip712Domain()":"84b0196e","execute(address[],uint256[],bytes[],bytes32)":"2656227d","getProposalId(address[],uint256[],bytes[],bytes32)":"a8f8a668","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","name()":"06fdde03","nonces(address)":"7ecebe00","onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","onERC721Received(address,address,uint256,bytes)":"150b7a02","proposalDeadline(uint256)":"c01f9e37","proposalEta(uint256)":"ab58fb8e","proposalNeedsQueuing(uint256)":"a9a95294","proposalProposer(uint256)":"143489d0","proposalSnapshot(uint256)":"2d63f693","proposalThreshold()":"b58131b0","propose(address[],uint256[],bytes[],string)":"7d5e81e2","queue(address[],uint256[],bytes[],bytes32)":"160cbed7","quorum(uint256)":"f8ce560a","quorumDenominator()":"97c3d334","quorumNumerator()":"a7713a70","quorumNumerator(uint256)":"60c4247f","relay(address,uint256,bytes)":"c28bc2fa","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","token()":"fc0c546a","updateQuorumNumerator(uint256)":"06f3f9e6","version()":"54fd4d50","votingDelay()":"3932abb1","votingPeriod()":"02a251a3"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"CheckpointUnorderedInsertion\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorAlreadyCastVote\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorAlreadyQueuedProposal\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorDisabledDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"votes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"threshold\",\"type\":\"uint256\"}],\"name\":\"GovernorInsufficientProposerVotes\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"calldatas\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidProposalLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"quorumNumerator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"quorumDenominator\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidQuorumFraction\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorInvalidSignature\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteParams\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"votingPeriod\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidVotingPeriod\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNonexistentProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNotQueuedProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyExecutor\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorQueueNotImplemented\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"}],\"name\":\"GovernorRestrictedProposer\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorUnableToCancel\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"current\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"GovernorUnexpectedProposalState\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"signatures\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteStart\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteEnd\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"etaSeconds\",\"type\":\"uint256\"}],\"name\":\"ProposalQueued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldQuorumNumerator\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newQuorumNumerator\",\"type\":\"uint256\"}],\"name\":\"QuorumNumeratorUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"VoteCast\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"VoteCastWithParams\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COUNTING_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXTENDED_BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"}],\"name\":\"castVote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"castVoteWithReason\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParamsBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"getProposalId\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"getVotesWithParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasVoted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"hashProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalDeadline\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalEta\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"proposalNeedsQueuing\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalProposer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalSnapshot\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalThreshold\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"propose\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"queue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"quorumDenominator\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"quorumNumerator\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"quorumNumerator\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"relay\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"state\",\"outputs\":[{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"token\",\"outputs\":[{\"internalType\":\"contract IERC5805\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"newQuorumNumerator\",\"type\":\"uint256\"}],\"name\":\"updateQuorumNumerator\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingPeriod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"Extension of {Governor} for voting weight extraction from an {ERC20Votes} token and a quorum expressed as a fraction of the total supply.\",\"errors\":{\"CheckpointUnorderedInsertion()\":[{\"details\":\"A value was attempted to be inserted on a past checkpoint.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"GovernorAlreadyCastVote(address)\":[{\"details\":\"The vote was already cast.\"}],\"GovernorAlreadyQueuedProposal(uint256)\":[{\"details\":\"The proposal has already been queued.\"}],\"GovernorDisabledDeposit()\":[{\"details\":\"Token deposits are disabled in this contract.\"}],\"GovernorInsufficientProposerVotes(address,uint256,uint256)\":[{\"details\":\"The `proposer` does not have the required votes to create a proposal.\"}],\"GovernorInvalidProposalLength(uint256,uint256,uint256)\":[{\"details\":\"Empty proposal or a mismatch between the parameters length for a proposal call.\"}],\"GovernorInvalidQuorumFraction(uint256,uint256)\":[{\"details\":\"The quorum set is not a valid fraction.\"}],\"GovernorInvalidSignature(address)\":[{\"details\":\"The provided signature is not valid for the expected `voter`. If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}.\"}],\"GovernorInvalidVoteParams()\":[{\"details\":\"The provided params buffer is not supported by the counting module.\"}],\"GovernorInvalidVoteType()\":[{\"details\":\"The vote type used is not valid for the corresponding counting module.\"}],\"GovernorInvalidVotingPeriod(uint256)\":[{\"details\":\"The voting period set is not a valid period.\"}],\"GovernorNonexistentProposal(uint256)\":[{\"details\":\"The `proposalId` doesn't exist.\"}],\"GovernorNotQueuedProposal(uint256)\":[{\"details\":\"The proposal hasn't been queued yet.\"}],\"GovernorOnlyExecutor(address)\":[{\"details\":\"The `account` is not the governance executor.\"}],\"GovernorQueueNotImplemented()\":[{\"details\":\"Queue operation is not implemented for this governor. Execute should be called directly.\"}],\"GovernorRestrictedProposer(address)\":[{\"details\":\"The `proposer` is not allowed to create a proposal.\"}],\"GovernorUnableToCancel(uint256,address)\":[{\"details\":\"The given `account` is unable to cancel the proposal with given `proposalId`.\"}],\"GovernorUnexpectedProposalState(uint256,uint8,bytes32)\":[{\"details\":\"The current state of a proposal is not the required for performing an operation. The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position counting from right to left. NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist). This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated). See {Governor-_encodeStateBitmap}.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}]},\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"ProposalCanceled(uint256)\":{\"details\":\"Emitted when a proposal is canceled.\"},\"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)\":{\"details\":\"Emitted when a proposal is created.\"},\"ProposalExecuted(uint256)\":{\"details\":\"Emitted when a proposal is executed.\"},\"ProposalQueued(uint256,uint256)\":{\"details\":\"Emitted when a proposal is queued.\"},\"VoteCast(address,uint256,uint8,uint256,string)\":{\"details\":\"Emitted when a vote is cast without params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\"},\"VoteCastWithParams(address,uint256,uint8,uint256,string,bytes)\":{\"details\":\"Emitted when a vote is cast with params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used. `params` are additional encoded parameters. Their interpretation also depends on the voting module used.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Machine-readable description of the clock as specified in ERC-6372.\"},\"COUNTING_MODE()\":{\"details\":\"A description of the possible `support` values for {castVote} and the way these votes are counted, meant to be consumed by UIs to show correct vote options and interpret the results. The string is a URL-encoded sequence of key-value pairs that each describe one aspect, for example `support=bravo&quorum=for,abstain`. There are 2 standard keys: `support` and `quorum`. - `support=bravo` refers to the vote options 0 = Against, 1 = For, 2 = Abstain, as in `GovernorBravo`. - `quorum=bravo` means that only For votes are counted towards quorum. - `quorum=for,abstain` means that both For and Abstain votes are counted towards quorum. If a counting module makes use of encoded `params`, it should include this under a `params` key with a unique name that describes the behavior. For example: - `params=fractional` might refer to a scheme where votes are divided fractionally between for/against/abstain. - `params=erc721` might refer to a scheme where specific NFTs are delegated to vote. NOTE: The string can be decoded by the standard https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams[`URLSearchParams`] JavaScript class.\"},\"cancel(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-cancel}.\"},\"castVote(uint256,uint8)\":{\"details\":\"See {IGovernor-castVote}.\"},\"castVoteBySig(uint256,uint8,address,bytes)\":{\"details\":\"See {IGovernor-castVoteBySig}.\"},\"castVoteWithReason(uint256,uint8,string)\":{\"details\":\"See {IGovernor-castVoteWithReason}.\"},\"castVoteWithReasonAndParams(uint256,uint8,string,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParams}.\"},\"castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParamsBySig}.\"},\"clock()\":{\"details\":\"Clock (as specified in ERC-6372) is set to match the token's clock. Fallback to block numbers if the token does not implement ERC-6372.\"},\"constructor\":{\"details\":\"Initialize quorum as a fraction of the token's total supply. The fraction is specified as `numerator / denominator`. By default the denominator is 100, so quorum is specified as a percent: a numerator of 10 corresponds to quorum being 10% of total supply. The denominator can be customized by overriding {quorumDenominator}.\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"getProposalId(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-getProposalId}.\"},\"getVotes(address,uint256)\":{\"details\":\"See {IGovernor-getVotes}.\"},\"getVotesWithParams(address,uint256,bytes)\":{\"details\":\"See {IGovernor-getVotesWithParams}.\"},\"hasVoted(uint256,address)\":{\"details\":\"Returns whether `account` has cast a vote on `proposalId`.\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-hashProposal}. The proposal id is produced by hashing the ABI encoded `targets` array, the `values` array, the `calldatas` array and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in advance, before the proposal is submitted. Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the same proposal (with same operation and same description) will have the same id if submitted on multiple governors across multiple networks. This also means that in order to execute the same operation twice (on the same governor) the proposer will have to change the description in order to avoid proposal id conflicts.\"},\"name()\":{\"details\":\"See {IGovernor-name}.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"},\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155BatchReceived}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC1155Received(address,address,uint256,uint256,bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"proposalDeadline(uint256)\":{\"details\":\"See {IGovernor-proposalDeadline}.\"},\"proposalEta(uint256)\":{\"details\":\"See {IGovernor-proposalEta}.\"},\"proposalNeedsQueuing(uint256)\":{\"details\":\"See {IGovernor-proposalNeedsQueuing}.\"},\"proposalProposer(uint256)\":{\"details\":\"See {IGovernor-proposalProposer}.\"},\"proposalSnapshot(uint256)\":{\"details\":\"See {IGovernor-proposalSnapshot}.\"},\"proposalThreshold()\":{\"details\":\"See {IGovernor-proposalThreshold}.\"},\"propose(address[],uint256[],bytes[],string)\":{\"details\":\"See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}.\"},\"queue(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-queue}.\"},\"quorum(uint256)\":{\"details\":\"Returns the quorum for a timepoint, in terms of number of votes: `supply * numerator / denominator`.\"},\"quorumDenominator()\":{\"details\":\"Returns the quorum denominator. Defaults to 100, but may be overridden.\"},\"quorumNumerator()\":{\"details\":\"Returns the current quorum numerator. See {quorumDenominator}.\"},\"quorumNumerator(uint256)\":{\"details\":\"Returns the quorum numerator at a specific timepoint. See {quorumDenominator}.\"},\"relay(address,uint256,bytes)\":{\"details\":\"Relays a transaction or function call to an arbitrary target. In cases where the governance executor is some contract other than the governor itself, like when using a timelock, this function can be invoked in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake. Note that if the executor is simply the governor itself, use of `relay` is redundant.\"},\"state(uint256)\":{\"details\":\"See {IGovernor-state}.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"token()\":{\"details\":\"The token that voting power is sourced from.\"},\"updateQuorumNumerator(uint256)\":{\"details\":\"Changes the quorum numerator. Emits a {QuorumNumeratorUpdated} event. Requirements: - Must be called through a governance proposal. - New numerator must be smaller or equal to the denominator.\"},\"version()\":{\"details\":\"See {IGovernor-version}.\"},\"votingDelay()\":{\"details\":\"Delay, between the proposal is created and the vote starts. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. This can be increased to leave time for users to buy voting power, or delegate it, before the voting of a proposal starts. NOTE: While this interface returns a uint256, timepoints are stored as uint48 following the ERC-6372 clock type. Consequently this value must fit in a uint48 (when added to the current clock). See {IERC6372-clock}.\"},\"votingPeriod()\":{\"details\":\"Delay between the vote start and vote end. The unit this duration is expressed in depends on the clock (see ERC-6372) this contract uses. NOTE: The {votingDelay} can delay the start of the vote. This must be considered when setting the voting duration compared to the voting delay. NOTE: This value is stored when the proposal is submitted so that possible changes to the value do not affect proposals that have already been submitted. The type used to save it is a uint32. Consequently, while this interface returns a uint256, the value it returns should fit in a uint32.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"COUNTING_MODE()\":{\"notice\":\"module:voting\"},\"hasVoted(uint256,address)\":{\"notice\":\"module:voting\"},\"votingDelay()\":{\"notice\":\"module:user-config\"},\"votingPeriod()\":{\"notice\":\"module:user-config\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol\":\"GovernorVotesQuorumFraction\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/Governor.sol\":{\"keccak256\":\"0x2dcd108a0d2f822523460cb704ad11bda9d916d493475d92b9e2b46e55015329\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8c01464f71e183c0712a7a47dd516a6a99423b16553622d473813af4c345cf23\",\"dweb:/ipfs/QmSbXJ2DAE5iWEYFD7uYNJejrggrKpS8G3ryV3XryfyVna\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0xeb587bd3f646da7897e80f4ea71dc5ee324e985ca2d17136021aa2443f41a73f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://230f29f8a38f45150616864c0988e0ef3c269e651eefeb0ad3778e3ae387b0fd\",\"dweb:/ipfs/QmTgFRV3XAPDjXA6Gp2ug1ifwyiZGUeFDYivHJ61eJg73g\"]},\"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol\":{\"keccak256\":\"0x6fc0e9e0c3ed137dc2281a120cdc01b92010a26e6fd5fc4e6af08fc0f28bdb9e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2de2620f20f2ec0f52b14b241bec63815a5e5c42a76198a754d899fedfbdb97a\",\"dweb:/ipfs/QmTPcYhinbDv9T6T1hzNjbZrWNWSFYauoug4zdPvDTXect\"]},\"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol\":{\"keccak256\":\"0xa04c3f5bd34e0d4a07deb6b132d9e108782caa1d86c8474319358cf86ddd9a11\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3c344331d87e523c9f2eafa31cc027ffc8f4f6228d553683966deff60c1ac872\",\"dweb:/ipfs/QmaZZBPVDhEJ2rA7vbJrHLGRLkccBfrGVb717uDTrNYiTN\"]},\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0x5e2b397ae88fd5c68e4f6762eb9f65f65c36702eb57796495f471d024ce70947\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://348fc8e291d54314bb22437b532f443d5dbfb80c8cc9591567c1af6554ccf856\",\"dweb:/ipfs/QmP8ZTyitZinxcpwAHeYHhwj7u21zPpKXSiww38V74sXC2\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x3d4cd07258d675b6dfa3d9dfd623a77b38fb9935f4a5381ff4bc969948720976\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://30abb60a4d98ad9a33de4fa5e9072342e12df3a79e9c71b5f59ce049ae8cd535\",\"dweb:/ipfs/QmT6NXJDjsf8H14nPYQsFELDB8q5ZTmG9cjdX2bEQJW7ST\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC5805.sol\":{\"keccak256\":\"0x4b9b89f91adbb7d3574f85394754cfb08c5b4eafca8a7061e2094a019ab8f818\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7373d5dbb8eb2381aa0883a456fac89283fcaf52f42fa805d4188f270716742a\",\"dweb:/ipfs/QmVnZDmT4ABvNhRJMaQnbCzsCA8HpyHPVaxi4fCi92LFv2\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x1fcf8cceb1a67e6c8512267e780933c4a3f63ef44756e6c818fda79be51c8402\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://617d7d57f6f9cd449068b4d23daf485676d083aae648e038d05eb3a13291de35\",\"dweb:/ipfs/QmPADWPiGaSzZDFNpFEUx4ZPqhzPkYncBpHyTfAGcfsqzy\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x0c60057e7351874f086db8dc9291b7ada9ad62cb7725befd2991430d04a74572\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33cdfd1fc36410d45046f88ff9864350146b194736c32834baa38d99b843ffbe\",\"dweb:/ipfs/QmdVmqgFKjgEBURy4KUwWDA6J1LEg1BKcHcXsx4nkeHAD2\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol\":{\"keccak256\":\"0xbdc3bb48ccedb818cd75a6d74a16df55a822e9f6d3cc54c59f576f10aab67b5f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2284f25f2478f419d7781573b17a89d0e7c5589a865d55e2d6ed5163aee23aa8\",\"dweb:/ipfs/QmNsr2625APBQiNKpYnX5VcSnYgfUHR9Uzzp9pRXjoDqK7\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/Checkpoints.sol\":{\"keccak256\":\"0x93ce66a307d66cb14e95dbc8f20641cedf48b2d060bf3bda431d62a4493e6e8d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://10d4122ee13fd8dcd2f468a86031665345d2dfdda76993d1f51201bdeb746f9d\",\"dweb:/ipfs/QmWxbbYEgyDCjwT4ZtNwujJwB4vdnR2qEKwL2Zrz9JoSDU\"]},\"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol\":{\"keccak256\":\"0x1e1d74658d7f4eab3d4f8fb0c6c5953bc5f629d9425e978d557dabff7b58b217\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be0175d00008d452d3d553890f73a3d5d51dff4372f720336c8b98f26822fcdb\",\"dweb:/ipfs/QmUkE8g5xPExWoSAKwdi5ww1qJJVtEWtjSF93G2LMQkgD3\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/utils/IVotes.sol":{"IVotes":{"abi":[{"inputs":[{"internalType":"uint256","name":"expiry","type":"uint256"}],"name":"VotesExpiredSignature","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousVotes","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotes","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"delegate(address)":"5c19a95c","delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)":"c3cda520","delegates(address)":"587cde1e","getPastTotalSupply(uint256)":"8e539e8c","getPastVotes(address,uint256)":"3a46b1a8","getVotes(address)":"9ab24eb0"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"}],\"name\":\"VotesExpiredSignature\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"fromDelegate\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"toDelegate\",\"type\":\"address\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"previousVotes\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newVotes\",\"type\":\"uint256\"}],\"name\":\"DelegateVotesChanged\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"delegates\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastTotalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts.\",\"errors\":{\"VotesExpiredSignature(uint256)\":[{\"details\":\"The signature used has expired.\"}]},\"events\":{\"DelegateChanged(address,address,address)\":{\"details\":\"Emitted when an account changes their delegate.\"},\"DelegateVotesChanged(address,uint256,uint256)\":{\"details\":\"Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units.\"}},\"kind\":\"dev\",\"methods\":{\"delegate(address)\":{\"details\":\"Delegates votes from the sender to `delegatee`.\"},\"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates votes from signer to `delegatee`.\"},\"delegates(address)\":{\"details\":\"Returns the delegate that `account` has chosen.\"},\"getPastTotalSupply(uint256)\":{\"details\":\"Returns the total supply of votes available at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block. NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. Votes that have not been delegated are still part of total supply, even though they would not participate in a vote.\"},\"getPastVotes(address,uint256)\":{\"details\":\"Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block.\"},\"getVotes(address)\":{\"details\":\"Returns the current amount of votes that `account` has.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/utils/IVotes.sol\":\"IVotes\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0x5e2b397ae88fd5c68e4f6762eb9f65f65c36702eb57796495f471d024ce70947\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://348fc8e291d54314bb22437b532f443d5dbfb80c8cc9591567c1af6554ccf856\",\"dweb:/ipfs/QmP8ZTyitZinxcpwAHeYHhwj7u21zPpKXSiww38V74sXC2\"]}},\"version\":1}"}},"@openzeppelin/contracts/governance/utils/Votes.sol":{"Votes":{"abi":[{"inputs":[],"name":"CheckpointUnorderedInsertion","type":"error"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"uint48","name":"clock","type":"uint48"}],"name":"ERC5805FutureLookup","type":"error"},{"inputs":[],"name":"ERC6372InconsistentClock","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"inputs":[{"internalType":"uint256","name":"expiry","type":"uint256"}],"name":"VotesExpiredSignature","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousVotes","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotes","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"CLOCK_MODE()":"4bf5d7e9","clock()":"91ddadf4","delegate(address)":"5c19a95c","delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)":"c3cda520","delegates(address)":"587cde1e","eip712Domain()":"84b0196e","getPastTotalSupply(uint256)":"8e539e8c","getPastVotes(address,uint256)":"3a46b1a8","getVotes(address)":"9ab24eb0","nonces(address)":"7ecebe00"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"CheckpointUnorderedInsertion\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"uint48\",\"name\":\"clock\",\"type\":\"uint48\"}],\"name\":\"ERC5805FutureLookup\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC6372InconsistentClock\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"}],\"name\":\"VotesExpiredSignature\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"fromDelegate\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"toDelegate\",\"type\":\"address\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"previousVotes\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newVotes\",\"type\":\"uint256\"}],\"name\":\"DelegateVotesChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"delegates\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastTotalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"This is a base abstract contract that tracks voting units, which are a measure of voting power that can be transferred, and provides a system of vote delegation, where an account can delegate its voting units to a sort of \\\"representative\\\" that will pool delegated voting units from different accounts and can then use it to vote in decisions. In fact, voting units _must_ be delegated in order to count as actual votes, and an account has to delegate those votes to itself if it wishes to participate in decisions and does not have a trusted representative. This contract is often combined with a token contract such that voting units correspond to token units. For an example, see {ERC721Votes}. The full history of delegate votes is tracked on-chain so that governance protocols can consider votes as distributed at a particular block number to protect against flash loans and double voting. The opt-in delegate system makes the cost of this history tracking optional. When using this module the derived contract must implement {_getVotingUnits} (for example, make it return {ERC721-balanceOf}), and can use {_transferVotingUnits} to track a change in the distribution of those units (in the previous example, it would be included in {ERC721-_update}).\",\"errors\":{\"CheckpointUnorderedInsertion()\":[{\"details\":\"A value was attempted to be inserted on a past checkpoint.\"}],\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}],\"ERC5805FutureLookup(uint256,uint48)\":[{\"details\":\"Lookup to future votes is not available.\"}],\"ERC6372InconsistentClock()\":[{\"details\":\"The clock was incorrectly modified.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}],\"VotesExpiredSignature(uint256)\":[{\"details\":\"The signature used has expired.\"}]},\"events\":{\"DelegateChanged(address,address,address)\":{\"details\":\"Emitted when an account changes their delegate.\"},\"DelegateVotesChanged(address,uint256,uint256)\":{\"details\":\"Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units.\"},\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Machine-readable description of the clock as specified in ERC-6372.\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting), in which case {CLOCK_MODE} should be overridden as well to match.\"},\"delegate(address)\":{\"details\":\"Delegates votes from the sender to `delegatee`.\"},\"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates votes from signer to `delegatee`.\"},\"delegates(address)\":{\"details\":\"Returns the delegate that `account` has chosen.\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"getPastTotalSupply(uint256)\":{\"details\":\"Returns the total supply of votes available at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block. NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. Votes that have not been delegated are still part of total supply, even though they would not participate in a vote. Requirements: - `timepoint` must be in the past. If operating using block numbers, the block must be already mined.\"},\"getPastVotes(address,uint256)\":{\"details\":\"Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block. Requirements: - `timepoint` must be in the past. If operating using block numbers, the block must be already mined.\"},\"getVotes(address)\":{\"details\":\"Returns the current amount of votes that `account` has.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/governance/utils/Votes.sol\":\"Votes\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0x5e2b397ae88fd5c68e4f6762eb9f65f65c36702eb57796495f471d024ce70947\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://348fc8e291d54314bb22437b532f443d5dbfb80c8cc9591567c1af6554ccf856\",\"dweb:/ipfs/QmP8ZTyitZinxcpwAHeYHhwj7u21zPpKXSiww38V74sXC2\"]},\"@openzeppelin/contracts/governance/utils/Votes.sol\":{\"keccak256\":\"0x3f91c79d6f55db9e4fc36e1cfe6a483a7b0f5be60fecbd979555071673746d47\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9b1e3c64cbeb2757a2a1a45c69f7f3984a93b0eadd1016341b64f9d94f89d7c4\",\"dweb:/ipfs/QmP1Mj14U4vMTFa2rv2nodMbWSCov2ac9Md8W2aUcgYdKX\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC5805.sol\":{\"keccak256\":\"0x4b9b89f91adbb7d3574f85394754cfb08c5b4eafca8a7061e2094a019ab8f818\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7373d5dbb8eb2381aa0883a456fac89283fcaf52f42fa805d4188f270716742a\",\"dweb:/ipfs/QmVnZDmT4ABvNhRJMaQnbCzsCA8HpyHPVaxi4fCi92LFv2\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x1fcf8cceb1a67e6c8512267e780933c4a3f63ef44756e6c818fda79be51c8402\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://617d7d57f6f9cd449068b4d23daf485676d083aae648e038d05eb3a13291de35\",\"dweb:/ipfs/QmPADWPiGaSzZDFNpFEUx4ZPqhzPkYncBpHyTfAGcfsqzy\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x0c60057e7351874f086db8dc9291b7ada9ad62cb7725befd2991430d04a74572\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33cdfd1fc36410d45046f88ff9864350146b194736c32834baa38d99b843ffbe\",\"dweb:/ipfs/QmdVmqgFKjgEBURy4KUwWDA6J1LEg1BKcHcXsx4nkeHAD2\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/Checkpoints.sol\":{\"keccak256\":\"0x93ce66a307d66cb14e95dbc8f20641cedf48b2d060bf3bda431d62a4493e6e8d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://10d4122ee13fd8dcd2f468a86031665345d2dfdda76993d1f51201bdeb746f9d\",\"dweb:/ipfs/QmWxbbYEgyDCjwT4ZtNwujJwB4vdnR2qEKwL2Zrz9JoSDU\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]}},\"version\":1}"}},"@openzeppelin/contracts/interfaces/IERC1271.sol":{"IERC1271":{"abi":[{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"isValidSignature","outputs":[{"internalType":"bytes4","name":"magicValue","type":"bytes4"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"isValidSignature(bytes32,bytes)":"1626ba7e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"hash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"isValidSignature\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"magicValue\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-1271 standard signature validation method for contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271].\",\"kind\":\"dev\",\"methods\":{\"isValidSignature(bytes32,bytes)\":{\"details\":\"Should return whether the signature provided is valid for the provided data\",\"params\":{\"hash\":\"Hash of the data to be signed\",\"signature\":\"Signature byte array associated with `hash`\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC1271.sol\":\"IERC1271\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x3d4cd07258d675b6dfa3d9dfd623a77b38fb9935f4a5381ff4bc969948720976\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://30abb60a4d98ad9a33de4fa5e9072342e12df3a79e9c71b5f59ce049ae8cd535\",\"dweb:/ipfs/QmT6NXJDjsf8H14nPYQsFELDB8q5ZTmG9cjdX2bEQJW7ST\"]}},\"version\":1}"}},"@openzeppelin/contracts/interfaces/IERC5267.sol":{"IERC5267":{"abi":[{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"eip712Domain()":"84b0196e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"}},\"kind\":\"dev\",\"methods\":{\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":\"IERC5267\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]}},\"version\":1}"}},"@openzeppelin/contracts/interfaces/IERC5805.sol":{"IERC5805":{"abi":[{"inputs":[{"internalType":"uint256","name":"expiry","type":"uint256"}],"name":"VotesExpiredSignature","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousVotes","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotes","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"CLOCK_MODE()":"4bf5d7e9","clock()":"91ddadf4","delegate(address)":"5c19a95c","delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)":"c3cda520","delegates(address)":"587cde1e","getPastTotalSupply(uint256)":"8e539e8c","getPastVotes(address,uint256)":"3a46b1a8","getVotes(address)":"9ab24eb0"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"}],\"name\":\"VotesExpiredSignature\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"fromDelegate\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"toDelegate\",\"type\":\"address\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"previousVotes\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newVotes\",\"type\":\"uint256\"}],\"name\":\"DelegateVotesChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"delegates\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastTotalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"errors\":{\"VotesExpiredSignature(uint256)\":[{\"details\":\"The signature used has expired.\"}]},\"events\":{\"DelegateChanged(address,address,address)\":{\"details\":\"Emitted when an account changes their delegate.\"},\"DelegateVotesChanged(address,uint256,uint256)\":{\"details\":\"Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Description of the clock\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).\"},\"delegate(address)\":{\"details\":\"Delegates votes from the sender to `delegatee`.\"},\"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates votes from signer to `delegatee`.\"},\"delegates(address)\":{\"details\":\"Returns the delegate that `account` has chosen.\"},\"getPastTotalSupply(uint256)\":{\"details\":\"Returns the total supply of votes available at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block. NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. Votes that have not been delegated are still part of total supply, even though they would not participate in a vote.\"},\"getPastVotes(address,uint256)\":{\"details\":\"Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block.\"},\"getVotes(address)\":{\"details\":\"Returns the current amount of votes that `account` has.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC5805.sol\":\"IERC5805\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0x5e2b397ae88fd5c68e4f6762eb9f65f65c36702eb57796495f471d024ce70947\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://348fc8e291d54314bb22437b532f443d5dbfb80c8cc9591567c1af6554ccf856\",\"dweb:/ipfs/QmP8ZTyitZinxcpwAHeYHhwj7u21zPpKXSiww38V74sXC2\"]},\"@openzeppelin/contracts/interfaces/IERC5805.sol\":{\"keccak256\":\"0x4b9b89f91adbb7d3574f85394754cfb08c5b4eafca8a7061e2094a019ab8f818\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7373d5dbb8eb2381aa0883a456fac89283fcaf52f42fa805d4188f270716742a\",\"dweb:/ipfs/QmVnZDmT4ABvNhRJMaQnbCzsCA8HpyHPVaxi4fCi92LFv2\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]}},\"version\":1}"}},"@openzeppelin/contracts/interfaces/IERC6372.sol":{"IERC6372":{"abi":[{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"CLOCK_MODE()":"4bf5d7e9","clock()":"91ddadf4"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Description of the clock\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting).\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC6372.sol\":\"IERC6372\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]}},\"version\":1}"}},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"IERC1155Errors":{"abi":[{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC1155InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC1155InvalidApprover","type":"error"},{"inputs":[{"internalType":"uint256","name":"idsLength","type":"uint256"},{"internalType":"uint256","name":"valuesLength","type":"uint256"}],"name":"ERC1155InvalidArrayLength","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC1155InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC1155InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC1155InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC1155MissingApprovalForAll","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC1155InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"idsLength\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"valuesLength\",\"type\":\"uint256\"}],\"name\":\"ERC1155InvalidArrayLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC1155MissingApprovalForAll\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-1155 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.\",\"errors\":{\"ERC1155InsufficientBalance(address,uint256,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC1155InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC1155InvalidArrayLength(uint256,uint256)\":[{\"details\":\"Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. Used in batch transfers.\",\"params\":{\"idsLength\":\"Length of the array of token identifiers\",\"valuesLength\":\"Length of the array of token amounts\"}}],\"ERC1155InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC1155InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC1155InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC1155MissingApprovalForAll(address,address)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"owner\":\"Address of the current owner of a token.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC1155Errors\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]}},\"version\":1}"},"IERC20Errors":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-20 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC20Errors\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]}},\"version\":1}"},"IERC721Errors":{"abi":[{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721IncorrectOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721InsufficientApproval\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC721InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721NonexistentToken\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-721 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.\",\"errors\":{\"ERC721IncorrectOwner(address,uint256,address)\":[{\"details\":\"Indicates an error related to the ownership over a particular token. Used in transfers.\",\"params\":{\"owner\":\"Address of the current owner of a token.\",\"sender\":\"Address whose tokens are being transferred.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InsufficientApproval(address,uint256)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC721InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC721InvalidOwner(address)\":[{\"details\":\"Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. Used in balance queries.\",\"params\":{\"owner\":\"Address of the current owner of a token.\"}}],\"ERC721InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC721InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC721NonexistentToken(uint256)\":[{\"details\":\"Indicates a `tokenId` whose `owner` is the zero address.\",\"params\":{\"tokenId\":\"Identifier number of a token.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC721Errors\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol":{"IERC1155Receiver":{"abi":[{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"ids\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface that must be implemented by smart contracts in order to receive ERC-1155 token transfers.\",\"kind\":\"dev\",\"methods\":{\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\":{\"details\":\"Handles the receipt of a multiple ERC-1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. NOTE: To accept the transfer(s), this must return `bytes4(keccak256(\\\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\\\"))` (i.e. 0xbc197c81, or its own function selector).\",\"params\":{\"data\":\"Additional data with no specified format\",\"from\":\"The address which previously owned the token\",\"ids\":\"An array containing ids of each token being transferred (order and length must match values array)\",\"operator\":\"The address which initiated the batch transfer (i.e. msg.sender)\",\"values\":\"An array containing amounts of each token being transferred (order and length must match ids array)\"},\"returns\":{\"_0\":\"`bytes4(keccak256(\\\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\\\"))` if transfer is allowed\"}},\"onERC1155Received(address,address,uint256,uint256,bytes)\":{\"details\":\"Handles the receipt of a single ERC-1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. NOTE: To accept the transfer, this must return `bytes4(keccak256(\\\"onERC1155Received(address,address,uint256,uint256,bytes)\\\"))` (i.e. 0xf23a6e61, or its own function selector).\",\"params\":{\"data\":\"Additional data with no specified format\",\"from\":\"The address which previously owned the token\",\"id\":\"The ID of the token being transferred\",\"operator\":\"The address which initiated the transfer (i.e. msg.sender)\",\"value\":\"The amount of tokens being transferred\"},\"returns\":{\"_0\":\"`bytes4(keccak256(\\\"onERC1155Received(address,address,uint256,uint256,bytes)\\\"))` if transfer is allowed\"}},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":\"IERC1155Receiver\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol":{"ERC1155Holder":{"abi":[{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Simple implementation of `IERC1155Receiver` that will allow a contract to hold ERC-1155 tokens. IMPORTANT: When inheriting this contract, you must include a way to use the received tokens, otherwise they will be stuck.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol\":\"ERC1155Holder\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol\":{\"keccak256\":\"0xe103e95f854ef0cd1bba5f469175f67cd332f5c2561941f165e3dd65cee94d6d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6cf8cc5d07cf8003255f9d766fe8188b9f6e33b6240e126a605f0d061566b23e\",\"dweb:/ipfs/Qmd7okDCSoUt1L4G9hmb5c4W8kWUnfpAa2jyBKUp4xKErd\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ERC20":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. TIP: For a detailed writeup see our guide https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. The default value of {decimals} is 18. To change this, you should override this function so it returns a different value. We have followed general OpenZeppelin Contracts guidelines: functions revert instead returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC-20 applications.\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"constructor\":{\"details\":\"Sets the values for {name} and {symbol}. Both values are immutable: they can only be set once during construction.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":\"ERC20\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x41f6b3b9e030561e7896dbef372b499cc8d418a80c3884a4d65a68f2fdc7493a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://80b0992a11b2fd1f75ced2971696d07bbd1d19ce6761dd50d8b6d48aa435f42a\",\"dweb:/ipfs/QmZDe5xd2gXHjVEjv9t8C1KQ68K5T8qFwdinwQgmP3rF3x\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"IERC20":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-20 standard as defined in the ERC.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets a `value` amount of tokens as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol":{"ERC20Permit":{"abi":[{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"DOMAIN_SEPARATOR()":"3644e515","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","eip712Domain()":"84b0196e","name()":"06fdde03","nonces(address)":"7ecebe00","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"ERC2612ExpiredSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC2612InvalidSigner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[ERC-2612]. Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't need to send a transaction, and thus is not required to hold Ether at all.\",\"errors\":{\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}],\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC2612ExpiredSignature(uint256)\":[{\"details\":\"Permit deadline has expired.\"}],\"ERC2612InvalidSigner(address,address)\":[{\"details\":\"Mismatched signature.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}]},\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\"},\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"constructor\":{\"details\":\"Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\\\"1\\\"`. It's a good idea to use the same `name` that is defined as the ERC-20 token name.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"nonces(address)\":{\"details\":\"Returns the current nonce for `owner`. This value must be included whenever a signature is generated for {permit}. Every successful call to {permit} increases ``owner``'s nonce by one. This prevents a signature from being used multiple times.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also apply here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section]. CAUTION: See Security Considerations above.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol\":\"ERC20Permit\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x41f6b3b9e030561e7896dbef372b499cc8d418a80c3884a4d65a68f2fdc7493a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://80b0992a11b2fd1f75ced2971696d07bbd1d19ce6761dd50d8b6d48aa435f42a\",\"dweb:/ipfs/QmZDe5xd2gXHjVEjv9t8C1KQ68K5T8qFwdinwQgmP3rF3x\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol\":{\"keccak256\":\"0xaa7f0646f49ebe2606eeca169f85c56451bbaeeeb06265fa076a03369a25d1d3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ee931d4e832385765967efe6366dcc6d00d6a2d794f9c66ee38283c03882de9c\",\"dweb:/ipfs/QmR6SkuJGYxpQeLz38rBdghqaWqEPfzUsL9kBoXgEXKtbD\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x27dbc90e5136ffe46c04f7596fc2dbcc3acebd8d504da3d93fdb8496e6de04f6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ea8b92e4245d75a5579c10f22f118f7b4ba07c57341f181f0b2a85ff8663de3\",\"dweb:/ipfs/Qme3Ss5ByjmkxxkMdLpyu7fQ1PCtjNFH1wEFszt2BZePiG\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x1fcf8cceb1a67e6c8512267e780933c4a3f63ef44756e6c818fda79be51c8402\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://617d7d57f6f9cd449068b4d23daf485676d083aae648e038d05eb3a13291de35\",\"dweb:/ipfs/QmPADWPiGaSzZDFNpFEUx4ZPqhzPkYncBpHyTfAGcfsqzy\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x0c60057e7351874f086db8dc9291b7ada9ad62cb7725befd2991430d04a74572\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33cdfd1fc36410d45046f88ff9864350146b194736c32834baa38d99b843ffbe\",\"dweb:/ipfs/QmdVmqgFKjgEBURy4KUwWDA6J1LEg1BKcHcXsx4nkeHAD2\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol":{"ERC20Votes":{"abi":[{"inputs":[],"name":"CheckpointUnorderedInsertion","type":"error"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"uint256","name":"increasedSupply","type":"uint256"},{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"ERC20ExceededSafeSupply","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"uint48","name":"clock","type":"uint48"}],"name":"ERC5805FutureLookup","type":"error"},{"inputs":[],"name":"ERC6372InconsistentClock","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"inputs":[{"internalType":"uint256","name":"expiry","type":"uint256"}],"name":"VotesExpiredSignature","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousVotes","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotes","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"pos","type":"uint32"}],"name":"checkpoints","outputs":[{"components":[{"internalType":"uint48","name":"_key","type":"uint48"},{"internalType":"uint208","name":"_value","type":"uint208"}],"internalType":"struct Checkpoints.Checkpoint208","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"CLOCK_MODE()":"4bf5d7e9","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","checkpoints(address,uint32)":"f1127ed8","clock()":"91ddadf4","decimals()":"313ce567","delegate(address)":"5c19a95c","delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)":"c3cda520","delegates(address)":"587cde1e","eip712Domain()":"84b0196e","getPastTotalSupply(uint256)":"8e539e8c","getPastVotes(address,uint256)":"3a46b1a8","getVotes(address)":"9ab24eb0","name()":"06fdde03","nonces(address)":"7ecebe00","numCheckpoints(address)":"6fcfff45","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"CheckpointUnorderedInsertion\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"increasedSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"cap\",\"type\":\"uint256\"}],\"name\":\"ERC20ExceededSafeSupply\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"uint48\",\"name\":\"clock\",\"type\":\"uint48\"}],\"name\":\"ERC5805FutureLookup\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC6372InconsistentClock\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"}],\"name\":\"VotesExpiredSignature\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"fromDelegate\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"toDelegate\",\"type\":\"address\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"previousVotes\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newVotes\",\"type\":\"uint256\"}],\"name\":\"DelegateVotesChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"pos\",\"type\":\"uint32\"}],\"name\":\"checkpoints\",\"outputs\":[{\"components\":[{\"internalType\":\"uint48\",\"name\":\"_key\",\"type\":\"uint48\"},{\"internalType\":\"uint208\",\"name\":\"_value\",\"type\":\"uint208\"}],\"internalType\":\"struct Checkpoints.Checkpoint208\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"delegates\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastTotalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"numCheckpoints\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Extension of ERC-20 to support Compound-like voting and delegation. This version is more generic than Compound's, and supports token supply up to 2^208^ - 1, while COMP is limited to 2^96^ - 1. NOTE: This contract does not provide interface compatibility with Compound's COMP token. This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either by calling the {Votes-delegate} function directly, or by providing a signature to be used with {Votes-delegateBySig}. Voting power can be queried through the public accessors {Votes-getVotes} and {Votes-getPastVotes}. By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked.\",\"errors\":{\"CheckpointUnorderedInsertion()\":[{\"details\":\"A value was attempted to be inserted on a past checkpoint.\"}],\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}],\"ERC20ExceededSafeSupply(uint256,uint256)\":[{\"details\":\"Total supply cap has been exceeded, introducing a risk of votes overflowing.\"}],\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC5805FutureLookup(uint256,uint48)\":[{\"details\":\"Lookup to future votes is not available.\"}],\"ERC6372InconsistentClock()\":[{\"details\":\"The clock was incorrectly modified.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}],\"VotesExpiredSignature(uint256)\":[{\"details\":\"The signature used has expired.\"}]},\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"DelegateChanged(address,address,address)\":{\"details\":\"Emitted when an account changes their delegate.\"},\"DelegateVotesChanged(address,uint256,uint256)\":{\"details\":\"Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units.\"},\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Machine-readable description of the clock as specified in ERC-6372.\"},\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"checkpoints(address,uint32)\":{\"details\":\"Get the `pos`-th checkpoint for `account`.\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting), in which case {CLOCK_MODE} should be overridden as well to match.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"delegate(address)\":{\"details\":\"Delegates votes from the sender to `delegatee`.\"},\"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates votes from signer to `delegatee`.\"},\"delegates(address)\":{\"details\":\"Returns the delegate that `account` has chosen.\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"getPastTotalSupply(uint256)\":{\"details\":\"Returns the total supply of votes available at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block. NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. Votes that have not been delegated are still part of total supply, even though they would not participate in a vote. Requirements: - `timepoint` must be in the past. If operating using block numbers, the block must be already mined.\"},\"getPastVotes(address,uint256)\":{\"details\":\"Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block. Requirements: - `timepoint` must be in the past. If operating using block numbers, the block must be already mined.\"},\"getVotes(address)\":{\"details\":\"Returns the current amount of votes that `account` has.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"},\"numCheckpoints(address)\":{\"details\":\"Get number of checkpoints for `account`.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol\":\"ERC20Votes\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0x5e2b397ae88fd5c68e4f6762eb9f65f65c36702eb57796495f471d024ce70947\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://348fc8e291d54314bb22437b532f443d5dbfb80c8cc9591567c1af6554ccf856\",\"dweb:/ipfs/QmP8ZTyitZinxcpwAHeYHhwj7u21zPpKXSiww38V74sXC2\"]},\"@openzeppelin/contracts/governance/utils/Votes.sol\":{\"keccak256\":\"0x3f91c79d6f55db9e4fc36e1cfe6a483a7b0f5be60fecbd979555071673746d47\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9b1e3c64cbeb2757a2a1a45c69f7f3984a93b0eadd1016341b64f9d94f89d7c4\",\"dweb:/ipfs/QmP1Mj14U4vMTFa2rv2nodMbWSCov2ac9Md8W2aUcgYdKX\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC5805.sol\":{\"keccak256\":\"0x4b9b89f91adbb7d3574f85394754cfb08c5b4eafca8a7061e2094a019ab8f818\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7373d5dbb8eb2381aa0883a456fac89283fcaf52f42fa805d4188f270716742a\",\"dweb:/ipfs/QmVnZDmT4ABvNhRJMaQnbCzsCA8HpyHPVaxi4fCi92LFv2\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x41f6b3b9e030561e7896dbef372b499cc8d418a80c3884a4d65a68f2fdc7493a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://80b0992a11b2fd1f75ced2971696d07bbd1d19ce6761dd50d8b6d48aa435f42a\",\"dweb:/ipfs/QmZDe5xd2gXHjVEjv9t8C1KQ68K5T8qFwdinwQgmP3rF3x\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol\":{\"keccak256\":\"0x62dc9346044aabf22d78541bd495aa6ca05a7f5100aed26196ba35d40b59fcb5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5221df4501c74cd4493fee1a0f0788e02c4dc78c3c601e9f557f557c5a53ea92\",\"dweb:/ipfs/QmZpzyYY9dKLrgvYhXSHT93jwqb1UGvtGNMQk5dpECY5pa\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x1fcf8cceb1a67e6c8512267e780933c4a3f63ef44756e6c818fda79be51c8402\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://617d7d57f6f9cd449068b4d23daf485676d083aae648e038d05eb3a13291de35\",\"dweb:/ipfs/QmPADWPiGaSzZDFNpFEUx4ZPqhzPkYncBpHyTfAGcfsqzy\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x0c60057e7351874f086db8dc9291b7ada9ad62cb7725befd2991430d04a74572\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33cdfd1fc36410d45046f88ff9864350146b194736c32834baa38d99b843ffbe\",\"dweb:/ipfs/QmdVmqgFKjgEBURy4KUwWDA6J1LEg1BKcHcXsx4nkeHAD2\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/Checkpoints.sol\":{\"keccak256\":\"0x93ce66a307d66cb14e95dbc8f20641cedf48b2d060bf3bda431d62a4493e6e8d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://10d4122ee13fd8dcd2f468a86031665345d2dfdda76993d1f51201bdeb746f9d\",\"dweb:/ipfs/QmWxbbYEgyDCjwT4ZtNwujJwB4vdnR2qEKwL2Zrz9JoSDU\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"IERC20Metadata":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for the optional metadata functions from the ERC-20 standard.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets a `value` amount of tokens as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"decimals()\":{\"details\":\"Returns the decimals places of the token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":\"IERC20Metadata\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol":{"IERC20Permit":{"abi":[{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"DOMAIN_SEPARATOR()":"3644e515","nonces(address)":"7ecebe00","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[ERC-2612]. Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't need to send a transaction, and thus is not required to hold Ether at all. ==== Security Considerations There are two important considerations concerning the use of `permit`. The first is that a valid permit signature expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be considered as an intention to spend the allowance in any specific way. The second is that because permits have built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be generally recommended is: ```solidity function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} doThing(..., value); } function doThing(..., uint256 value) public { token.safeTransferFrom(msg.sender, address(this), value); ... } ``` Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also {SafeERC20-safeTransferFrom}). Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so contracts should have entry points that don't rely on permit.\",\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\"},\"nonces(address)\":{\"details\":\"Returns the current nonce for `owner`. This value must be included whenever a signature is generated for {permit}. Every successful call to {permit} increases ``owner``'s nonce by one. This prevents a signature from being used multiple times.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also apply here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section]. CAUTION: See Security Considerations above.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":\"IERC20Permit\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x27dbc90e5136ffe46c04f7596fc2dbcc3acebd8d504da3d93fdb8496e6de04f6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ea8b92e4245d75a5579c10f22f118f7b4ba07c57341f181f0b2a85ff8663de3\",\"dweb:/ipfs/Qme3Ss5ByjmkxxkMdLpyu7fQ1PCtjNFH1wEFszt2BZePiG\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol":{"IERC721Receiver":{"abi":[{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"onERC721Received(address,address,uint256,bytes)":"150b7a02"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for any contract that wants to support safeTransfers from ERC-721 asset contracts.\",\"kind\":\"dev\",\"methods\":{\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\"}},\"title\":\"ERC-721 token receiver interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":\"IERC721Receiver\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol":{"ERC721Holder":{"abi":[{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"onERC721Received(address,address,uint256,bytes)":"150b7a02"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC721Receiver} interface. Accepts all token transfers. Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}.\",\"kind\":\"dev\",\"methods\":{\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Always returns `IERC721Receiver.onERC721Received.selector`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol\":\"ERC721Holder\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol\":{\"keccak256\":\"0xaad20f8713b5cd98114278482d5d91b9758f9727048527d582e8e88fd4901fd8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5396e8dbb000c2fada59b7d2093b9c7c870fd09413ab0fdaba45d882959c6244\",\"dweb:/ipfs/QmXQn5XckSiUsUBpMYuiFeqnojRX4rKa9jmgjCPeTuPmhh\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Address.sol":{"Address":{"abi":[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212201d3ae836a975002216447112ec98c6faf592f9671d271f88896644677de223d764736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SAR GASPRICE 0xE8 CALLDATASIZE 0xA9 PUSH22 0x2216447112EC98C6FAF592F9671D271F8889664467 PUSH30 0xE223D764736F6C6343000814003300000000000000000000000000000000 ","sourceMap":"233:5815:29:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea26469706673582212201d3ae836a975002216447112ec98c6faf592f9671d271f88896644677de223d764736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SAR GASPRICE 0xE8 CALLDATASIZE 0xA9 PUSH22 0x2216447112EC98C6FAF592F9671D271F8889664467 PUSH30 0xE223D764736F6C6343000814003300000000000000000000000000000000 ","sourceMap":"233:5815:29:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Collection of functions related to the address type\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Address.sol\":\"Address\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Context.sol":{"Context":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Errors.sol":{"Errors":{"abi":[{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[],"name":"FailedDeployment","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MissingPrecompile","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212201b283e935c822c7731e35bbfd9d8aff275ff943e0d060069d9a4c8a183fb146164736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SHL 0x28 RETURNDATACOPY SWAP4 0x5C DUP3 0x2C PUSH24 0x31E35BBFD9D8AFF275FF943E0D060069D9A4C8A183FB1461 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"411:484:31:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea26469706673582212201b283e935c822c7731e35bbfd9d8aff275ff943e0d060069d9a4c8a183fb146164736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SHL 0x28 RETURNDATACOPY SWAP4 0x5C DUP3 0x2C PUSH24 0x31E35BBFD9D8AFF275FF943E0D060069D9A4C8A183FB1461 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"411:484:31:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedDeployment\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"MissingPrecompile\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Collection of common custom errors used in multiple contracts IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library. It is recommended to avoid relying on the error API for critical functionality. _Available since v5.1._\",\"errors\":{\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"FailedDeployment()\":[{\"details\":\"The deployment failed.\"}],\"InsufficientBalance(uint256,uint256)\":[{\"details\":\"The ETH balance of the account is not enough to perform the operation.\"}],\"MissingPrecompile(address)\":[{\"details\":\"A necessary precompile is missing.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Errors.sol\":\"Errors\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Nonces.sol":{"Nonces":{"abi":[{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"nonces(address)":"7ecebe00"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Provides tracking nonces for addresses. Nonces will only increment.\",\"errors\":{\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}]},\"kind\":\"dev\",\"methods\":{\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Nonces.sol\":\"Nonces\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Panic.sol":{"Panic":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220d3d3dd910cc19267204057e7b98620445f3f33d10c6a1b7d466fb2f1dbaaa3e464736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD3 0xD3 0xDD SWAP2 0xC 0xC1 SWAP3 PUSH8 0x204057E7B9862044 PUSH0 EXTCODEHASH CALLER 0xD1 0xC PUSH11 0x1B7D466FB2F1DBAAA3E464 PUSH20 0x6F6C634300081400330000000000000000000000 ","sourceMap":"657:1315:33:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220d3d3dd910cc19267204057e7b98620445f3f33d10c6a1b7d466fb2f1dbaaa3e464736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD3 0xD3 0xDD SWAP2 0xC 0xC1 SWAP3 PUSH8 0x204057E7B9862044 PUSH0 EXTCODEHASH CALLER 0xD1 0xC PUSH11 0x1B7D466FB2F1DBAAA3E464 PUSH20 0x6F6C634300081400330000000000000000000000 ","sourceMap":"657:1315:33:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Helper library for emitting standardized panic codes. ```solidity contract Example { using Panic for uint256; // Use any of the declared internal constants function foo() { Panic.GENERIC.panic(); } // Alternatively function foo() { Panic.panic(Panic.GENERIC); } } ``` Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil]. _Available since v5.1._\",\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"ARRAY_OUT_OF_BOUNDS\":{\"details\":\"array out of bounds access\"},\"ASSERT\":{\"details\":\"used by the assert() builtin\"},\"DIVISION_BY_ZERO\":{\"details\":\"division or modulo by zero\"},\"EMPTY_ARRAY_POP\":{\"details\":\"empty array pop\"},\"ENUM_CONVERSION_ERROR\":{\"details\":\"enum conversion error\"},\"GENERIC\":{\"details\":\"generic / unspecified error\"},\"INVALID_INTERNAL_FUNCTION\":{\"details\":\"calling invalid internal function\"},\"RESOURCE_ERROR\":{\"details\":\"resource error (too large allocation or too large array)\"},\"STORAGE_ENCODING_ERROR\":{\"details\":\"invalid encoding in storage\"},\"UNDER_OVERFLOW\":{\"details\":\"arithmetic underflow or overflow\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Panic.sol\":\"Panic\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/ShortStrings.sol":{"ShortStrings":{"abi":[{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220be38f9d217646f870120140167ee3868bb6453ebeb69dd60ff12eeb686a8166564736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBE CODESIZE 0xF9 0xD2 OR PUSH5 0x6F87012014 ADD PUSH8 0xEE3868BB6453EBEB PUSH10 0xDD60FF12EEB686A81665 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"1255:3046:34:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220be38f9d217646f870120140167ee3868bb6453ebeb69dd60ff12eeb686a8166564736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBE CODESIZE 0xF9 0xD2 OR PUSH5 0x6F87012014 ADD PUSH8 0xEE3868BB6453EBEB PUSH10 0xDD60FF12EEB686A81665 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"1255:3046:34:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"This library provides functions to convert short memory strings into a `ShortString` type that can be used as an immutable variable. Strings of arbitrary length can be optimized using this library if they are short enough (up to 31 bytes) by packing them with their length (1 byte) in a single EVM word (32 bytes). Additionally, a fallback mechanism can be used for every other case. Usage example: ```solidity contract Named { using ShortStrings for *; ShortString private immutable _name; string private _nameFallback; constructor(string memory contractName) { _name = contractName.toShortStringWithFallback(_nameFallback); } function name() external view returns (string memory) { return _name.toStringWithFallback(_nameFallback); } } ```\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/ShortStrings.sol\":\"ShortStrings\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x1fcf8cceb1a67e6c8512267e780933c4a3f63ef44756e6c818fda79be51c8402\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://617d7d57f6f9cd449068b4d23daf485676d083aae648e038d05eb3a13291de35\",\"dweb:/ipfs/QmPADWPiGaSzZDFNpFEUx4ZPqhzPkYncBpHyTfAGcfsqzy\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/StorageSlot.sol":{"StorageSlot":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220ae25a39ead407bec927c6b9123beab38814d0e8e606e6b51ab70c388ccb21b8f64736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAE 0x25 LOG3 SWAP15 0xAD BLOCKHASH PUSH28 0xEC927C6B9123BEAB38814D0E8E606E6B51AB70C388CCB21B8F64736F PUSH13 0x63430008140033000000000000 ","sourceMap":"1407:2774:35:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220ae25a39ead407bec927c6b9123beab38814d0e8e606e6b51ab70c388ccb21b8f64736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAE 0x25 LOG3 SWAP15 0xAD BLOCKHASH PUSH28 0xEC927C6B9123BEAB38814D0E8E606E6B51AB70C388CCB21B8F64736F PUSH13 0x63430008140033000000000000 ","sourceMap":"1407:2774:35:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Library for reading and writing primitive types to specific storage slots. Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. This library helps with reading and writing to such slots without the need for inline assembly. The functions in this library return Slot structs that contain a `value` member that can be used to read or write. Example usage to set ERC-1967 implementation slot: ```solidity contract ERC1967 { // Define the slot. Alternatively, use the SlotDerivation library to derive the slot. bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; function _getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } function _setImplementation(address newImplementation) internal { require(newImplementation.code.length > 0); StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } } ``` TIP: Consider using this library along with {SlotDerivation}.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/StorageSlot.sol\":\"StorageSlot\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Strings.sol":{"Strings":{"abi":[{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"length","type":"uint256"}],"name":"StringsInsufficientHexLength","type":"error"},{"inputs":[],"name":"StringsInvalidAddressFormat","type":"error"},{"inputs":[],"name":"StringsInvalidChar","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220d08bc96a8d6dcc6448a3f0db7c13cd229f9ccdca095b3b8c535911fcf74d27b164736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD0 DUP12 0xC9 PUSH11 0x8D6DCC6448A3F0DB7C13CD 0x22 SWAP16 SWAP13 0xCD 0xCA MULMOD JUMPDEST EXTCODESIZE DUP13 MSTORE8 MSIZE GT 0xFC 0xF7 0x4D 0x27 0xB1 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"297:18980:36:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220d08bc96a8d6dcc6448a3f0db7c13cd229f9ccdca095b3b8c535911fcf74d27b164736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD0 DUP12 0xC9 PUSH11 0x8D6DCC6448A3F0DB7C13CD 0x22 SWAP16 SWAP13 0xCD 0xCA MULMOD JUMPDEST EXTCODESIZE DUP13 MSTORE8 MSIZE GT 0xFC 0xF7 0x4D 0x27 0xB1 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"297:18980:36:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"StringsInsufficientHexLength\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"StringsInvalidAddressFormat\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"StringsInvalidChar\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"String operations.\",\"errors\":{\"StringsInsufficientHexLength(uint256,uint256)\":[{\"details\":\"The `value` string doesn't fit in the specified `length`.\"}],\"StringsInvalidAddressFormat()\":[{\"details\":\"The string being parsed is not a properly formatted address.\"}],\"StringsInvalidChar()\":[{\"details\":\"The string being parsed contains characters that are not in scope of the given base.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Strings.sol\":\"Strings\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/cryptography/ECDSA.sol":{"ECDSA":{"abi":[{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220dd83379cd91612060872577f24e4aa198892a5e5275b61c6186bb6de502962a664736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDD DUP4 CALLDATACOPY SWAP13 0xD9 AND SLT MOD ADDMOD PUSH19 0x577F24E4AA198892A5E5275B61C6186BB6DE50 0x29 PUSH3 0xA66473 PUSH16 0x6C634300081400330000000000000000 ","sourceMap":"344:7470:37:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220dd83379cd91612060872577f24e4aa198892a5e5275b61c6186bb6de502962a664736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDD DUP4 CALLDATACOPY SWAP13 0xD9 AND SLT MOD ADDMOD PUSH19 0x577F24E4AA198892A5E5275B61C6186BB6DE50 0x29 PUSH3 0xA66473 PUSH16 0x6C634300081400330000000000000000 ","sourceMap":"344:7470:37:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Elliptic Curve Digital Signature Algorithm (ECDSA) operations. These functions can be used to verify that a message was signed by the holder of the private keys of a given address.\",\"errors\":{\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":\"ECDSA\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/cryptography/EIP712.sol":{"EIP712":{"abi":[{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"eip712Domain()":"84b0196e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\",\"details\":\"https://eips.ethereum.org/EIPS/eip-712[EIP-712] is a standard for hashing and signing of typed structured data. The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to produce the hash of their typed data using a combination of `abi.encode` and `keccak256`. This contract implements the EIP-712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA ({_hashTypedDataV4}). The implementation of the domain separator was designed to be as efficient as possible while still properly updating the chain id to protect against replay attacks on an eventual fork of the chain. NOTE: This contract implements the version of the encoding known as \\\"v4\\\", as implemented by the JSON RPC method https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the separator from the immutable values, which is cheaper than accessing a cached version in cold storage.\",\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the domain separator and parameter caches. The meaning of `name` and `version` is specified in https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP-712]: - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. - `version`: the current major version of the signing domain. NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart contract upgrade].\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":\"EIP712\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x1fcf8cceb1a67e6c8512267e780933c4a3f63ef44756e6c818fda79be51c8402\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://617d7d57f6f9cd449068b4d23daf485676d083aae648e038d05eb3a13291de35\",\"dweb:/ipfs/QmPADWPiGaSzZDFNpFEUx4ZPqhzPkYncBpHyTfAGcfsqzy\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x0c60057e7351874f086db8dc9291b7ada9ad62cb7725befd2991430d04a74572\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33cdfd1fc36410d45046f88ff9864350146b194736c32834baa38d99b843ffbe\",\"dweb:/ipfs/QmdVmqgFKjgEBURy4KUwWDA6J1LEg1BKcHcXsx4nkeHAD2\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"MessageHashUtils":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220f0207ad9e362a615aa90358e523b6ce04d4e69f6202f53043b8bdd8f730f26b364736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CREATE KECCAK256 PUSH27 0xD9E362A615AA90358E523B6CE04D4E69F6202F53043B8BDD8F730F 0x26 0xB3 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"521:3729:39:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220f0207ad9e362a615aa90358e523b6ce04d4e69f6202f53043b8bdd8f730f26b364736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CREATE KECCAK256 PUSH27 0xD9E362A615AA90358E523B6CE04D4E69F6202F53043B8BDD8F730F 0x26 0xB3 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"521:3729:39:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing. The library provides methods for generating a hash of a message that conforms to the https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712] specifications.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":\"MessageHashUtils\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol":{"SignatureChecker":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220818f5ef0be44b06d125288cdf72179b00d292931ab3f9b703fb58a49e9db41ca64736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP2 DUP16 0x5E CREATE 0xBE PREVRANDAO 0xB0 PUSH14 0x125288CDF72179B00D292931AB3F SWAP12 PUSH17 0x3FB58A49E9DB41CA64736F6C6343000814 STOP CALLER ","sourceMap":"532:1805:40:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220818f5ef0be44b06d125288cdf72179b00d292931ab3f9b703fb58a49e9db41ca64736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP2 DUP16 0x5E CREATE 0xBE PREVRANDAO 0xB0 PUSH14 0x125288CDF72179B00D292931AB3F SWAP12 PUSH17 0x3FB58A49E9DB41CA64736F6C6343000814 STOP CALLER ","sourceMap":"532:1805:40:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA signatures from externally owned accounts (EOAs) as well as ERC-1271 signatures from smart contract wallets like Argent and Safe Wallet (previously Gnosis Safe).\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol\":\"SignatureChecker\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x3d4cd07258d675b6dfa3d9dfd623a77b38fb9935f4a5381ff4bc969948720976\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://30abb60a4d98ad9a33de4fa5e9072342e12df3a79e9c71b5f59ce049ae8cd535\",\"dweb:/ipfs/QmT6NXJDjsf8H14nPYQsFELDB8q5ZTmG9cjdX2bEQJW7ST\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol\":{\"keccak256\":\"0xbdc3bb48ccedb818cd75a6d74a16df55a822e9f6d3cc54c59f576f10aab67b5f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2284f25f2478f419d7781573b17a89d0e7c5589a865d55e2d6ed5163aee23aa8\",\"dweb:/ipfs/QmNsr2625APBQiNKpYnX5VcSnYgfUHR9Uzzp9pRXjoDqK7\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"ERC165":{"abi":[{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC165} interface. Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check for the additional interface id that will be supported. For example: ```solidity function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); } ```\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":\"ERC165\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"IERC165":{"abi":[{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-165 standard, as defined in the https://eips.ethereum.org/EIPS/eip-165[ERC]. Implementers can declare support of contract interfaces, which can then be queried by others ({ERC165Checker}). For an implementation, see {ERC165}.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":\"IERC165\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/math/Math.sol":{"Math":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220079cd2c71475848145681b815221685650cc081e23cc8b888477ca686a1c397264736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SMOD SWAP13 0xD2 0xC7 EQ PUSH22 0x848145681B815221685650CC081E23CC8B888477CA68 PUSH11 0x1C397264736F6C63430008 EQ STOP CALLER ","sourceMap":"281:31863:43:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220079cd2c71475848145681b815221685650cc081e23cc8b888477ca686a1c397264736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SMOD SWAP13 0xD2 0xC7 EQ PUSH22 0x848145681B815221685650CC081E23CC8B888477CA68 PUSH11 0x1C397264736F6C63430008 EQ STOP CALLER ","sourceMap":"281:31863:43:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Standard math utilities missing in the Solidity language.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/Math.sol\":\"Math\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/math/SafeCast.sol":{"SafeCast":{"abi":[{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"int256","name":"value","type":"int256"}],"name":"SafeCastOverflowedIntDowncast","type":"error"},{"inputs":[{"internalType":"int256","name":"value","type":"int256"}],"name":"SafeCastOverflowedIntToUint","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintToInt","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212202c4ad86538ce8a084b7fdb2cd3d42f4c2dabe3fc8415c635d8bb43bd1dd67f0264736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2C 0x4A 0xD8 PUSH6 0x38CE8A084B7F 0xDB 0x2C 0xD3 0xD4 0x2F 0x4C 0x2D 0xAB 0xE3 0xFC DUP5 ISZERO 0xC6 CALLDATALOAD 0xD8 0xBB NUMBER 0xBD SAR 0xD6 PUSH32 0x264736F6C634300081400330000000000000000000000000000000000000000 ","sourceMap":"769:34173:44:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea26469706673582212202c4ad86538ce8a084b7fdb2cd3d42f4c2dabe3fc8415c635d8bb43bd1dd67f0264736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2C 0x4A 0xD8 PUSH6 0x38CE8A084B7F 0xDB 0x2C 0xD3 0xD4 0x2F 0x4C 0x2D 0xAB 0xE3 0xFC DUP5 ISZERO 0xC6 CALLDATALOAD 0xD8 0xBB NUMBER 0xBD SAR 0xD6 PUSH32 0x264736F6C634300081400330000000000000000000000000000000000000000 ","sourceMap":"769:34173:44:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"int256\",\"name\":\"value\",\"type\":\"int256\"}],\"name\":\"SafeCastOverflowedIntDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"int256\",\"name\":\"value\",\"type\":\"int256\"}],\"name\":\"SafeCastOverflowedIntToUint\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintToInt\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow checks. Downcasting from uint256/int256 in Solidity does not revert on overflow. This can easily result in undesired exploitation or bugs, since developers usually assume that overflows raise errors. `SafeCast` restores this intuition by reverting the transaction when such an operation overflows. Using this library instead of the unchecked operations eliminates an entire class of bugs, so it's recommended to use it always.\",\"errors\":{\"SafeCastOverflowedIntDowncast(uint8,int256)\":[{\"details\":\"Value doesn't fit in an int of `bits` size.\"}],\"SafeCastOverflowedIntToUint(int256)\":[{\"details\":\"An int value doesn't fit in an uint of `bits` size.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}],\"SafeCastOverflowedUintToInt(uint256)\":[{\"details\":\"An uint value doesn't fit in an int of `bits` size.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":\"SafeCast\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"SignedMath":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220b18474e30ba46df553fc97b5dbc5e061d13f068480eada5c75b285875d02dfc564736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB1 DUP5 PUSH21 0xE30BA46DF553FC97B5DBC5E061D13F068480EADA5C PUSH22 0xB285875D02DFC564736F6C6343000814003300000000 ","sourceMap":"258:2354:45:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220b18474e30ba46df553fc97b5dbc5e061d13f068480eada5c75b285875d02dfc564736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB1 DUP5 PUSH21 0xE30BA46DF553FC97B5DBC5E061D13F068480EADA5C PUSH22 0xB285875D02DFC564736F6C6343000814003300000000 ","sourceMap":"258:2354:45:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Standard signed math utilities missing in the Solidity language.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/SignedMath.sol\":\"SignedMath\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/structs/Checkpoints.sol":{"Checkpoints":{"abi":[{"inputs":[],"name":"CheckpointUnorderedInsertion","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212209d0763cd8afdfa69a0fd1ead90a10240bb74b5b3f038caee841bbbcd2411c0a064736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP14 SMOD PUSH4 0xCD8AFDFA PUSH10 0xA0FD1EAD90A10240BB74 0xB5 0xB3 CREATE CODESIZE 0xCA 0xEE DUP5 SHL 0xBB 0xCD 0x24 GT 0xC0 LOG0 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"668:20759:46:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea26469706673582212209d0763cd8afdfa69a0fd1ead90a10240bb74b5b3f038caee841bbbcd2411c0a064736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP14 SMOD PUSH4 0xCD8AFDFA PUSH10 0xA0FD1EAD90A10240BB74 0xB5 0xB3 CREATE CODESIZE 0xCA 0xEE DUP5 SHL 0xBB 0xCD 0x24 GT 0xC0 LOG0 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"668:20759:46:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"CheckpointUnorderedInsertion\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"This library defines the `Trace*` struct, for checkpointing values as they change at different points in time, and later looking up past values by block number. See {Votes} as an example. To create a history of checkpoints define a variable type `Checkpoints.Trace*` in your contract, and store a new checkpoint for the current transaction block using the {push} function.\",\"errors\":{\"CheckpointUnorderedInsertion()\":[{\"details\":\"A value was attempted to be inserted on a past checkpoint.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/structs/Checkpoints.sol\":\"Checkpoints\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/structs/Checkpoints.sol\":{\"keccak256\":\"0x93ce66a307d66cb14e95dbc8f20641cedf48b2d060bf3bda431d62a4493e6e8d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://10d4122ee13fd8dcd2f468a86031665345d2dfdda76993d1f51201bdeb746f9d\",\"dweb:/ipfs/QmWxbbYEgyDCjwT4ZtNwujJwB4vdnR2qEKwL2Zrz9JoSDU\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol":{"DoubleEndedQueue":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220c59b9fc3d0ea71191ee70988f6d2db4c6dc21b9013d483c913db0ae9fff5cceb64736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC5 SWAP12 SWAP16 0xC3 0xD0 0xEA PUSH18 0x191EE70988F6D2DB4C6DC21B9013D483C913 0xDB EXP 0xE9 SELFDESTRUCT CREATE2 0xCC 0xEB PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"819:4869:47:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea2646970667358221220c59b9fc3d0ea71191ee70988f6d2db4c6dc21b9013d483c913db0ae9fff5cceb64736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC5 SWAP12 SWAP16 0xC3 0xD0 0xEA PUSH18 0x191EE70988F6D2DB4C6DC21B9013D483C913 0xDB EXP 0xE9 SELFDESTRUCT CREATE2 0xCC 0xEB PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"819:4869:47:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"A sequence of items with the ability to efficiently push and pop items (i.e. insert and remove) on both ends of the sequence (called front and back). Among other access patterns, it can be used to implement efficient LIFO and FIFO queues. Storage use is optimized, and all operations are O(1) constant time. This includes {clear}, given that the existing queue contents are left in storage. The struct is called `Bytes32Deque`. Other types can be cast to and from `bytes32`. This data structure can only be used in storage, and not in memory. ```solidity DoubleEndedQueue.Bytes32Deque queue; ```\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol\":\"DoubleEndedQueue\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol\":{\"keccak256\":\"0x1e1d74658d7f4eab3d4f8fb0c6c5953bc5f629d9425e978d557dabff7b58b217\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be0175d00008d452d3d553890f73a3d5d51dff4372f720336c8b98f26822fcdb\",\"dweb:/ipfs/QmUkE8g5xPExWoSAKwdi5ww1qJJVtEWtjSF93G2LMQkgD3\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/types/Time.sol":{"Time":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea264697066735822122026ea55de96cee5d1a924579e9c0dae332550bbaa227f60531af5496f738633d264736f6c63430008140033","opcodes":"PUSH1 0x80 DUP1 PUSH1 0x40 MSTORE CALLVALUE PUSH1 0x17 JUMPI PUSH1 0x3A SWAP1 DUP2 PUSH1 0x1D DUP3 CODECOPY ADDRESS DUP2 POP POP RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT INVALID PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x26 0xEA SSTORE 0xDE SWAP7 0xCE 0xE5 0xD1 0xA9 0x24 JUMPI SWAP15 SWAP13 0xD 0xAE CALLER 0x25 POP 0xBB 0xAA 0x22 PUSH32 0x60531AF5496F738633D264736F6C634300081400330000000000000000000000 ","sourceMap":"640:4515:48:-:0;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"600080fdfea264697066735822122026ea55de96cee5d1a924579e9c0dae332550bbaa227f60531af5496f738633d264736f6c63430008140033","opcodes":"PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x26 0xEA SSTORE 0xDE SWAP7 0xCE 0xE5 0xD1 0xA9 0x24 JUMPI SWAP15 SWAP13 0xD 0xAE CALLER 0x25 POP 0xBB 0xAA 0x22 PUSH32 0x60531AF5496F738633D264736F6C634300081400330000000000000000000000 ","sourceMap":"640:4515:48:-:0;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"This library provides helpers for manipulating time-related objects. It uses the following types: - `uint48` for timepoints - `uint32` for durations While the library doesn't provide specific types for timepoints and duration, it does provide: - a `Delay` type to represent duration that can be programmed to change value automatically at a given point - additional helper functions\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/types/Time.sol\":\"Time\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]}},\"version\":1}"}},"contracts/GovernanceTimelock.sol":{"GovernanceTimelock":{"abi":[{"inputs":[{"internalType":"uint256","name":"minDelay","type":"uint256"},{"internalType":"address[]","name":"proposers","type":"address[]"},{"internalType":"address[]","name":"executors","type":"address[]"},{"internalType":"address","name":"admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"delay","type":"uint256"},{"internalType":"uint256","name":"minDelay","type":"uint256"}],"name":"TimelockInsufficientDelay","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"payloads","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"TimelockInvalidOperationLength","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"TimelockUnauthorizedCaller","type":"error"},{"inputs":[{"internalType":"bytes32","name":"predecessorId","type":"bytes32"}],"name":"TimelockUnexecutedPredecessor","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"TimelockUnexpectedOperationState","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"CallExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"CallSalt","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"delay","type":"uint256"}],"name":"CallScheduled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"Cancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldDuration","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newDuration","type":"uint256"}],"name":"MinDelayChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"CANCELLER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXECUTOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROPOSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"cancel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"payload","type":"bytes"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"execute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"payloads","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"executeBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getMinDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getOperationState","outputs":[{"internalType":"enum TimelockController.OperationState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"hashOperation","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"payloads","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"hashOperationBatch","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperation","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationDone","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationPending","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationReady","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256","name":"delay","type":"uint256"}],"name":"schedule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"payloads","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256","name":"delay","type":"uint256"}],"name":"scheduleBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDelay","type":"uint256"}],"name":"updateDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{"abi_decode_address_fromMemory":{"entryPoint":445,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_array_address_dyn_fromMemory":{"entryPoint":466,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_memory":{"entryPoint":385,"id":null,"parameterSlots":1,"returnSlots":1},"fun_grantRole":{"entryPoint":1108,"id":256,"parameterSlots":1,"returnSlots":1},"fun_grantRole_1466":{"entryPoint":661,"id":256,"parameterSlots":1,"returnSlots":1},"fun_grantRole_1468":{"entryPoint":789,"id":256,"parameterSlots":1,"returnSlots":1},"fun_grantRole_1469":{"entryPoint":951,"id":256,"parameterSlots":1,"returnSlots":1},"increment_uint256":{"entryPoint":580,"id":null,"parameterSlots":1,"returnSlots":1},"memory_array_index_access_address_dyn":{"entryPoint":618,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[],"linkReferences":{},"object":"6080604052346200017c5762001a74803803806200001d8162000181565b9283398101906080818303126200017c57805160208201516001600160401b03908181116200017c578462000054918501620001d2565b9360408401519182116200017c57620000766060916200007e938601620001d2565b9301620001bd565b906200008a3062000295565b506001600160a01b039180831662000169575b5060005b8451811015620000f05780620000c984620000c1620000ea94896200026a565b511662000315565b50620000e384620000db83896200026a565b5116620003b7565b5062000244565b620000a1565b50925060005b8251811015620001245780620000e383620001166200011e94876200026a565b511662000454565b620000f6565b7f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d560408580600255815190600082526020820152a16040516115629081620004f28239f35b620001749062000295565b50386200009d565b600080fd5b6040519190601f01601f191682016001600160401b03811183821017620001a757604052565b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036200017c57565b81601f820112156200017c578051916001600160401b038311620001a7578260051b60209283806200020681850162000181565b8097815201928201019283116200017c578301905b8282106200022a575050505090565b8380916200023884620001bd565b8152019101906200021b565b6000198114620002545760010190565b634e487b7160e01b600052601160045260246000fd5b80518210156200027f5760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b031660008181527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205490919060ff166200031157818052816020526040822081835260205260408220600160ff19825416179055339160008051602062001a548339815191528180a4600190565b5090565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260408120549091907fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff16620003b257808352826020526040832082845260205260408320600160ff1982541617905560008051602062001a54833981519152339380a4600190565b505090565b6001600160a01b031660008181527fc3ad33e20b0c56a223ad5104fff154aa010f8715b9c981fd38fdc60a4d1a52fb60205260408120549091907ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7839060ff16620003b257808352826020526040832082845260205260408320600160ff1982541617905560008051602062001a54833981519152339380a4600190565b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d706960205260408120549091907fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e639060ff16620003b257808352826020526040832082845260205260408320600160ff1982541617905560008051602062001a54833981519152339380a460019056fe60406080815260049081361015610020575b5050361561001e57600080fd5b005b600091823560e01c90816301d5062a14610b0c57816301ffc9a714610a9957816307bd026514610a7057838263134008d3146109c65750816313bc9f20146109a6578163150b7a0214610951578163248a9ca3146109275781632ab0f529146109075781632f2ff15d146108dd57816331d50750146108bd57816336568abe14610877578163584b153e1461084e57816364d62353146107e25781637958004c1461079f5781638065657f1461077d5781638f2a0bb0146105e05781638f61f4f5146105a557816391d148541461055f578163a217fddf14610544578163b08e51c014610509578163b1c5f427146104dd578163bc197c8114610457578163c4d252f514610388578163d45c443514610360578163d547741f1461031b578163e38335e5146101d8578163f23a6e6114610180575063f27a0c9203610011573461017c578160031936011261017c576020906002549051908152f35b5080fd5b8284346101d55760a03660031901126101d55761019b610bea565b506101a4610c05565b50608435906001600160401b0382116101d557506020926101c791369101610ce8565b505163f23a6e6160e01b8152f35b80fd5b90506101e336610d5f565b90989495919392969760008051602061150d8339815191528b528a602052858b208b805260205260ff868c2054161561030d575b838314801590610303575b6102d5575061023a610241918a868a878b888f611158565b988961145b565b885b81811061025757896102548a6114c1565b80f35b80808a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b588a8a6102c86102b08f988c6102a9828e6102a38f6102d09f61029e9185916112f3565b611319565b976112f3565b359561132d565b906102bd82828787611406565b8d51948594856113df565b0390a36112ce565b610243565b85516001624fcdef60e01b031981529081019283526020830185905260408301849052918291506060010390fd5b5084831415610222565b61031633610ea9565b610217565b9190503461035c578060031936011261035c5761035891356103536001610340610c05565b9383875286602052862001543390610efc565b610fab565b5080f35b8280fd5b90503461035c57602036600319011261035c5760209282913581526001845220549051908152f35b9190503461035c57602036600319011261035c578135917ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838085528460205282852033865260205260ff83862054161561043c57506103e68361104d565b156104205750829082825260016020528120557fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb708280a280f35b826044925191635ead8eb560e01b835282015260066024820152fd5b604492519163e2517d3f60e01b835233908301526024820152fd5b8284346101d55760a03660031901126101d557610472610bea565b5061047b610c05565b506001600160401b039060443582811161017c5761049c9036908601610dc0565b5060643582811161017c576104b49036908601610dc0565b506084359182116101d557506020926104cf91369101610ce8565b505163bc197c8160e01b8152f35b50503461017c576020906105026104f336610d5f565b96959095949194939293611158565b9051908152f35b50503461017c578160031936011261017c57602090517ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838152f35b50503461017c578160031936011261017c5751908152602090f35b90503461035c578160031936011261035c578160209360ff92610580610c05565b903582528186528282206001600160a01b039091168252855220549151911615158152f35b50503461017c578160031936011261017c57602090517fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc18152f35b9190503461035c5760c036600319011261035c576001600160401b03908235828111610779576106139036908501610d2f565b936024358481116107755761062b9036908301610d2f565b94604435908111610771576106439036908401610d2f565b606493919335906084359760a4359361065b33610e26565b818b14801590610767575b610739575061067c89848489858f8b908e611158565b99610687858c61136e565b8a8c5b8a8382106106d0578e838e838161069f578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a28180808380f35b610732927f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b6102c88f8c88978f92898f8f8f6107209161071a61029e868094610727996112f3565b9a6112f3565b359861132d565b915196879687611296565b8b9061068a565b88516001624fcdef60e01b031981529081018b81526020810184905260408101929092529081906060010390fd5b50828b1415610666565b8780fd5b8680fd5b8480fd5b50503461017c5760209061050261079336610c48565b94939093929192611103565b83833461017c57602036600319011261017c576107bc83356110a6565b905191838210156107cf57602083838152f35b634e487b7160e01b815260218452602490fd5b9190503461035c57602036600319011261035c5781359130330361083857507f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5906002548151908152836020820152a160025580f35b602491519063e2850c5960e01b82523390820152fd5b8284346101d55760203660031901126101d5575061086e6020923561104d565b90519015158152f35b83833461017c578060031936011261017c57610891610c05565b90336001600160a01b038316036108ae5750610358919235610fab565b5163334bd91960e11b81528390fd5b8284346101d55760203660031901126101d5575061086e60209235611020565b9190503461035c578060031936011261035c5761035891356109026001610340610c05565b610f2d565b8284346101d55760203660031901126101d5575061086e6020923561108e565b90503461035c57602036600319011261035c57816020936001923581528085522001549051908152f35b8284346101d55760803660031901126101d55761096c610bea565b50610975610c05565b50606435906001600160401b0382116101d5575060209261099891369101610ce8565b5051630a85bd0160e11b8152f35b8284346101d55760203660031901126101d5575061086e60209235611076565b610254610a4482610a5a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b58610a3b896109fe36610c48565b60008051602061150d8339815191528b9a9697939598929a528a602052828b208b805260205260ff838c20541615610a62575b8985858a8a611103565b998a988961145b565b610a5083838888611406565b51948594856113df565b0390a36114c1565b610a6b33610ea9565b610a31565b50503461017c578160031936011261017c576020905160008051602061150d8339815191528152f35b90503461035c57602036600319011261035c57359063ffffffff60e01b821680920361035c5760209250630271189760e51b8214918215610ade575b50519015158152f35b909150637965db0b60e01b8114908115610afb575b509038610ad5565b6301ffc9a760e01b14905038610af3565b9190503461035c5760c036600319011261035c57610b28610bea565b90836024356044356001600160401b03811161035c577f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca95610b6c91369101610c1b565b95909160643595610bad6084359760a43590610b8733610e26565b610b958a828d8a8989611103565b9a8b97610ba2848a61136e565b8a5196879687611296565b0390a381610bb9578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a23880808380f35b600435906001600160a01b0382168203610c0057565b600080fd5b602435906001600160a01b0382168203610c0057565b9181601f84011215610c00578235916001600160401b038311610c005760208381860195010111610c0057565b60a0600319820112610c00576004356001600160a01b0381168103610c00579160243591604435906001600160401b038211610c0057610c8a91600401610c1b565b90916064359060843590565b90601f801991011681019081106001600160401b03821117610cb757604052565b634e487b7160e01b600052604160045260246000fd5b6001600160401b038111610cb757601f01601f191660200190565b81601f82011215610c0057803590610cff82610ccd565b92610d0d6040519485610c96565b82845260208383010111610c0057816000926020809301838601378301015290565b9181601f84011215610c00578235916001600160401b038311610c00576020808501948460051b010111610c0057565b9060a0600319830112610c00576001600160401b03600435818111610c005783610d8b91600401610d2f565b93909392602435838111610c005782610da691600401610d2f565b93909392604435918211610c0057610c8a91600401610d2f565b9080601f83011215610c00578135906001600160401b038211610cb7578160051b60405193602093610df485840187610c96565b85528380860192820101928311610c00578301905b828210610e17575050505090565b81358152908301908301610e09565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260409020547fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff1615610e8b575050565b604492506040519163e2517d3f60e01b835260048301526024820152fd5b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d7069602052604090205460008051602061150d8339815191529060ff1615610e8b575050565b80600052600060205260406000209160018060a01b0316918260005260205260ff6040600020541615610e8b575050565b9060009180835282602052604083209160018060a01b03169182845260205260ff60408420541615600014610fa657808352826020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b9060009180835282602052604083209160018060a01b03169182845260205260ff604084205416600014610fa65780835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b611029906110a6565b600481101561103757151590565b634e487b7160e01b600052602160045260246000fd5b611056906110a6565b6004811015611037576001811490811561106e575090565b600291501490565b61107f906110a6565b60048110156110375760021490565b611097906110a6565b60048110156110375760031490565b600052600160205260406000205480156000146110c35750600090565b600181036110d15750600390565b4210156110dd57600190565b600290565b908060209392818452848401376000828201840152601f01601f1916010190565b9461113961115294959293604051968795602087019960018060a01b03168a52604087015260a0606087015260c08601916110e2565b91608084015260a083015203601f198101835282610c96565b51902090565b969294909695919560405196602091828901998060c08b0160a08d525260e08a01919060005b81811061126e57505050601f19898203810160408b0152888252976001600160fb1b038111610c00579089969495939897929160051b80928a830137019380888601878703606089015252604085019460408260051b82010195836000925b848410611205575050505050506111529550608084015260a083015203908101835282610c96565b9193969850919398999496603f198282030184528935601e1984360301811215610c005783018681019190356001600160401b038111610c00578036038313610c0057611257889283926001956110e2565b9b0194019401918b98969394919a9997959a6111dd565b90919283359060018060a01b038216809203610c00579081528501928501919060010161117e565b9290936112c4926080959897969860018060a01b03168552602085015260a0604085015260a08401916110e2565b9460608201520152565b60001981146112dd5760010190565b634e487b7160e01b600052601160045260246000fd5b91908110156113035760051b0190565b634e487b7160e01b600052603260045260246000fd5b356001600160a01b0381168103610c005790565b91908110156113035760051b81013590601e1981360301821215610c005701908135916001600160401b038311610c00576020018236038113610c00579190565b9061137882611020565b6113bf576002548082106113a157504201908142116112dd576000526001602052604060002055565b6044925060405191635433660960e01b835260048301526024820152fd5b604051635ead8eb560e01b81526004810183905260016024820152604490fd5b611403949260609260018060a01b03168252602082015281604082015201916110e2565b90565b61145093600093928493826040519384928337810185815203925af13d15611453573d9061143382610ccd565b916114416040519384610c96565b82523d6000602084013e6114e1565b50565b6060906114e1565b61146481611076565b156114a2575080151580611492575b61147a5750565b6024906040519063121534c360e31b82526004820152fd5b5061149c8161108e565b15611473565b60449060405190635ead8eb560e01b8252600482015260046024820152fd5b6114ca81611076565b156114a25760005260016020526001604060002055565b90919061150a57508051156114f857805190602001fd5b60405163d6bda27560e01b8152600490fd5b56fed8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63a2646970667358221220328b51d9a5ef216ec4f19ae7fb403dc671eaa3ab5eafa7cdd9b4aba6e61a180164736f6c634300081400332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE PUSH3 0x17C JUMPI PUSH3 0x1A74 DUP1 CODESIZE SUB DUP1 PUSH3 0x1D DUP2 PUSH3 0x181 JUMP JUMPDEST SWAP3 DUP4 CODECOPY DUP2 ADD SWAP1 PUSH1 0x80 DUP2 DUP4 SUB SLT PUSH3 0x17C JUMPI DUP1 MLOAD PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 DUP2 GT PUSH3 0x17C JUMPI DUP5 PUSH3 0x54 SWAP2 DUP6 ADD PUSH3 0x1D2 JUMP JUMPDEST SWAP4 PUSH1 0x40 DUP5 ADD MLOAD SWAP2 DUP3 GT PUSH3 0x17C JUMPI PUSH3 0x76 PUSH1 0x60 SWAP2 PUSH3 0x7E SWAP4 DUP7 ADD PUSH3 0x1D2 JUMP JUMPDEST SWAP4 ADD PUSH3 0x1BD JUMP JUMPDEST SWAP1 PUSH3 0x8A ADDRESS PUSH3 0x295 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP1 DUP4 AND PUSH3 0x169 JUMPI JUMPDEST POP PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH3 0xF0 JUMPI DUP1 PUSH3 0xC9 DUP5 PUSH3 0xC1 PUSH3 0xEA SWAP5 DUP10 PUSH3 0x26A JUMP JUMPDEST MLOAD AND PUSH3 0x315 JUMP JUMPDEST POP PUSH3 0xE3 DUP5 PUSH3 0xDB DUP4 DUP10 PUSH3 0x26A JUMP JUMPDEST MLOAD AND PUSH3 0x3B7 JUMP JUMPDEST POP PUSH3 0x244 JUMP JUMPDEST PUSH3 0xA1 JUMP JUMPDEST POP SWAP3 POP PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH3 0x124 JUMPI DUP1 PUSH3 0xE3 DUP4 PUSH3 0x116 PUSH3 0x11E SWAP5 DUP8 PUSH3 0x26A JUMP JUMPDEST MLOAD AND PUSH3 0x454 JUMP JUMPDEST PUSH3 0xF6 JUMP JUMPDEST PUSH32 0x11C24F4EAD16507C69AC467FBD5E4EED5FB5C699626D2CC6D66421DF253886D5 PUSH1 0x40 DUP6 DUP1 PUSH1 0x2 SSTORE DUP2 MLOAD SWAP1 PUSH1 0x0 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x40 MLOAD PUSH2 0x1562 SWAP1 DUP2 PUSH3 0x4F2 DUP3 CODECOPY RETURN JUMPDEST PUSH3 0x174 SWAP1 PUSH3 0x295 JUMP JUMPDEST POP CODESIZE PUSH3 0x9D JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP2 SWAP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP4 DUP3 LT OR PUSH3 0x1A7 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST MLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH3 0x17C JUMPI JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH3 0x17C JUMPI DUP1 MLOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH3 0x1A7 JUMPI DUP3 PUSH1 0x5 SHL PUSH1 0x20 SWAP3 DUP4 DUP1 PUSH3 0x206 DUP2 DUP6 ADD PUSH3 0x181 JUMP JUMPDEST DUP1 SWAP8 DUP2 MSTORE ADD SWAP3 DUP3 ADD ADD SWAP3 DUP4 GT PUSH3 0x17C JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH3 0x22A JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 DUP1 SWAP2 PUSH3 0x238 DUP5 PUSH3 0x1BD JUMP JUMPDEST DUP2 MSTORE ADD SWAP2 ADD SWAP1 PUSH3 0x21B JUMP JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH3 0x254 JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 MLOAD DUP3 LT ISZERO PUSH3 0x27F JUMPI PUSH1 0x20 SWAP2 PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0xAD3228B676F7D3CD4284A5443F17F1962B36E491B30A40B2405849E597BA5FB5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 PUSH1 0xFF AND PUSH3 0x311 JUMPI DUP2 DUP1 MSTORE DUP2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP3 KECCAK256 DUP2 DUP4 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP3 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE CALLER SWAP2 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x1A54 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP2 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0x3412D5605AC6CD444957CEDB533E5DACAD6378B4BC819EBE3652188A665066D5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 PUSH32 0xB09AA5AEB3702CFD50B6B62BC4532604938F21248A27A1D5CA736082B6819CC1 SWAP1 PUSH1 0xFF AND PUSH3 0x3B2 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x1A54 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST POP POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0xC3AD33E20B0C56A223AD5104FFF154AA010F8715B9C981FD38FDC60A4D1A52FB PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 PUSH32 0xFD643C72710C63C0180259ABA6B2D05451E3591A24E58B62239378085726F783 SWAP1 PUSH1 0xFF AND PUSH3 0x3B2 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x1A54 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0xDAE2AA361DFD1CA020A396615627D436107C35EFF9FE7738A3512819782D7069 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 SWAP1 PUSH1 0xFF AND PUSH3 0x3B2 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x1A54 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP INVALID PUSH1 0x40 PUSH1 0x80 DUP2 MSTORE PUSH1 0x4 SWAP1 DUP2 CALLDATASIZE LT ISZERO PUSH2 0x20 JUMPI JUMPDEST POP POP CALLDATASIZE ISZERO PUSH2 0x1E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST STOP JUMPDEST PUSH1 0x0 SWAP2 DUP3 CALLDATALOAD PUSH1 0xE0 SHR SWAP1 DUP2 PUSH4 0x1D5062A EQ PUSH2 0xB0C JUMPI DUP2 PUSH4 0x1FFC9A7 EQ PUSH2 0xA99 JUMPI DUP2 PUSH4 0x7BD0265 EQ PUSH2 0xA70 JUMPI DUP4 DUP3 PUSH4 0x134008D3 EQ PUSH2 0x9C6 JUMPI POP DUP2 PUSH4 0x13BC9F20 EQ PUSH2 0x9A6 JUMPI DUP2 PUSH4 0x150B7A02 EQ PUSH2 0x951 JUMPI DUP2 PUSH4 0x248A9CA3 EQ PUSH2 0x927 JUMPI DUP2 PUSH4 0x2AB0F529 EQ PUSH2 0x907 JUMPI DUP2 PUSH4 0x2F2FF15D EQ PUSH2 0x8DD JUMPI DUP2 PUSH4 0x31D50750 EQ PUSH2 0x8BD JUMPI DUP2 PUSH4 0x36568ABE EQ PUSH2 0x877 JUMPI DUP2 PUSH4 0x584B153E EQ PUSH2 0x84E JUMPI DUP2 PUSH4 0x64D62353 EQ PUSH2 0x7E2 JUMPI DUP2 PUSH4 0x7958004C EQ PUSH2 0x79F JUMPI DUP2 PUSH4 0x8065657F EQ PUSH2 0x77D JUMPI DUP2 PUSH4 0x8F2A0BB0 EQ PUSH2 0x5E0 JUMPI DUP2 PUSH4 0x8F61F4F5 EQ PUSH2 0x5A5 JUMPI DUP2 PUSH4 0x91D14854 EQ PUSH2 0x55F JUMPI DUP2 PUSH4 0xA217FDDF EQ PUSH2 0x544 JUMPI DUP2 PUSH4 0xB08E51C0 EQ PUSH2 0x509 JUMPI DUP2 PUSH4 0xB1C5F427 EQ PUSH2 0x4DD JUMPI DUP2 PUSH4 0xBC197C81 EQ PUSH2 0x457 JUMPI DUP2 PUSH4 0xC4D252F5 EQ PUSH2 0x388 JUMPI DUP2 PUSH4 0xD45C4435 EQ PUSH2 0x360 JUMPI DUP2 PUSH4 0xD547741F EQ PUSH2 0x31B JUMPI DUP2 PUSH4 0xE38335E5 EQ PUSH2 0x1D8 JUMPI DUP2 PUSH4 0xF23A6E61 EQ PUSH2 0x180 JUMPI POP PUSH4 0xF27A0C92 SUB PUSH2 0x11 JUMPI CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 PUSH1 0x2 SLOAD SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST POP DUP1 REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI PUSH2 0x19B PUSH2 0xBEA JUMP JUMPDEST POP PUSH2 0x1A4 PUSH2 0xC05 JUMP JUMPDEST POP PUSH1 0x84 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x1D5 JUMPI POP PUSH1 0x20 SWAP3 PUSH2 0x1C7 SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xCE8 JUMP JUMPDEST POP MLOAD PUSH4 0xF23A6E61 PUSH1 0xE0 SHL DUP2 MSTORE RETURN JUMPDEST DUP1 REVERT JUMPDEST SWAP1 POP PUSH2 0x1E3 CALLDATASIZE PUSH2 0xD5F JUMP JUMPDEST SWAP1 SWAP9 SWAP5 SWAP6 SWAP2 SWAP4 SWAP3 SWAP7 SWAP8 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP12 MSTORE DUP11 PUSH1 0x20 MSTORE DUP6 DUP12 KECCAK256 DUP12 DUP1 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF DUP7 DUP13 KECCAK256 SLOAD AND ISZERO PUSH2 0x30D JUMPI JUMPDEST DUP4 DUP4 EQ DUP1 ISZERO SWAP1 PUSH2 0x303 JUMPI JUMPDEST PUSH2 0x2D5 JUMPI POP PUSH2 0x23A PUSH2 0x241 SWAP2 DUP11 DUP7 DUP11 DUP8 DUP12 DUP9 DUP16 PUSH2 0x1158 JUMP JUMPDEST SWAP9 DUP10 PUSH2 0x145B JUMP JUMPDEST DUP9 JUMPDEST DUP2 DUP2 LT PUSH2 0x257 JUMPI DUP10 PUSH2 0x254 DUP11 PUSH2 0x14C1 JUMP JUMPDEST DUP1 RETURN JUMPDEST DUP1 DUP1 DUP11 PUSH32 0xC2617EFA69BAB66782FA219543714338489C4E9E178271560A91B82C3F612B58 DUP11 DUP11 PUSH2 0x2C8 PUSH2 0x2B0 DUP16 SWAP9 DUP13 PUSH2 0x2A9 DUP3 DUP15 PUSH2 0x2A3 DUP16 PUSH2 0x2D0 SWAP16 PUSH2 0x29E SWAP2 DUP6 SWAP2 PUSH2 0x12F3 JUMP JUMPDEST PUSH2 0x1319 JUMP JUMPDEST SWAP8 PUSH2 0x12F3 JUMP JUMPDEST CALLDATALOAD SWAP6 PUSH2 0x132D JUMP JUMPDEST SWAP1 PUSH2 0x2BD DUP3 DUP3 DUP8 DUP8 PUSH2 0x1406 JUMP JUMPDEST DUP14 MLOAD SWAP5 DUP6 SWAP5 DUP6 PUSH2 0x13DF JUMP JUMPDEST SUB SWAP1 LOG3 PUSH2 0x12CE JUMP JUMPDEST PUSH2 0x243 JUMP JUMPDEST DUP6 MLOAD PUSH1 0x1 PUSH3 0x4FCDEF PUSH1 0xE0 SHL SUB NOT DUP2 MSTORE SWAP1 DUP2 ADD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD DUP6 SWAP1 MSTORE PUSH1 0x40 DUP4 ADD DUP5 SWAP1 MSTORE SWAP2 DUP3 SWAP2 POP PUSH1 0x60 ADD SUB SWAP1 REVERT JUMPDEST POP DUP5 DUP4 EQ ISZERO PUSH2 0x222 JUMP JUMPDEST PUSH2 0x316 CALLER PUSH2 0xEA9 JUMP JUMPDEST PUSH2 0x217 JUMP JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x35C JUMPI PUSH2 0x358 SWAP2 CALLDATALOAD PUSH2 0x353 PUSH1 0x1 PUSH2 0x340 PUSH2 0xC05 JUMP JUMPDEST SWAP4 DUP4 DUP8 MSTORE DUP7 PUSH1 0x20 MSTORE DUP7 KECCAK256 ADD SLOAD CALLER SWAP1 PUSH2 0xEFC JUMP JUMPDEST PUSH2 0xFAB JUMP JUMPDEST POP DUP1 RETURN JUMPDEST DUP3 DUP1 REVERT JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI PUSH1 0x20 SWAP3 DUP3 SWAP2 CALLDATALOAD DUP2 MSTORE PUSH1 0x1 DUP5 MSTORE KECCAK256 SLOAD SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI DUP2 CALLDATALOAD SWAP2 PUSH32 0xFD643C72710C63C0180259ABA6B2D05451E3591A24E58B62239378085726F783 DUP1 DUP6 MSTORE DUP5 PUSH1 0x20 MSTORE DUP3 DUP6 KECCAK256 CALLER DUP7 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF DUP4 DUP7 KECCAK256 SLOAD AND ISZERO PUSH2 0x43C JUMPI POP PUSH2 0x3E6 DUP4 PUSH2 0x104D JUMP JUMPDEST ISZERO PUSH2 0x420 JUMPI POP DUP3 SWAP1 DUP3 DUP3 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE DUP2 KECCAK256 SSTORE PUSH32 0xBAA1EB22F2A492BA1A5FEA61B8DF4D27C6C8B5F3971E63BB58FA14FF72EEDB70 DUP3 DUP1 LOG2 DUP1 RETURN JUMPDEST DUP3 PUSH1 0x44 SWAP3 MLOAD SWAP2 PUSH4 0x5EAD8EB5 PUSH1 0xE0 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x6 PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x44 SWAP3 MLOAD SWAP2 PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP4 MSTORE CALLER SWAP1 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI PUSH2 0x472 PUSH2 0xBEA JUMP JUMPDEST POP PUSH2 0x47B PUSH2 0xC05 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 PUSH1 0x44 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x17C JUMPI PUSH2 0x49C SWAP1 CALLDATASIZE SWAP1 DUP7 ADD PUSH2 0xDC0 JUMP JUMPDEST POP PUSH1 0x64 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x17C JUMPI PUSH2 0x4B4 SWAP1 CALLDATASIZE SWAP1 DUP7 ADD PUSH2 0xDC0 JUMP JUMPDEST POP PUSH1 0x84 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0x1D5 JUMPI POP PUSH1 0x20 SWAP3 PUSH2 0x4CF SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xCE8 JUMP JUMPDEST POP MLOAD PUSH4 0xBC197C81 PUSH1 0xE0 SHL DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 PUSH2 0x502 PUSH2 0x4F3 CALLDATASIZE PUSH2 0xD5F JUMP JUMPDEST SWAP7 SWAP6 SWAP1 SWAP6 SWAP5 SWAP2 SWAP5 SWAP4 SWAP3 SWAP4 PUSH2 0x1158 JUMP JUMPDEST SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 MLOAD PUSH32 0xFD643C72710C63C0180259ABA6B2D05451E3591A24E58B62239378085726F783 DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x35C JUMPI DUP2 PUSH1 0x20 SWAP4 PUSH1 0xFF SWAP3 PUSH2 0x580 PUSH2 0xC05 JUMP JUMPDEST SWAP1 CALLDATALOAD DUP3 MSTORE DUP2 DUP7 MSTORE DUP3 DUP3 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP3 MSTORE DUP6 MSTORE KECCAK256 SLOAD SWAP2 MLOAD SWAP2 AND ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 MLOAD PUSH32 0xB09AA5AEB3702CFD50B6B62BC4532604938F21248A27A1D5CA736082B6819CC1 DUP2 MSTORE RETURN JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP3 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x779 JUMPI PUSH2 0x613 SWAP1 CALLDATASIZE SWAP1 DUP6 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP4 PUSH1 0x24 CALLDATALOAD DUP5 DUP2 GT PUSH2 0x775 JUMPI PUSH2 0x62B SWAP1 CALLDATASIZE SWAP1 DUP4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP5 PUSH1 0x44 CALLDATALOAD SWAP1 DUP2 GT PUSH2 0x771 JUMPI PUSH2 0x643 SWAP1 CALLDATASIZE SWAP1 DUP5 ADD PUSH2 0xD2F JUMP JUMPDEST PUSH1 0x64 SWAP4 SWAP2 SWAP4 CALLDATALOAD SWAP1 PUSH1 0x84 CALLDATALOAD SWAP8 PUSH1 0xA4 CALLDATALOAD SWAP4 PUSH2 0x65B CALLER PUSH2 0xE26 JUMP JUMPDEST DUP2 DUP12 EQ DUP1 ISZERO SWAP1 PUSH2 0x767 JUMPI JUMPDEST PUSH2 0x739 JUMPI POP PUSH2 0x67C DUP10 DUP5 DUP5 DUP10 DUP6 DUP16 DUP12 SWAP1 DUP15 PUSH2 0x1158 JUMP JUMPDEST SWAP10 PUSH2 0x687 DUP6 DUP13 PUSH2 0x136E JUMP JUMPDEST DUP11 DUP13 JUMPDEST DUP11 DUP4 DUP3 LT PUSH2 0x6D0 JUMPI DUP15 DUP4 DUP15 DUP4 DUP2 PUSH2 0x69F JUMPI DUP4 DUP1 RETURN JUMPDEST PUSH32 0x20FDA5FD27A1EA7BF5B9567F143AC5470BB059374A27E8F67CB44F946F6D0387 SWAP2 PUSH1 0x20 SWAP2 MLOAD SWAP1 DUP2 MSTORE LOG2 DUP2 DUP1 DUP1 DUP4 DUP1 RETURN JUMPDEST PUSH2 0x732 SWAP3 PUSH32 0x4CF4410CC57040E44862EF0F45F3DD5A5E02DB8EB8ADD648D4B0E236F1D07DCA DUP12 DUP12 PUSH2 0x2C8 DUP16 DUP13 DUP9 SWAP8 DUP16 SWAP3 DUP10 DUP16 DUP16 DUP16 PUSH2 0x720 SWAP2 PUSH2 0x71A PUSH2 0x29E DUP7 DUP1 SWAP5 PUSH2 0x727 SWAP10 PUSH2 0x12F3 JUMP JUMPDEST SWAP11 PUSH2 0x12F3 JUMP JUMPDEST CALLDATALOAD SWAP9 PUSH2 0x132D JUMP JUMPDEST SWAP2 MLOAD SWAP7 DUP8 SWAP7 DUP8 PUSH2 0x1296 JUMP JUMPDEST DUP12 SWAP1 PUSH2 0x68A JUMP JUMPDEST DUP9 MLOAD PUSH1 0x1 PUSH3 0x4FCDEF PUSH1 0xE0 SHL SUB NOT DUP2 MSTORE SWAP1 DUP2 ADD DUP12 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x40 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x60 ADD SUB SWAP1 REVERT JUMPDEST POP DUP3 DUP12 EQ ISZERO PUSH2 0x666 JUMP JUMPDEST DUP8 DUP1 REVERT JUMPDEST DUP7 DUP1 REVERT JUMPDEST DUP5 DUP1 REVERT JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 PUSH2 0x502 PUSH2 0x793 CALLDATASIZE PUSH2 0xC48 JUMP JUMPDEST SWAP5 SWAP4 SWAP1 SWAP4 SWAP3 SWAP2 SWAP3 PUSH2 0x1103 JUMP JUMPDEST DUP4 DUP4 CALLVALUE PUSH2 0x17C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x17C JUMPI PUSH2 0x7BC DUP4 CALLDATALOAD PUSH2 0x10A6 JUMP JUMPDEST SWAP1 MLOAD SWAP2 DUP4 DUP3 LT ISZERO PUSH2 0x7CF JUMPI PUSH1 0x20 DUP4 DUP4 DUP2 MSTORE RETURN JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x21 DUP5 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI DUP2 CALLDATALOAD SWAP2 ADDRESS CALLER SUB PUSH2 0x838 JUMPI POP PUSH32 0x11C24F4EAD16507C69AC467FBD5E4EED5FB5C699626D2CC6D66421DF253886D5 SWAP1 PUSH1 0x2 SLOAD DUP2 MLOAD SWAP1 DUP2 MSTORE DUP4 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x2 SSTORE DUP1 RETURN JUMPDEST PUSH1 0x24 SWAP2 MLOAD SWAP1 PUSH4 0xE2850C59 PUSH1 0xE0 SHL DUP3 MSTORE CALLER SWAP1 DUP3 ADD MSTORE REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x104D JUMP JUMPDEST SWAP1 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST DUP4 DUP4 CALLVALUE PUSH2 0x17C JUMPI DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH2 0x891 PUSH2 0xC05 JUMP JUMPDEST SWAP1 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SUB PUSH2 0x8AE JUMPI POP PUSH2 0x358 SWAP2 SWAP3 CALLDATALOAD PUSH2 0xFAB JUMP JUMPDEST MLOAD PUSH4 0x334BD919 PUSH1 0xE1 SHL DUP2 MSTORE DUP4 SWAP1 REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x1020 JUMP JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x35C JUMPI PUSH2 0x358 SWAP2 CALLDATALOAD PUSH2 0x902 PUSH1 0x1 PUSH2 0x340 PUSH2 0xC05 JUMP JUMPDEST PUSH2 0xF2D JUMP JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x108E JUMP JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI DUP2 PUSH1 0x20 SWAP4 PUSH1 0x1 SWAP3 CALLDATALOAD DUP2 MSTORE DUP1 DUP6 MSTORE KECCAK256 ADD SLOAD SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI PUSH2 0x96C PUSH2 0xBEA JUMP JUMPDEST POP PUSH2 0x975 PUSH2 0xC05 JUMP JUMPDEST POP PUSH1 0x64 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x1D5 JUMPI POP PUSH1 0x20 SWAP3 PUSH2 0x998 SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xCE8 JUMP JUMPDEST POP MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE RETURN JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x1076 JUMP JUMPDEST PUSH2 0x254 PUSH2 0xA44 DUP3 PUSH2 0xA5A PUSH32 0xC2617EFA69BAB66782FA219543714338489C4E9E178271560A91B82C3F612B58 PUSH2 0xA3B DUP10 PUSH2 0x9FE CALLDATASIZE PUSH2 0xC48 JUMP JUMPDEST PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP12 SWAP11 SWAP7 SWAP8 SWAP4 SWAP6 SWAP9 SWAP3 SWAP11 MSTORE DUP11 PUSH1 0x20 MSTORE DUP3 DUP12 KECCAK256 DUP12 DUP1 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF DUP4 DUP13 KECCAK256 SLOAD AND ISZERO PUSH2 0xA62 JUMPI JUMPDEST DUP10 DUP6 DUP6 DUP11 DUP11 PUSH2 0x1103 JUMP JUMPDEST SWAP10 DUP11 SWAP9 DUP10 PUSH2 0x145B JUMP JUMPDEST PUSH2 0xA50 DUP4 DUP4 DUP9 DUP9 PUSH2 0x1406 JUMP JUMPDEST MLOAD SWAP5 DUP6 SWAP5 DUP6 PUSH2 0x13DF JUMP JUMPDEST SUB SWAP1 LOG3 PUSH2 0x14C1 JUMP JUMPDEST PUSH2 0xA6B CALLER PUSH2 0xEA9 JUMP JUMPDEST PUSH2 0xA31 JUMP JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 MLOAD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP2 MSTORE RETURN JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI CALLDATALOAD SWAP1 PUSH4 0xFFFFFFFF PUSH1 0xE0 SHL DUP3 AND DUP1 SWAP3 SUB PUSH2 0x35C JUMPI PUSH1 0x20 SWAP3 POP PUSH4 0x2711897 PUSH1 0xE5 SHL DUP3 EQ SWAP2 DUP3 ISZERO PUSH2 0xADE JUMPI JUMPDEST POP MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST SWAP1 SWAP2 POP PUSH4 0x7965DB0B PUSH1 0xE0 SHL DUP2 EQ SWAP1 DUP2 ISZERO PUSH2 0xAFB JUMPI JUMPDEST POP SWAP1 CODESIZE PUSH2 0xAD5 JUMP JUMPDEST PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ SWAP1 POP CODESIZE PUSH2 0xAF3 JUMP JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI PUSH2 0xB28 PUSH2 0xBEA JUMP JUMPDEST SWAP1 DUP4 PUSH1 0x24 CALLDATALOAD PUSH1 0x44 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x35C JUMPI PUSH32 0x4CF4410CC57040E44862EF0F45F3DD5A5E02DB8EB8ADD648D4B0E236F1D07DCA SWAP6 PUSH2 0xB6C SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xC1B JUMP JUMPDEST SWAP6 SWAP1 SWAP2 PUSH1 0x64 CALLDATALOAD SWAP6 PUSH2 0xBAD PUSH1 0x84 CALLDATALOAD SWAP8 PUSH1 0xA4 CALLDATALOAD SWAP1 PUSH2 0xB87 CALLER PUSH2 0xE26 JUMP JUMPDEST PUSH2 0xB95 DUP11 DUP3 DUP14 DUP11 DUP10 DUP10 PUSH2 0x1103 JUMP JUMPDEST SWAP11 DUP12 SWAP8 PUSH2 0xBA2 DUP5 DUP11 PUSH2 0x136E JUMP JUMPDEST DUP11 MLOAD SWAP7 DUP8 SWAP7 DUP8 PUSH2 0x1296 JUMP JUMPDEST SUB SWAP1 LOG3 DUP2 PUSH2 0xBB9 JUMPI DUP4 DUP1 RETURN JUMPDEST PUSH32 0x20FDA5FD27A1EA7BF5B9567F143AC5470BB059374A27E8F67CB44F946F6D0387 SWAP2 PUSH1 0x20 SWAP2 MLOAD SWAP1 DUP2 MSTORE LOG2 CODESIZE DUP1 DUP1 DUP4 DUP1 RETURN JUMPDEST PUSH1 0x4 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0xC00 JUMPI JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0xC00 JUMPI JUMP JUMPDEST SWAP2 DUP2 PUSH1 0x1F DUP5 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP3 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0xC00 JUMPI PUSH1 0x20 DUP4 DUP2 DUP7 ADD SWAP6 ADD ADD GT PUSH2 0xC00 JUMPI JUMP JUMPDEST PUSH1 0xA0 PUSH1 0x3 NOT DUP3 ADD SLT PUSH2 0xC00 JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 SUB PUSH2 0xC00 JUMPI SWAP2 PUSH1 0x24 CALLDATALOAD SWAP2 PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0xC00 JUMPI PUSH2 0xC8A SWAP2 PUSH1 0x4 ADD PUSH2 0xC1B JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x64 CALLDATALOAD SWAP1 PUSH1 0x84 CALLDATALOAD SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP1 NOT SWAP2 ADD AND DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0xCB7 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0xCB7 JUMPI PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP1 CALLDATALOAD SWAP1 PUSH2 0xCFF DUP3 PUSH2 0xCCD JUMP JUMPDEST SWAP3 PUSH2 0xD0D PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0xC96 JUMP JUMPDEST DUP3 DUP5 MSTORE PUSH1 0x20 DUP4 DUP4 ADD ADD GT PUSH2 0xC00 JUMPI DUP2 PUSH1 0x0 SWAP3 PUSH1 0x20 DUP1 SWAP4 ADD DUP4 DUP7 ADD CALLDATACOPY DUP4 ADD ADD MSTORE SWAP1 JUMP JUMPDEST SWAP2 DUP2 PUSH1 0x1F DUP5 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP3 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0xC00 JUMPI PUSH1 0x20 DUP1 DUP6 ADD SWAP5 DUP5 PUSH1 0x5 SHL ADD ADD GT PUSH2 0xC00 JUMPI JUMP JUMPDEST SWAP1 PUSH1 0xA0 PUSH1 0x3 NOT DUP4 ADD SLT PUSH2 0xC00 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0xC00 JUMPI DUP4 PUSH2 0xD8B SWAP2 PUSH1 0x4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP4 SWAP1 SWAP4 SWAP3 PUSH1 0x24 CALLDATALOAD DUP4 DUP2 GT PUSH2 0xC00 JUMPI DUP3 PUSH2 0xDA6 SWAP2 PUSH1 0x4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP4 SWAP1 SWAP4 SWAP3 PUSH1 0x44 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0xC00 JUMPI PUSH2 0xC8A SWAP2 PUSH1 0x4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP2 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0xCB7 JUMPI DUP2 PUSH1 0x5 SHL PUSH1 0x40 MLOAD SWAP4 PUSH1 0x20 SWAP4 PUSH2 0xDF4 DUP6 DUP5 ADD DUP8 PUSH2 0xC96 JUMP JUMPDEST DUP6 MSTORE DUP4 DUP1 DUP7 ADD SWAP3 DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0xC00 JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xE17 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP2 CALLDATALOAD DUP2 MSTORE SWAP1 DUP4 ADD SWAP1 DUP4 ADD PUSH2 0xE09 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0x3412D5605AC6CD444957CEDB533E5DACAD6378B4BC819EBE3652188A665066D5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH32 0xB09AA5AEB3702CFD50B6B62BC4532604938F21248A27A1D5CA736082B6819CC1 SWAP1 PUSH1 0xFF AND ISZERO PUSH2 0xE8B JUMPI POP POP JUMP JUMPDEST PUSH1 0x44 SWAP3 POP PUSH1 0x40 MLOAD SWAP2 PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP4 MSTORE PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0xDAE2AA361DFD1CA020A396615627D436107C35EFF9FE7738A3512819782D7069 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 PUSH1 0xFF AND ISZERO PUSH2 0xE8B JUMPI POP POP JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0xE8B JUMPI POP POP JUMP JUMPDEST SWAP1 PUSH1 0x0 SWAP2 DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 DUP5 KECCAK256 SLOAD AND ISZERO PUSH1 0x0 EQ PUSH2 0xFA6 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST POP POP SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x0 SWAP2 DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 DUP5 KECCAK256 SLOAD AND PUSH1 0x0 EQ PUSH2 0xFA6 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0xFF NOT DUP2 SLOAD AND SWAP1 SSTORE PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x1029 SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x1056 SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI PUSH1 0x1 DUP2 EQ SWAP1 DUP2 ISZERO PUSH2 0x106E JUMPI POP SWAP1 JUMP JUMPDEST PUSH1 0x2 SWAP2 POP EQ SWAP1 JUMP JUMPDEST PUSH2 0x107F SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI PUSH1 0x2 EQ SWAP1 JUMP JUMPDEST PUSH2 0x1097 SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI PUSH1 0x3 EQ SWAP1 JUMP JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD DUP1 ISZERO PUSH1 0x0 EQ PUSH2 0x10C3 JUMPI POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 SUB PUSH2 0x10D1 JUMPI POP PUSH1 0x3 SWAP1 JUMP JUMPDEST TIMESTAMP LT ISZERO PUSH2 0x10DD JUMPI PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH1 0x2 SWAP1 JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x20 SWAP4 SWAP3 DUP2 DUP5 MSTORE DUP5 DUP5 ADD CALLDATACOPY PUSH1 0x0 DUP3 DUP3 ADD DUP5 ADD MSTORE PUSH1 0x1F ADD PUSH1 0x1F NOT AND ADD ADD SWAP1 JUMP JUMPDEST SWAP5 PUSH2 0x1139 PUSH2 0x1152 SWAP5 SWAP6 SWAP3 SWAP4 PUSH1 0x40 MLOAD SWAP7 DUP8 SWAP6 PUSH1 0x20 DUP8 ADD SWAP10 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP11 MSTORE PUSH1 0x40 DUP8 ADD MSTORE PUSH1 0xA0 PUSH1 0x60 DUP8 ADD MSTORE PUSH1 0xC0 DUP7 ADD SWAP2 PUSH2 0x10E2 JUMP JUMPDEST SWAP2 PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD MSTORE SUB PUSH1 0x1F NOT DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0xC96 JUMP JUMPDEST MLOAD SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST SWAP7 SWAP3 SWAP5 SWAP1 SWAP7 SWAP6 SWAP2 SWAP6 PUSH1 0x40 MLOAD SWAP7 PUSH1 0x20 SWAP2 DUP3 DUP10 ADD SWAP10 DUP1 PUSH1 0xC0 DUP12 ADD PUSH1 0xA0 DUP14 MSTORE MSTORE PUSH1 0xE0 DUP11 ADD SWAP2 SWAP1 PUSH1 0x0 JUMPDEST DUP2 DUP2 LT PUSH2 0x126E JUMPI POP POP POP PUSH1 0x1F NOT DUP10 DUP3 SUB DUP2 ADD PUSH1 0x40 DUP12 ADD MSTORE DUP9 DUP3 MSTORE SWAP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xFB SHL SUB DUP2 GT PUSH2 0xC00 JUMPI SWAP1 DUP10 SWAP7 SWAP5 SWAP6 SWAP4 SWAP9 SWAP8 SWAP3 SWAP2 PUSH1 0x5 SHL DUP1 SWAP3 DUP11 DUP4 ADD CALLDATACOPY ADD SWAP4 DUP1 DUP9 DUP7 ADD DUP8 DUP8 SUB PUSH1 0x60 DUP10 ADD MSTORE MSTORE PUSH1 0x40 DUP6 ADD SWAP5 PUSH1 0x40 DUP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP6 DUP4 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x1205 JUMPI POP POP POP POP POP POP PUSH2 0x1152 SWAP6 POP PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD MSTORE SUB SWAP1 DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0xC96 JUMP JUMPDEST SWAP2 SWAP4 SWAP7 SWAP9 POP SWAP2 SWAP4 SWAP9 SWAP10 SWAP5 SWAP7 PUSH1 0x3F NOT DUP3 DUP3 SUB ADD DUP5 MSTORE DUP10 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT ISZERO PUSH2 0xC00 JUMPI DUP4 ADD DUP7 DUP2 ADD SWAP2 SWAP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0xC00 JUMPI DUP1 CALLDATASIZE SUB DUP4 SGT PUSH2 0xC00 JUMPI PUSH2 0x1257 DUP9 SWAP3 DUP4 SWAP3 PUSH1 0x1 SWAP6 PUSH2 0x10E2 JUMP JUMPDEST SWAP12 ADD SWAP5 ADD SWAP5 ADD SWAP2 DUP12 SWAP9 SWAP7 SWAP4 SWAP5 SWAP2 SWAP11 SWAP10 SWAP8 SWAP6 SWAP11 PUSH2 0x11DD JUMP JUMPDEST SWAP1 SWAP2 SWAP3 DUP4 CALLDATALOAD SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP3 AND DUP1 SWAP3 SUB PUSH2 0xC00 JUMPI SWAP1 DUP2 MSTORE DUP6 ADD SWAP3 DUP6 ADD SWAP2 SWAP1 PUSH1 0x1 ADD PUSH2 0x117E JUMP JUMPDEST SWAP3 SWAP1 SWAP4 PUSH2 0x12C4 SWAP3 PUSH1 0x80 SWAP6 SWAP9 SWAP8 SWAP7 SWAP9 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP6 MSTORE PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD SWAP2 PUSH2 0x10E2 JUMP JUMPDEST SWAP5 PUSH1 0x60 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH2 0x12DD JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP2 SWAP1 DUP2 LT ISZERO PUSH2 0x1303 JUMPI PUSH1 0x5 SHL ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 SUB PUSH2 0xC00 JUMPI SWAP1 JUMP JUMPDEST SWAP2 SWAP1 DUP2 LT ISZERO PUSH2 0x1303 JUMPI PUSH1 0x5 SHL DUP2 ADD CALLDATALOAD SWAP1 PUSH1 0x1E NOT DUP2 CALLDATASIZE SUB ADD DUP3 SLT ISZERO PUSH2 0xC00 JUMPI ADD SWAP1 DUP2 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0xC00 JUMPI PUSH1 0x20 ADD DUP3 CALLDATASIZE SUB DUP2 SGT PUSH2 0xC00 JUMPI SWAP2 SWAP1 JUMP JUMPDEST SWAP1 PUSH2 0x1378 DUP3 PUSH2 0x1020 JUMP JUMPDEST PUSH2 0x13BF JUMPI PUSH1 0x2 SLOAD DUP1 DUP3 LT PUSH2 0x13A1 JUMPI POP TIMESTAMP ADD SWAP1 DUP2 TIMESTAMP GT PUSH2 0x12DD JUMPI PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE JUMP JUMPDEST PUSH1 0x44 SWAP3 POP PUSH1 0x40 MLOAD SWAP2 PUSH4 0x54336609 PUSH1 0xE0 SHL DUP4 MSTORE PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5EAD8EB5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST PUSH2 0x1403 SWAP5 SWAP3 PUSH1 0x60 SWAP3 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP2 PUSH1 0x40 DUP3 ADD MSTORE ADD SWAP2 PUSH2 0x10E2 JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH2 0x1450 SWAP4 PUSH1 0x0 SWAP4 SWAP3 DUP5 SWAP4 DUP3 PUSH1 0x40 MLOAD SWAP4 DUP5 SWAP3 DUP4 CALLDATACOPY DUP2 ADD DUP6 DUP2 MSTORE SUB SWAP3 GAS CALL RETURNDATASIZE ISZERO PUSH2 0x1453 JUMPI RETURNDATASIZE SWAP1 PUSH2 0x1433 DUP3 PUSH2 0xCCD JUMP JUMPDEST SWAP2 PUSH2 0x1441 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0xC96 JUMP JUMPDEST DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x14E1 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x60 SWAP1 PUSH2 0x14E1 JUMP JUMPDEST PUSH2 0x1464 DUP2 PUSH2 0x1076 JUMP JUMPDEST ISZERO PUSH2 0x14A2 JUMPI POP DUP1 ISZERO ISZERO DUP1 PUSH2 0x1492 JUMPI JUMPDEST PUSH2 0x147A JUMPI POP JUMP JUMPDEST PUSH1 0x24 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x121534C3 PUSH1 0xE3 SHL DUP3 MSTORE PUSH1 0x4 DUP3 ADD MSTORE REVERT JUMPDEST POP PUSH2 0x149C DUP2 PUSH2 0x108E JUMP JUMPDEST ISZERO PUSH2 0x1473 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x5EAD8EB5 PUSH1 0xE0 SHL DUP3 MSTORE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x4 PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH2 0x14CA DUP2 PUSH2 0x1076 JUMP JUMPDEST ISZERO PUSH2 0x14A2 JUMPI PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE JUMP JUMPDEST SWAP1 SWAP2 SWAP1 PUSH2 0x150A JUMPI POP DUP1 MLOAD ISZERO PUSH2 0x14F8 JUMPI DUP1 MLOAD SWAP1 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST JUMP INVALID 0xD8 0xAA 0xF BALANCE SWAP5 SWAP8 BYTE 0x2A GT PUSH7 0x79F7C2090F6939 0xC8 0xD4 0xE0 BYTE 0x2A DUP14 PUSH31 0x41D55E5351469E63A2646970667358221220328B51D9A5EF216EC4F19AE7FB BLOCKHASH RETURNDATASIZE 0xC6 PUSH18 0xEAA3AB5EAFA7CDD9B4ABA6E61A180164736F PUSH13 0x634300081400332F8788117E7E SELFDESTRUCT SAR DUP3 0xE9 0x26 0xEC PUSH26 0x4901D17C78024A50270940304540A733656F0D00000000000000 ","sourceMap":"345:833:49:-:0;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;345:833:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::i;:::-;4429:4:5;4390:45;4429:4;4390:45;:::i;:::-;-1:-1:-1;;;;;;345:833:49;;;;4472:87:5;;-1:-1:-1;4619:13:5;-1:-1:-1;4656:3:5;2232:4:0;;4634:20:5;;;;;4701:12;4675:39;4701:12;;4656:3;4701:12;;;:::i;:::-;1204:26;345:833:49;4675:39:5;:::i;:::-;;4728:40;4755:12;;;;;:::i;:::-;1204:26;345:833:49;4728:40:5;:::i;:::-;;4656:3;:::i;:::-;4619:13;;4634:20;;;;-1:-1:-1;4861:3:5;2232:4:0;;4839:20:5;;;;;4906:12;4880:39;4906:12;;4861:3;4906:12;;;:::i;:::-;1204:26;345:833:49;4880:39:5;:::i;4861:3::-;4824:13;;4839:20;4975:27;345:833:49;4839:20:5;1276:26;4940:20;1276:26;345:833:49;;1276:26:5;-1:-1:-1;1276:26:5;;345:833:49;1276:26:5;;;4975:27;345:833:49;;;;;;;;;4472:87:5;4511:37;;;:::i;:::-;;4472:87;;;345:833:49;-1:-1:-1;345:833:49;;;;;;;;;-1:-1:-1;;345:833:49;;;-1:-1:-1;;;;;345:833:49;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;-1:-1:-1;;;;;345:833:49;;;;;;:::o;:::-;;;;;;;;;;;;-1:-1:-1;;;;;345:833:49;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;2232:4:0;-1:-1:-1;;2232:4:0;;;;;;;:::o;:::-;345:833:49;;;2232:4:0;;;;;;;;1204:26:5;2232:4:0;;1204:26:5;;;;;;;;;;;;:::o;:::-;345:833:49;;;1204:26:5;;;;;;;;6179:316:0;-1:-1:-1;;;;;345:833:49;2232:4:0;345:833:49;;;;;;;;;;2232:4:0;;345:833:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;735:10:30;6370:40:0;-1:-1:-1;;;;;;;;;;;6370:40:0;;;345:833:49;6424:11:0;:::o;6272:217::-;6466:12;;:::o;6179:316::-;-1:-1:-1;;;;;345:833:49;2954:6:0;345:833:49;;;;;;;;;;2954:6:0;;345:833:49;1204:26:5;;345:833:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;735:10:30;6370:40:0;;;345:833:49;6424:11:0;:::o;6272:217::-;6466:12;;;:::o;6179:316::-;-1:-1:-1;;;;;345:833:49;2954:6:0;345:833:49;;;;;;;;;;2954:6:0;;345:833:49;1349:27:5;;345:833:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;735:10:30;6370:40:0;;;345:833:49;6424:11:0;:::o;6179:316::-;-1:-1:-1;;;;;345:833:49;2954:6:0;345:833:49;;;;;;;;;;2954:6:0;;345:833:49;1276:26:5;;345:833:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;735:10:30;6370:40:0;;;345:833:49;6424:11:0;:::o"},"deployedBytecode":{"functionDebugData":{"abi_decode_address":{"entryPoint":3077,"id":null,"parameterSlots":0,"returnSlots":1},"abi_decode_address_10973":{"entryPoint":3050,"id":null,"parameterSlots":0,"returnSlots":1},"abi_decode_addresst_uint256t_bytes_calldatat_bytes32t_bytes32":{"entryPoint":3144,"id":null,"parameterSlots":1,"returnSlots":6},"abi_decode_array_address_dyn_calldata":{"entryPoint":3375,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_array_address_dyn_calldatat_array_uint256_dyn_calldatat_array_bytes_calldata_dyn_calldatat_bytes32t_bytes32":{"entryPoint":3423,"id":null,"parameterSlots":1,"returnSlots":8},"abi_decode_array_uint256_dyn":{"entryPoint":3520,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_bytes":{"entryPoint":3304,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_bytes_calldata":{"entryPoint":3099,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_address_uint256_bytes_calldata":{"entryPoint":5087,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_address_uint256_bytes_calldata_bytes32_uint256":{"entryPoint":4758,"id":null,"parameterSlots":7,"returnSlots":1},"abi_encode_bytes_calldata":{"entryPoint":4322,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_uint256_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"array_allocation_size_bytes":{"entryPoint":3277,"id":null,"parameterSlots":1,"returnSlots":1},"calldata_array_index_access_address_dyn_calldata":{"entryPoint":4851,"id":null,"parameterSlots":3,"returnSlots":1},"calldata_array_index_access_bytes_calldata_dyn_calldata":{"entryPoint":4909,"id":null,"parameterSlots":3,"returnSlots":2},"finalize_allocation":{"entryPoint":3222,"id":null,"parameterSlots":2,"returnSlots":0},"fun_afterCall":{"entryPoint":5313,"id":3777,"parameterSlots":1,"returnSlots":0},"fun_beforeCall":{"entryPoint":5211,"id":3750,"parameterSlots":2,"returnSlots":0},"fun_checkRole":{"entryPoint":3836,"id":114,"parameterSlots":2,"returnSlots":0},"fun_checkRole_10974":{"entryPoint":3622,"id":114,"parameterSlots":1,"returnSlots":0},"fun_checkRole_10977":{"entryPoint":3753,"id":114,"parameterSlots":1,"returnSlots":0},"fun_execute":{"entryPoint":5126,"id":3710,"parameterSlots":4,"returnSlots":0},"fun_getOperationState":{"entryPoint":4262,"id":3211,"parameterSlots":1,"returnSlots":1},"fun_grantRole":{"entryPoint":3885,"id":256,"parameterSlots":2,"returnSlots":1},"fun_hashOperation":{"entryPoint":4355,"id":3248,"parameterSlots":6,"returnSlots":1},"fun_hashOperationBatch":{"entryPoint":4440,"id":3279,"parameterSlots":8,"returnSlots":1},"fun_isOperation":{"entryPoint":4128,"id":3095,"parameterSlots":1,"returnSlots":1},"fun_isOperationDone":{"entryPoint":4238,"id":3153,"parameterSlots":1,"returnSlots":1},"fun_isOperationPending":{"entryPoint":4173,"id":3121,"parameterSlots":1,"returnSlots":1},"fun_isOperationReady":{"entryPoint":4214,"id":3137,"parameterSlots":1,"returnSlots":1},"fun_revokeRole":{"entryPoint":4011,"id":294,"parameterSlots":2,"returnSlots":1},"fun_schedule":{"entryPoint":4974,"id":3485,"parameterSlots":2,"returnSlots":0},"fun_verifyCallResult":{"entryPoint":5345,"id":7077,"parameterSlots":2,"returnSlots":1},"increment_uint256":{"entryPoint":4814,"id":null,"parameterSlots":1,"returnSlots":1},"read_from_calldatat_address":{"entryPoint":4889,"id":null,"parameterSlots":1,"returnSlots":1}},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"60406080815260049081361015610020575b5050361561001e57600080fd5b005b600091823560e01c90816301d5062a14610b0c57816301ffc9a714610a9957816307bd026514610a7057838263134008d3146109c65750816313bc9f20146109a6578163150b7a0214610951578163248a9ca3146109275781632ab0f529146109075781632f2ff15d146108dd57816331d50750146108bd57816336568abe14610877578163584b153e1461084e57816364d62353146107e25781637958004c1461079f5781638065657f1461077d5781638f2a0bb0146105e05781638f61f4f5146105a557816391d148541461055f578163a217fddf14610544578163b08e51c014610509578163b1c5f427146104dd578163bc197c8114610457578163c4d252f514610388578163d45c443514610360578163d547741f1461031b578163e38335e5146101d8578163f23a6e6114610180575063f27a0c9203610011573461017c578160031936011261017c576020906002549051908152f35b5080fd5b8284346101d55760a03660031901126101d55761019b610bea565b506101a4610c05565b50608435906001600160401b0382116101d557506020926101c791369101610ce8565b505163f23a6e6160e01b8152f35b80fd5b90506101e336610d5f565b90989495919392969760008051602061150d8339815191528b528a602052858b208b805260205260ff868c2054161561030d575b838314801590610303575b6102d5575061023a610241918a868a878b888f611158565b988961145b565b885b81811061025757896102548a6114c1565b80f35b80808a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b588a8a6102c86102b08f988c6102a9828e6102a38f6102d09f61029e9185916112f3565b611319565b976112f3565b359561132d565b906102bd82828787611406565b8d51948594856113df565b0390a36112ce565b610243565b85516001624fcdef60e01b031981529081019283526020830185905260408301849052918291506060010390fd5b5084831415610222565b61031633610ea9565b610217565b9190503461035c578060031936011261035c5761035891356103536001610340610c05565b9383875286602052862001543390610efc565b610fab565b5080f35b8280fd5b90503461035c57602036600319011261035c5760209282913581526001845220549051908152f35b9190503461035c57602036600319011261035c578135917ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838085528460205282852033865260205260ff83862054161561043c57506103e68361104d565b156104205750829082825260016020528120557fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb708280a280f35b826044925191635ead8eb560e01b835282015260066024820152fd5b604492519163e2517d3f60e01b835233908301526024820152fd5b8284346101d55760a03660031901126101d557610472610bea565b5061047b610c05565b506001600160401b039060443582811161017c5761049c9036908601610dc0565b5060643582811161017c576104b49036908601610dc0565b506084359182116101d557506020926104cf91369101610ce8565b505163bc197c8160e01b8152f35b50503461017c576020906105026104f336610d5f565b96959095949194939293611158565b9051908152f35b50503461017c578160031936011261017c57602090517ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838152f35b50503461017c578160031936011261017c5751908152602090f35b90503461035c578160031936011261035c578160209360ff92610580610c05565b903582528186528282206001600160a01b039091168252855220549151911615158152f35b50503461017c578160031936011261017c57602090517fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc18152f35b9190503461035c5760c036600319011261035c576001600160401b03908235828111610779576106139036908501610d2f565b936024358481116107755761062b9036908301610d2f565b94604435908111610771576106439036908401610d2f565b606493919335906084359760a4359361065b33610e26565b818b14801590610767575b610739575061067c89848489858f8b908e611158565b99610687858c61136e565b8a8c5b8a8382106106d0578e838e838161069f578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a28180808380f35b610732927f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b6102c88f8c88978f92898f8f8f6107209161071a61029e868094610727996112f3565b9a6112f3565b359861132d565b915196879687611296565b8b9061068a565b88516001624fcdef60e01b031981529081018b81526020810184905260408101929092529081906060010390fd5b50828b1415610666565b8780fd5b8680fd5b8480fd5b50503461017c5760209061050261079336610c48565b94939093929192611103565b83833461017c57602036600319011261017c576107bc83356110a6565b905191838210156107cf57602083838152f35b634e487b7160e01b815260218452602490fd5b9190503461035c57602036600319011261035c5781359130330361083857507f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5906002548151908152836020820152a160025580f35b602491519063e2850c5960e01b82523390820152fd5b8284346101d55760203660031901126101d5575061086e6020923561104d565b90519015158152f35b83833461017c578060031936011261017c57610891610c05565b90336001600160a01b038316036108ae5750610358919235610fab565b5163334bd91960e11b81528390fd5b8284346101d55760203660031901126101d5575061086e60209235611020565b9190503461035c578060031936011261035c5761035891356109026001610340610c05565b610f2d565b8284346101d55760203660031901126101d5575061086e6020923561108e565b90503461035c57602036600319011261035c57816020936001923581528085522001549051908152f35b8284346101d55760803660031901126101d55761096c610bea565b50610975610c05565b50606435906001600160401b0382116101d5575060209261099891369101610ce8565b5051630a85bd0160e11b8152f35b8284346101d55760203660031901126101d5575061086e60209235611076565b610254610a4482610a5a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b58610a3b896109fe36610c48565b60008051602061150d8339815191528b9a9697939598929a528a602052828b208b805260205260ff838c20541615610a62575b8985858a8a611103565b998a988961145b565b610a5083838888611406565b51948594856113df565b0390a36114c1565b610a6b33610ea9565b610a31565b50503461017c578160031936011261017c576020905160008051602061150d8339815191528152f35b90503461035c57602036600319011261035c57359063ffffffff60e01b821680920361035c5760209250630271189760e51b8214918215610ade575b50519015158152f35b909150637965db0b60e01b8114908115610afb575b509038610ad5565b6301ffc9a760e01b14905038610af3565b9190503461035c5760c036600319011261035c57610b28610bea565b90836024356044356001600160401b03811161035c577f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca95610b6c91369101610c1b565b95909160643595610bad6084359760a43590610b8733610e26565b610b958a828d8a8989611103565b9a8b97610ba2848a61136e565b8a5196879687611296565b0390a381610bb9578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a23880808380f35b600435906001600160a01b0382168203610c0057565b600080fd5b602435906001600160a01b0382168203610c0057565b9181601f84011215610c00578235916001600160401b038311610c005760208381860195010111610c0057565b60a0600319820112610c00576004356001600160a01b0381168103610c00579160243591604435906001600160401b038211610c0057610c8a91600401610c1b565b90916064359060843590565b90601f801991011681019081106001600160401b03821117610cb757604052565b634e487b7160e01b600052604160045260246000fd5b6001600160401b038111610cb757601f01601f191660200190565b81601f82011215610c0057803590610cff82610ccd565b92610d0d6040519485610c96565b82845260208383010111610c0057816000926020809301838601378301015290565b9181601f84011215610c00578235916001600160401b038311610c00576020808501948460051b010111610c0057565b9060a0600319830112610c00576001600160401b03600435818111610c005783610d8b91600401610d2f565b93909392602435838111610c005782610da691600401610d2f565b93909392604435918211610c0057610c8a91600401610d2f565b9080601f83011215610c00578135906001600160401b038211610cb7578160051b60405193602093610df485840187610c96565b85528380860192820101928311610c00578301905b828210610e17575050505090565b81358152908301908301610e09565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260409020547fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff1615610e8b575050565b604492506040519163e2517d3f60e01b835260048301526024820152fd5b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d7069602052604090205460008051602061150d8339815191529060ff1615610e8b575050565b80600052600060205260406000209160018060a01b0316918260005260205260ff6040600020541615610e8b575050565b9060009180835282602052604083209160018060a01b03169182845260205260ff60408420541615600014610fa657808352826020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b9060009180835282602052604083209160018060a01b03169182845260205260ff604084205416600014610fa65780835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b611029906110a6565b600481101561103757151590565b634e487b7160e01b600052602160045260246000fd5b611056906110a6565b6004811015611037576001811490811561106e575090565b600291501490565b61107f906110a6565b60048110156110375760021490565b611097906110a6565b60048110156110375760031490565b600052600160205260406000205480156000146110c35750600090565b600181036110d15750600390565b4210156110dd57600190565b600290565b908060209392818452848401376000828201840152601f01601f1916010190565b9461113961115294959293604051968795602087019960018060a01b03168a52604087015260a0606087015260c08601916110e2565b91608084015260a083015203601f198101835282610c96565b51902090565b969294909695919560405196602091828901998060c08b0160a08d525260e08a01919060005b81811061126e57505050601f19898203810160408b0152888252976001600160fb1b038111610c00579089969495939897929160051b80928a830137019380888601878703606089015252604085019460408260051b82010195836000925b848410611205575050505050506111529550608084015260a083015203908101835282610c96565b9193969850919398999496603f198282030184528935601e1984360301811215610c005783018681019190356001600160401b038111610c00578036038313610c0057611257889283926001956110e2565b9b0194019401918b98969394919a9997959a6111dd565b90919283359060018060a01b038216809203610c00579081528501928501919060010161117e565b9290936112c4926080959897969860018060a01b03168552602085015260a0604085015260a08401916110e2565b9460608201520152565b60001981146112dd5760010190565b634e487b7160e01b600052601160045260246000fd5b91908110156113035760051b0190565b634e487b7160e01b600052603260045260246000fd5b356001600160a01b0381168103610c005790565b91908110156113035760051b81013590601e1981360301821215610c005701908135916001600160401b038311610c00576020018236038113610c00579190565b9061137882611020565b6113bf576002548082106113a157504201908142116112dd576000526001602052604060002055565b6044925060405191635433660960e01b835260048301526024820152fd5b604051635ead8eb560e01b81526004810183905260016024820152604490fd5b611403949260609260018060a01b03168252602082015281604082015201916110e2565b90565b61145093600093928493826040519384928337810185815203925af13d15611453573d9061143382610ccd565b916114416040519384610c96565b82523d6000602084013e6114e1565b50565b6060906114e1565b61146481611076565b156114a2575080151580611492575b61147a5750565b6024906040519063121534c360e31b82526004820152fd5b5061149c8161108e565b15611473565b60449060405190635ead8eb560e01b8252600482015260046024820152fd5b6114ca81611076565b156114a25760005260016020526001604060002055565b90919061150a57508051156114f857805190602001fd5b60405163d6bda27560e01b8152600490fd5b56fed8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63a2646970667358221220328b51d9a5ef216ec4f19ae7fb403dc671eaa3ab5eafa7cdd9b4aba6e61a180164736f6c63430008140033","opcodes":"PUSH1 0x40 PUSH1 0x80 DUP2 MSTORE PUSH1 0x4 SWAP1 DUP2 CALLDATASIZE LT ISZERO PUSH2 0x20 JUMPI JUMPDEST POP POP CALLDATASIZE ISZERO PUSH2 0x1E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST STOP JUMPDEST PUSH1 0x0 SWAP2 DUP3 CALLDATALOAD PUSH1 0xE0 SHR SWAP1 DUP2 PUSH4 0x1D5062A EQ PUSH2 0xB0C JUMPI DUP2 PUSH4 0x1FFC9A7 EQ PUSH2 0xA99 JUMPI DUP2 PUSH4 0x7BD0265 EQ PUSH2 0xA70 JUMPI DUP4 DUP3 PUSH4 0x134008D3 EQ PUSH2 0x9C6 JUMPI POP DUP2 PUSH4 0x13BC9F20 EQ PUSH2 0x9A6 JUMPI DUP2 PUSH4 0x150B7A02 EQ PUSH2 0x951 JUMPI DUP2 PUSH4 0x248A9CA3 EQ PUSH2 0x927 JUMPI DUP2 PUSH4 0x2AB0F529 EQ PUSH2 0x907 JUMPI DUP2 PUSH4 0x2F2FF15D EQ PUSH2 0x8DD JUMPI DUP2 PUSH4 0x31D50750 EQ PUSH2 0x8BD JUMPI DUP2 PUSH4 0x36568ABE EQ PUSH2 0x877 JUMPI DUP2 PUSH4 0x584B153E EQ PUSH2 0x84E JUMPI DUP2 PUSH4 0x64D62353 EQ PUSH2 0x7E2 JUMPI DUP2 PUSH4 0x7958004C EQ PUSH2 0x79F JUMPI DUP2 PUSH4 0x8065657F EQ PUSH2 0x77D JUMPI DUP2 PUSH4 0x8F2A0BB0 EQ PUSH2 0x5E0 JUMPI DUP2 PUSH4 0x8F61F4F5 EQ PUSH2 0x5A5 JUMPI DUP2 PUSH4 0x91D14854 EQ PUSH2 0x55F JUMPI DUP2 PUSH4 0xA217FDDF EQ PUSH2 0x544 JUMPI DUP2 PUSH4 0xB08E51C0 EQ PUSH2 0x509 JUMPI DUP2 PUSH4 0xB1C5F427 EQ PUSH2 0x4DD JUMPI DUP2 PUSH4 0xBC197C81 EQ PUSH2 0x457 JUMPI DUP2 PUSH4 0xC4D252F5 EQ PUSH2 0x388 JUMPI DUP2 PUSH4 0xD45C4435 EQ PUSH2 0x360 JUMPI DUP2 PUSH4 0xD547741F EQ PUSH2 0x31B JUMPI DUP2 PUSH4 0xE38335E5 EQ PUSH2 0x1D8 JUMPI DUP2 PUSH4 0xF23A6E61 EQ PUSH2 0x180 JUMPI POP PUSH4 0xF27A0C92 SUB PUSH2 0x11 JUMPI CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 PUSH1 0x2 SLOAD SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST POP DUP1 REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI PUSH2 0x19B PUSH2 0xBEA JUMP JUMPDEST POP PUSH2 0x1A4 PUSH2 0xC05 JUMP JUMPDEST POP PUSH1 0x84 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x1D5 JUMPI POP PUSH1 0x20 SWAP3 PUSH2 0x1C7 SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xCE8 JUMP JUMPDEST POP MLOAD PUSH4 0xF23A6E61 PUSH1 0xE0 SHL DUP2 MSTORE RETURN JUMPDEST DUP1 REVERT JUMPDEST SWAP1 POP PUSH2 0x1E3 CALLDATASIZE PUSH2 0xD5F JUMP JUMPDEST SWAP1 SWAP9 SWAP5 SWAP6 SWAP2 SWAP4 SWAP3 SWAP7 SWAP8 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP12 MSTORE DUP11 PUSH1 0x20 MSTORE DUP6 DUP12 KECCAK256 DUP12 DUP1 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF DUP7 DUP13 KECCAK256 SLOAD AND ISZERO PUSH2 0x30D JUMPI JUMPDEST DUP4 DUP4 EQ DUP1 ISZERO SWAP1 PUSH2 0x303 JUMPI JUMPDEST PUSH2 0x2D5 JUMPI POP PUSH2 0x23A PUSH2 0x241 SWAP2 DUP11 DUP7 DUP11 DUP8 DUP12 DUP9 DUP16 PUSH2 0x1158 JUMP JUMPDEST SWAP9 DUP10 PUSH2 0x145B JUMP JUMPDEST DUP9 JUMPDEST DUP2 DUP2 LT PUSH2 0x257 JUMPI DUP10 PUSH2 0x254 DUP11 PUSH2 0x14C1 JUMP JUMPDEST DUP1 RETURN JUMPDEST DUP1 DUP1 DUP11 PUSH32 0xC2617EFA69BAB66782FA219543714338489C4E9E178271560A91B82C3F612B58 DUP11 DUP11 PUSH2 0x2C8 PUSH2 0x2B0 DUP16 SWAP9 DUP13 PUSH2 0x2A9 DUP3 DUP15 PUSH2 0x2A3 DUP16 PUSH2 0x2D0 SWAP16 PUSH2 0x29E SWAP2 DUP6 SWAP2 PUSH2 0x12F3 JUMP JUMPDEST PUSH2 0x1319 JUMP JUMPDEST SWAP8 PUSH2 0x12F3 JUMP JUMPDEST CALLDATALOAD SWAP6 PUSH2 0x132D JUMP JUMPDEST SWAP1 PUSH2 0x2BD DUP3 DUP3 DUP8 DUP8 PUSH2 0x1406 JUMP JUMPDEST DUP14 MLOAD SWAP5 DUP6 SWAP5 DUP6 PUSH2 0x13DF JUMP JUMPDEST SUB SWAP1 LOG3 PUSH2 0x12CE JUMP JUMPDEST PUSH2 0x243 JUMP JUMPDEST DUP6 MLOAD PUSH1 0x1 PUSH3 0x4FCDEF PUSH1 0xE0 SHL SUB NOT DUP2 MSTORE SWAP1 DUP2 ADD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD DUP6 SWAP1 MSTORE PUSH1 0x40 DUP4 ADD DUP5 SWAP1 MSTORE SWAP2 DUP3 SWAP2 POP PUSH1 0x60 ADD SUB SWAP1 REVERT JUMPDEST POP DUP5 DUP4 EQ ISZERO PUSH2 0x222 JUMP JUMPDEST PUSH2 0x316 CALLER PUSH2 0xEA9 JUMP JUMPDEST PUSH2 0x217 JUMP JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x35C JUMPI PUSH2 0x358 SWAP2 CALLDATALOAD PUSH2 0x353 PUSH1 0x1 PUSH2 0x340 PUSH2 0xC05 JUMP JUMPDEST SWAP4 DUP4 DUP8 MSTORE DUP7 PUSH1 0x20 MSTORE DUP7 KECCAK256 ADD SLOAD CALLER SWAP1 PUSH2 0xEFC JUMP JUMPDEST PUSH2 0xFAB JUMP JUMPDEST POP DUP1 RETURN JUMPDEST DUP3 DUP1 REVERT JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI PUSH1 0x20 SWAP3 DUP3 SWAP2 CALLDATALOAD DUP2 MSTORE PUSH1 0x1 DUP5 MSTORE KECCAK256 SLOAD SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI DUP2 CALLDATALOAD SWAP2 PUSH32 0xFD643C72710C63C0180259ABA6B2D05451E3591A24E58B62239378085726F783 DUP1 DUP6 MSTORE DUP5 PUSH1 0x20 MSTORE DUP3 DUP6 KECCAK256 CALLER DUP7 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF DUP4 DUP7 KECCAK256 SLOAD AND ISZERO PUSH2 0x43C JUMPI POP PUSH2 0x3E6 DUP4 PUSH2 0x104D JUMP JUMPDEST ISZERO PUSH2 0x420 JUMPI POP DUP3 SWAP1 DUP3 DUP3 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE DUP2 KECCAK256 SSTORE PUSH32 0xBAA1EB22F2A492BA1A5FEA61B8DF4D27C6C8B5F3971E63BB58FA14FF72EEDB70 DUP3 DUP1 LOG2 DUP1 RETURN JUMPDEST DUP3 PUSH1 0x44 SWAP3 MLOAD SWAP2 PUSH4 0x5EAD8EB5 PUSH1 0xE0 SHL DUP4 MSTORE DUP3 ADD MSTORE PUSH1 0x6 PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x44 SWAP3 MLOAD SWAP2 PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP4 MSTORE CALLER SWAP1 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI PUSH2 0x472 PUSH2 0xBEA JUMP JUMPDEST POP PUSH2 0x47B PUSH2 0xC05 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 PUSH1 0x44 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x17C JUMPI PUSH2 0x49C SWAP1 CALLDATASIZE SWAP1 DUP7 ADD PUSH2 0xDC0 JUMP JUMPDEST POP PUSH1 0x64 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x17C JUMPI PUSH2 0x4B4 SWAP1 CALLDATASIZE SWAP1 DUP7 ADD PUSH2 0xDC0 JUMP JUMPDEST POP PUSH1 0x84 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0x1D5 JUMPI POP PUSH1 0x20 SWAP3 PUSH2 0x4CF SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xCE8 JUMP JUMPDEST POP MLOAD PUSH4 0xBC197C81 PUSH1 0xE0 SHL DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 PUSH2 0x502 PUSH2 0x4F3 CALLDATASIZE PUSH2 0xD5F JUMP JUMPDEST SWAP7 SWAP6 SWAP1 SWAP6 SWAP5 SWAP2 SWAP5 SWAP4 SWAP3 SWAP4 PUSH2 0x1158 JUMP JUMPDEST SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 MLOAD PUSH32 0xFD643C72710C63C0180259ABA6B2D05451E3591A24E58B62239378085726F783 DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x35C JUMPI DUP2 PUSH1 0x20 SWAP4 PUSH1 0xFF SWAP3 PUSH2 0x580 PUSH2 0xC05 JUMP JUMPDEST SWAP1 CALLDATALOAD DUP3 MSTORE DUP2 DUP7 MSTORE DUP3 DUP3 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP3 MSTORE DUP6 MSTORE KECCAK256 SLOAD SWAP2 MLOAD SWAP2 AND ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 MLOAD PUSH32 0xB09AA5AEB3702CFD50B6B62BC4532604938F21248A27A1D5CA736082B6819CC1 DUP2 MSTORE RETURN JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP3 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x779 JUMPI PUSH2 0x613 SWAP1 CALLDATASIZE SWAP1 DUP6 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP4 PUSH1 0x24 CALLDATALOAD DUP5 DUP2 GT PUSH2 0x775 JUMPI PUSH2 0x62B SWAP1 CALLDATASIZE SWAP1 DUP4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP5 PUSH1 0x44 CALLDATALOAD SWAP1 DUP2 GT PUSH2 0x771 JUMPI PUSH2 0x643 SWAP1 CALLDATASIZE SWAP1 DUP5 ADD PUSH2 0xD2F JUMP JUMPDEST PUSH1 0x64 SWAP4 SWAP2 SWAP4 CALLDATALOAD SWAP1 PUSH1 0x84 CALLDATALOAD SWAP8 PUSH1 0xA4 CALLDATALOAD SWAP4 PUSH2 0x65B CALLER PUSH2 0xE26 JUMP JUMPDEST DUP2 DUP12 EQ DUP1 ISZERO SWAP1 PUSH2 0x767 JUMPI JUMPDEST PUSH2 0x739 JUMPI POP PUSH2 0x67C DUP10 DUP5 DUP5 DUP10 DUP6 DUP16 DUP12 SWAP1 DUP15 PUSH2 0x1158 JUMP JUMPDEST SWAP10 PUSH2 0x687 DUP6 DUP13 PUSH2 0x136E JUMP JUMPDEST DUP11 DUP13 JUMPDEST DUP11 DUP4 DUP3 LT PUSH2 0x6D0 JUMPI DUP15 DUP4 DUP15 DUP4 DUP2 PUSH2 0x69F JUMPI DUP4 DUP1 RETURN JUMPDEST PUSH32 0x20FDA5FD27A1EA7BF5B9567F143AC5470BB059374A27E8F67CB44F946F6D0387 SWAP2 PUSH1 0x20 SWAP2 MLOAD SWAP1 DUP2 MSTORE LOG2 DUP2 DUP1 DUP1 DUP4 DUP1 RETURN JUMPDEST PUSH2 0x732 SWAP3 PUSH32 0x4CF4410CC57040E44862EF0F45F3DD5A5E02DB8EB8ADD648D4B0E236F1D07DCA DUP12 DUP12 PUSH2 0x2C8 DUP16 DUP13 DUP9 SWAP8 DUP16 SWAP3 DUP10 DUP16 DUP16 DUP16 PUSH2 0x720 SWAP2 PUSH2 0x71A PUSH2 0x29E DUP7 DUP1 SWAP5 PUSH2 0x727 SWAP10 PUSH2 0x12F3 JUMP JUMPDEST SWAP11 PUSH2 0x12F3 JUMP JUMPDEST CALLDATALOAD SWAP9 PUSH2 0x132D JUMP JUMPDEST SWAP2 MLOAD SWAP7 DUP8 SWAP7 DUP8 PUSH2 0x1296 JUMP JUMPDEST DUP12 SWAP1 PUSH2 0x68A JUMP JUMPDEST DUP9 MLOAD PUSH1 0x1 PUSH3 0x4FCDEF PUSH1 0xE0 SHL SUB NOT DUP2 MSTORE SWAP1 DUP2 ADD DUP12 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x40 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x60 ADD SUB SWAP1 REVERT JUMPDEST POP DUP3 DUP12 EQ ISZERO PUSH2 0x666 JUMP JUMPDEST DUP8 DUP1 REVERT JUMPDEST DUP7 DUP1 REVERT JUMPDEST DUP5 DUP1 REVERT JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 PUSH2 0x502 PUSH2 0x793 CALLDATASIZE PUSH2 0xC48 JUMP JUMPDEST SWAP5 SWAP4 SWAP1 SWAP4 SWAP3 SWAP2 SWAP3 PUSH2 0x1103 JUMP JUMPDEST DUP4 DUP4 CALLVALUE PUSH2 0x17C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x17C JUMPI PUSH2 0x7BC DUP4 CALLDATALOAD PUSH2 0x10A6 JUMP JUMPDEST SWAP1 MLOAD SWAP2 DUP4 DUP3 LT ISZERO PUSH2 0x7CF JUMPI PUSH1 0x20 DUP4 DUP4 DUP2 MSTORE RETURN JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x21 DUP5 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI DUP2 CALLDATALOAD SWAP2 ADDRESS CALLER SUB PUSH2 0x838 JUMPI POP PUSH32 0x11C24F4EAD16507C69AC467FBD5E4EED5FB5C699626D2CC6D66421DF253886D5 SWAP1 PUSH1 0x2 SLOAD DUP2 MLOAD SWAP1 DUP2 MSTORE DUP4 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x2 SSTORE DUP1 RETURN JUMPDEST PUSH1 0x24 SWAP2 MLOAD SWAP1 PUSH4 0xE2850C59 PUSH1 0xE0 SHL DUP3 MSTORE CALLER SWAP1 DUP3 ADD MSTORE REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x104D JUMP JUMPDEST SWAP1 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST DUP4 DUP4 CALLVALUE PUSH2 0x17C JUMPI DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH2 0x891 PUSH2 0xC05 JUMP JUMPDEST SWAP1 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SUB PUSH2 0x8AE JUMPI POP PUSH2 0x358 SWAP2 SWAP3 CALLDATALOAD PUSH2 0xFAB JUMP JUMPDEST MLOAD PUSH4 0x334BD919 PUSH1 0xE1 SHL DUP2 MSTORE DUP4 SWAP1 REVERT JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x1020 JUMP JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x35C JUMPI PUSH2 0x358 SWAP2 CALLDATALOAD PUSH2 0x902 PUSH1 0x1 PUSH2 0x340 PUSH2 0xC05 JUMP JUMPDEST PUSH2 0xF2D JUMP JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x108E JUMP JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI DUP2 PUSH1 0x20 SWAP4 PUSH1 0x1 SWAP3 CALLDATALOAD DUP2 MSTORE DUP1 DUP6 MSTORE KECCAK256 ADD SLOAD SWAP1 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI PUSH2 0x96C PUSH2 0xBEA JUMP JUMPDEST POP PUSH2 0x975 PUSH2 0xC05 JUMP JUMPDEST POP PUSH1 0x64 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x1D5 JUMPI POP PUSH1 0x20 SWAP3 PUSH2 0x998 SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xCE8 JUMP JUMPDEST POP MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE RETURN JUMPDEST DUP3 DUP5 CALLVALUE PUSH2 0x1D5 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x1D5 JUMPI POP PUSH2 0x86E PUSH1 0x20 SWAP3 CALLDATALOAD PUSH2 0x1076 JUMP JUMPDEST PUSH2 0x254 PUSH2 0xA44 DUP3 PUSH2 0xA5A PUSH32 0xC2617EFA69BAB66782FA219543714338489C4E9E178271560A91B82C3F612B58 PUSH2 0xA3B DUP10 PUSH2 0x9FE CALLDATASIZE PUSH2 0xC48 JUMP JUMPDEST PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP12 SWAP11 SWAP7 SWAP8 SWAP4 SWAP6 SWAP9 SWAP3 SWAP11 MSTORE DUP11 PUSH1 0x20 MSTORE DUP3 DUP12 KECCAK256 DUP12 DUP1 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF DUP4 DUP13 KECCAK256 SLOAD AND ISZERO PUSH2 0xA62 JUMPI JUMPDEST DUP10 DUP6 DUP6 DUP11 DUP11 PUSH2 0x1103 JUMP JUMPDEST SWAP10 DUP11 SWAP9 DUP10 PUSH2 0x145B JUMP JUMPDEST PUSH2 0xA50 DUP4 DUP4 DUP9 DUP9 PUSH2 0x1406 JUMP JUMPDEST MLOAD SWAP5 DUP6 SWAP5 DUP6 PUSH2 0x13DF JUMP JUMPDEST SUB SWAP1 LOG3 PUSH2 0x14C1 JUMP JUMPDEST PUSH2 0xA6B CALLER PUSH2 0xEA9 JUMP JUMPDEST PUSH2 0xA31 JUMP JUMPDEST POP POP CALLVALUE PUSH2 0x17C JUMPI DUP2 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x17C JUMPI PUSH1 0x20 SWAP1 MLOAD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP2 MSTORE RETURN JUMPDEST SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI CALLDATALOAD SWAP1 PUSH4 0xFFFFFFFF PUSH1 0xE0 SHL DUP3 AND DUP1 SWAP3 SUB PUSH2 0x35C JUMPI PUSH1 0x20 SWAP3 POP PUSH4 0x2711897 PUSH1 0xE5 SHL DUP3 EQ SWAP2 DUP3 ISZERO PUSH2 0xADE JUMPI JUMPDEST POP MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST SWAP1 SWAP2 POP PUSH4 0x7965DB0B PUSH1 0xE0 SHL DUP2 EQ SWAP1 DUP2 ISZERO PUSH2 0xAFB JUMPI JUMPDEST POP SWAP1 CODESIZE PUSH2 0xAD5 JUMP JUMPDEST PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ SWAP1 POP CODESIZE PUSH2 0xAF3 JUMP JUMPDEST SWAP2 SWAP1 POP CALLVALUE PUSH2 0x35C JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x35C JUMPI PUSH2 0xB28 PUSH2 0xBEA JUMP JUMPDEST SWAP1 DUP4 PUSH1 0x24 CALLDATALOAD PUSH1 0x44 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x35C JUMPI PUSH32 0x4CF4410CC57040E44862EF0F45F3DD5A5E02DB8EB8ADD648D4B0E236F1D07DCA SWAP6 PUSH2 0xB6C SWAP2 CALLDATASIZE SWAP2 ADD PUSH2 0xC1B JUMP JUMPDEST SWAP6 SWAP1 SWAP2 PUSH1 0x64 CALLDATALOAD SWAP6 PUSH2 0xBAD PUSH1 0x84 CALLDATALOAD SWAP8 PUSH1 0xA4 CALLDATALOAD SWAP1 PUSH2 0xB87 CALLER PUSH2 0xE26 JUMP JUMPDEST PUSH2 0xB95 DUP11 DUP3 DUP14 DUP11 DUP10 DUP10 PUSH2 0x1103 JUMP JUMPDEST SWAP11 DUP12 SWAP8 PUSH2 0xBA2 DUP5 DUP11 PUSH2 0x136E JUMP JUMPDEST DUP11 MLOAD SWAP7 DUP8 SWAP7 DUP8 PUSH2 0x1296 JUMP JUMPDEST SUB SWAP1 LOG3 DUP2 PUSH2 0xBB9 JUMPI DUP4 DUP1 RETURN JUMPDEST PUSH32 0x20FDA5FD27A1EA7BF5B9567F143AC5470BB059374A27E8F67CB44F946F6D0387 SWAP2 PUSH1 0x20 SWAP2 MLOAD SWAP1 DUP2 MSTORE LOG2 CODESIZE DUP1 DUP1 DUP4 DUP1 RETURN JUMPDEST PUSH1 0x4 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0xC00 JUMPI JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0xC00 JUMPI JUMP JUMPDEST SWAP2 DUP2 PUSH1 0x1F DUP5 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP3 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0xC00 JUMPI PUSH1 0x20 DUP4 DUP2 DUP7 ADD SWAP6 ADD ADD GT PUSH2 0xC00 JUMPI JUMP JUMPDEST PUSH1 0xA0 PUSH1 0x3 NOT DUP3 ADD SLT PUSH2 0xC00 JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 SUB PUSH2 0xC00 JUMPI SWAP2 PUSH1 0x24 CALLDATALOAD SWAP2 PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0xC00 JUMPI PUSH2 0xC8A SWAP2 PUSH1 0x4 ADD PUSH2 0xC1B JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x64 CALLDATALOAD SWAP1 PUSH1 0x84 CALLDATALOAD SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP1 NOT SWAP2 ADD AND DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0xCB7 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0xCB7 JUMPI PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP1 CALLDATALOAD SWAP1 PUSH2 0xCFF DUP3 PUSH2 0xCCD JUMP JUMPDEST SWAP3 PUSH2 0xD0D PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0xC96 JUMP JUMPDEST DUP3 DUP5 MSTORE PUSH1 0x20 DUP4 DUP4 ADD ADD GT PUSH2 0xC00 JUMPI DUP2 PUSH1 0x0 SWAP3 PUSH1 0x20 DUP1 SWAP4 ADD DUP4 DUP7 ADD CALLDATACOPY DUP4 ADD ADD MSTORE SWAP1 JUMP JUMPDEST SWAP2 DUP2 PUSH1 0x1F DUP5 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP3 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0xC00 JUMPI PUSH1 0x20 DUP1 DUP6 ADD SWAP5 DUP5 PUSH1 0x5 SHL ADD ADD GT PUSH2 0xC00 JUMPI JUMP JUMPDEST SWAP1 PUSH1 0xA0 PUSH1 0x3 NOT DUP4 ADD SLT PUSH2 0xC00 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0xC00 JUMPI DUP4 PUSH2 0xD8B SWAP2 PUSH1 0x4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP4 SWAP1 SWAP4 SWAP3 PUSH1 0x24 CALLDATALOAD DUP4 DUP2 GT PUSH2 0xC00 JUMPI DUP3 PUSH2 0xDA6 SWAP2 PUSH1 0x4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP4 SWAP1 SWAP4 SWAP3 PUSH1 0x44 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0xC00 JUMPI PUSH2 0xC8A SWAP2 PUSH1 0x4 ADD PUSH2 0xD2F JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH2 0xC00 JUMPI DUP2 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0xCB7 JUMPI DUP2 PUSH1 0x5 SHL PUSH1 0x40 MLOAD SWAP4 PUSH1 0x20 SWAP4 PUSH2 0xDF4 DUP6 DUP5 ADD DUP8 PUSH2 0xC96 JUMP JUMPDEST DUP6 MSTORE DUP4 DUP1 DUP7 ADD SWAP3 DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0xC00 JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xE17 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP2 CALLDATALOAD DUP2 MSTORE SWAP1 DUP4 ADD SWAP1 DUP4 ADD PUSH2 0xE09 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0x3412D5605AC6CD444957CEDB533E5DACAD6378B4BC819EBE3652188A665066D5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH32 0xB09AA5AEB3702CFD50B6B62BC4532604938F21248A27A1D5CA736082B6819CC1 SWAP1 PUSH1 0xFF AND ISZERO PUSH2 0xE8B JUMPI POP POP JUMP JUMPDEST PUSH1 0x44 SWAP3 POP PUSH1 0x40 MLOAD SWAP2 PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP4 MSTORE PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH32 0xDAE2AA361DFD1CA020A396615627D436107C35EFF9FE7738A3512819782D7069 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x150D DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 PUSH1 0xFF AND ISZERO PUSH2 0xE8B JUMPI POP POP JUMP JUMPDEST DUP1 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND ISZERO PUSH2 0xE8B JUMPI POP POP JUMP JUMPDEST SWAP1 PUSH1 0x0 SWAP2 DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 DUP5 KECCAK256 SLOAD AND ISZERO PUSH1 0x0 EQ PUSH2 0xFA6 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0xFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST POP POP SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x0 SWAP2 DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP2 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0xFF PUSH1 0x40 DUP5 KECCAK256 SLOAD AND PUSH1 0x0 EQ PUSH2 0xFA6 JUMPI DUP1 DUP4 MSTORE DUP3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP3 DUP5 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 PUSH1 0xFF NOT DUP2 SLOAD AND SWAP1 SSTORE PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B CALLER SWAP4 DUP1 LOG4 PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x1029 SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x1056 SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI PUSH1 0x1 DUP2 EQ SWAP1 DUP2 ISZERO PUSH2 0x106E JUMPI POP SWAP1 JUMP JUMPDEST PUSH1 0x2 SWAP2 POP EQ SWAP1 JUMP JUMPDEST PUSH2 0x107F SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI PUSH1 0x2 EQ SWAP1 JUMP JUMPDEST PUSH2 0x1097 SWAP1 PUSH2 0x10A6 JUMP JUMPDEST PUSH1 0x4 DUP2 LT ISZERO PUSH2 0x1037 JUMPI PUSH1 0x3 EQ SWAP1 JUMP JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD DUP1 ISZERO PUSH1 0x0 EQ PUSH2 0x10C3 JUMPI POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 SUB PUSH2 0x10D1 JUMPI POP PUSH1 0x3 SWAP1 JUMP JUMPDEST TIMESTAMP LT ISZERO PUSH2 0x10DD JUMPI PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH1 0x2 SWAP1 JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x20 SWAP4 SWAP3 DUP2 DUP5 MSTORE DUP5 DUP5 ADD CALLDATACOPY PUSH1 0x0 DUP3 DUP3 ADD DUP5 ADD MSTORE PUSH1 0x1F ADD PUSH1 0x1F NOT AND ADD ADD SWAP1 JUMP JUMPDEST SWAP5 PUSH2 0x1139 PUSH2 0x1152 SWAP5 SWAP6 SWAP3 SWAP4 PUSH1 0x40 MLOAD SWAP7 DUP8 SWAP6 PUSH1 0x20 DUP8 ADD SWAP10 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP11 MSTORE PUSH1 0x40 DUP8 ADD MSTORE PUSH1 0xA0 PUSH1 0x60 DUP8 ADD MSTORE PUSH1 0xC0 DUP7 ADD SWAP2 PUSH2 0x10E2 JUMP JUMPDEST SWAP2 PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD MSTORE SUB PUSH1 0x1F NOT DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0xC96 JUMP JUMPDEST MLOAD SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST SWAP7 SWAP3 SWAP5 SWAP1 SWAP7 SWAP6 SWAP2 SWAP6 PUSH1 0x40 MLOAD SWAP7 PUSH1 0x20 SWAP2 DUP3 DUP10 ADD SWAP10 DUP1 PUSH1 0xC0 DUP12 ADD PUSH1 0xA0 DUP14 MSTORE MSTORE PUSH1 0xE0 DUP11 ADD SWAP2 SWAP1 PUSH1 0x0 JUMPDEST DUP2 DUP2 LT PUSH2 0x126E JUMPI POP POP POP PUSH1 0x1F NOT DUP10 DUP3 SUB DUP2 ADD PUSH1 0x40 DUP12 ADD MSTORE DUP9 DUP3 MSTORE SWAP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xFB SHL SUB DUP2 GT PUSH2 0xC00 JUMPI SWAP1 DUP10 SWAP7 SWAP5 SWAP6 SWAP4 SWAP9 SWAP8 SWAP3 SWAP2 PUSH1 0x5 SHL DUP1 SWAP3 DUP11 DUP4 ADD CALLDATACOPY ADD SWAP4 DUP1 DUP9 DUP7 ADD DUP8 DUP8 SUB PUSH1 0x60 DUP10 ADD MSTORE MSTORE PUSH1 0x40 DUP6 ADD SWAP5 PUSH1 0x40 DUP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP6 DUP4 PUSH1 0x0 SWAP3 JUMPDEST DUP5 DUP5 LT PUSH2 0x1205 JUMPI POP POP POP POP POP POP PUSH2 0x1152 SWAP6 POP PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD MSTORE SUB SWAP1 DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0xC96 JUMP JUMPDEST SWAP2 SWAP4 SWAP7 SWAP9 POP SWAP2 SWAP4 SWAP9 SWAP10 SWAP5 SWAP7 PUSH1 0x3F NOT DUP3 DUP3 SUB ADD DUP5 MSTORE DUP10 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT ISZERO PUSH2 0xC00 JUMPI DUP4 ADD DUP7 DUP2 ADD SWAP2 SWAP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0xC00 JUMPI DUP1 CALLDATASIZE SUB DUP4 SGT PUSH2 0xC00 JUMPI PUSH2 0x1257 DUP9 SWAP3 DUP4 SWAP3 PUSH1 0x1 SWAP6 PUSH2 0x10E2 JUMP JUMPDEST SWAP12 ADD SWAP5 ADD SWAP5 ADD SWAP2 DUP12 SWAP9 SWAP7 SWAP4 SWAP5 SWAP2 SWAP11 SWAP10 SWAP8 SWAP6 SWAP11 PUSH2 0x11DD JUMP JUMPDEST SWAP1 SWAP2 SWAP3 DUP4 CALLDATALOAD SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP3 AND DUP1 SWAP3 SUB PUSH2 0xC00 JUMPI SWAP1 DUP2 MSTORE DUP6 ADD SWAP3 DUP6 ADD SWAP2 SWAP1 PUSH1 0x1 ADD PUSH2 0x117E JUMP JUMPDEST SWAP3 SWAP1 SWAP4 PUSH2 0x12C4 SWAP3 PUSH1 0x80 SWAP6 SWAP9 SWAP8 SWAP7 SWAP9 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP6 MSTORE PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD SWAP2 PUSH2 0x10E2 JUMP JUMPDEST SWAP5 PUSH1 0x60 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH2 0x12DD JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP2 SWAP1 DUP2 LT ISZERO PUSH2 0x1303 JUMPI PUSH1 0x5 SHL ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 SUB PUSH2 0xC00 JUMPI SWAP1 JUMP JUMPDEST SWAP2 SWAP1 DUP2 LT ISZERO PUSH2 0x1303 JUMPI PUSH1 0x5 SHL DUP2 ADD CALLDATALOAD SWAP1 PUSH1 0x1E NOT DUP2 CALLDATASIZE SUB ADD DUP3 SLT ISZERO PUSH2 0xC00 JUMPI ADD SWAP1 DUP2 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0xC00 JUMPI PUSH1 0x20 ADD DUP3 CALLDATASIZE SUB DUP2 SGT PUSH2 0xC00 JUMPI SWAP2 SWAP1 JUMP JUMPDEST SWAP1 PUSH2 0x1378 DUP3 PUSH2 0x1020 JUMP JUMPDEST PUSH2 0x13BF JUMPI PUSH1 0x2 SLOAD DUP1 DUP3 LT PUSH2 0x13A1 JUMPI POP TIMESTAMP ADD SWAP1 DUP2 TIMESTAMP GT PUSH2 0x12DD JUMPI PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE JUMP JUMPDEST PUSH1 0x44 SWAP3 POP PUSH1 0x40 MLOAD SWAP2 PUSH4 0x54336609 PUSH1 0xE0 SHL DUP4 MSTORE PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5EAD8EB5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST PUSH2 0x1403 SWAP5 SWAP3 PUSH1 0x60 SWAP3 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP2 PUSH1 0x40 DUP3 ADD MSTORE ADD SWAP2 PUSH2 0x10E2 JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH2 0x1450 SWAP4 PUSH1 0x0 SWAP4 SWAP3 DUP5 SWAP4 DUP3 PUSH1 0x40 MLOAD SWAP4 DUP5 SWAP3 DUP4 CALLDATACOPY DUP2 ADD DUP6 DUP2 MSTORE SUB SWAP3 GAS CALL RETURNDATASIZE ISZERO PUSH2 0x1453 JUMPI RETURNDATASIZE SWAP1 PUSH2 0x1433 DUP3 PUSH2 0xCCD JUMP JUMPDEST SWAP2 PUSH2 0x1441 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0xC96 JUMP JUMPDEST DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x14E1 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x60 SWAP1 PUSH2 0x14E1 JUMP JUMPDEST PUSH2 0x1464 DUP2 PUSH2 0x1076 JUMP JUMPDEST ISZERO PUSH2 0x14A2 JUMPI POP DUP1 ISZERO ISZERO DUP1 PUSH2 0x1492 JUMPI JUMPDEST PUSH2 0x147A JUMPI POP JUMP JUMPDEST PUSH1 0x24 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x121534C3 PUSH1 0xE3 SHL DUP3 MSTORE PUSH1 0x4 DUP3 ADD MSTORE REVERT JUMPDEST POP PUSH2 0x149C DUP2 PUSH2 0x108E JUMP JUMPDEST ISZERO PUSH2 0x1473 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x5EAD8EB5 PUSH1 0xE0 SHL DUP3 MSTORE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x4 PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH2 0x14CA DUP2 PUSH2 0x1076 JUMP JUMPDEST ISZERO PUSH2 0x14A2 JUMPI PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE JUMP JUMPDEST SWAP1 SWAP2 SWAP1 PUSH2 0x150A JUMPI POP DUP1 MLOAD ISZERO PUSH2 0x14F8 JUMPI DUP1 MLOAD SWAP1 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST JUMP INVALID 0xD8 0xAA 0xF BALANCE SWAP5 SWAP8 BYTE 0x2A GT PUSH7 0x79F7C2090F6939 0xC8 0xD4 0xE0 BYTE 0x2A DUP14 PUSH31 0x41D55E5351469E63A2646970667358221220328B51D9A5EF216EC4F19AE7FB BLOCKHASH RETURNDATASIZE 0xC6 PUSH18 0xEAA3AB5EAFA7CDD9B4ABA6E61A180164736F PUSH13 0x63430008140033000000000000 ","sourceMap":"345:833:49:-:0;;;;;;;;;;;;-1:-1:-1;345:833:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8013:9:5;345:833:49;;;;;;;;;;;;;;;;;;;-1:-1:-1;;345:833:49;;;;;;:::i;:::-;;;;:::i;:::-;;;;;-1:-1:-1;;;;;345:833:49;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;345:833:49;-1:-1:-1;;;345:833:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;;;;;;;;;;345:833:49;;;;;;;;;;;;;;;;;;;5347:26:5;5343:87;;345:833:49;13397:31:5;;;;;:68;;;345:833:49;13393:184:5;;13600:64;;13691:11;13600:64;;;;;;;;;:::i;:::-;13691:11;;;:::i;:::-;13718:13;13733:18;;;;;;14027:2;;;;:::i;:::-;345:833:49;;13753:3:5;13789:10;;;13953:43;13789:10;;13953:43;13877:11;13789:10;;;13829:9;13789:10;;;;13753:3;13789:10;;;;;;:::i;:::-;;:::i;:::-;13829:9;;:::i;:::-;345:833:49;13877:11:5;;:::i;:::-;13926:7;;;;;;;:::i;:::-;345:833:49;;13953:43:5;;;;;:::i;:::-;;;;13753:3;:::i;:::-;13718:13;;13393:184;345:833:49;;-1:-1:-1;;;;;;13488:78:5;;;;;345:833:49;;;;;;;;;;;;;;;;;;-1:-1:-1;345:833:49;;13488:78:5;;;13397:68;13432:33;;;;;13397:68;;5343:87;5406:12;735:10:30;5406:12:5;:::i;:::-;5343:87;;345:833:49;;;;;;;;;;;;;;;4747:26:0;345:833:49;;3282:12:0;345:833:49;;;:::i;:::-;;;;;;;;;;3901:22:0;345:833:49;735:10:30;3282:12:0;;:::i;:::-;4747:26;:::i;:::-;;345:833:49;;;;;;;;;;;;;;-1:-1:-1;;345:833:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;345:833:49;;;;;;1349:27:5;;345:833:49;;;;;;;;;735:10:30;345:833:49;;;;;;;;;;3519:23:0;3515:108;;11408:22:5;;;;:::i;:::-;11407:23;11403:230;;345:833:49;;;;;;;;;;;;11680:13:5;;;;345:833:49;;11403:230:5;345:833:49;;;;11453:169:5;;;;;;;;345:833:49;11523:85:5;345:833:49;;;;11453:169:5;3515:108:0;345:833:49;;;3565:47:0;;;;;;735:10:30;3565:47:0;;;345:833:49;;;;;3565:47:0;345:833:49;;;;;;;;-1:-1:-1;;345:833:49;;;;;;:::i;:::-;;;;:::i;:::-;-1:-1:-1;;;;;;345:833:49;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;345:833:49;-1:-1:-1;;;345:833:49;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;1349:27:5;345:833:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;345:833:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1204:26:5;345:833:49;;;;;;;;;;;;-1:-1:-1;;345:833:49;;;;-1:-1:-1;;;;;345:833:49;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;735:10:30;3282:12:0;735:10:30;3282:12:0;:::i;:::-;10138:31:5;;;;;:68;;;345:833:49;10134:184:5;;10341:64;;;;;;;;;;;;:::i;:::-;10429:5;;;;;:::i;:::-;10450:13;;10465:18;;;;;;;10609;;;;;10605:72;;345:833:49;;;10605:72:5;10648:18;345:833:49;;;;;;;10648:18:5;10605:72;;;345:833:49;;;10485:3:5;;10530:10;10509:76;10530:10;;10509:76;10530:10;;;;;;;;;;10542:9;10530:10;;;;;;10553:11;10530:10;;:::i;:::-;10542:9;;:::i;:::-;345:833:49;10553:11:5;;:::i;:::-;345:833:49;;10509:76:5;;;;;:::i;10485:3::-;10450:13;;;;10134:184;345:833:49;;-1:-1:-1;;;;;;10229:78:5;;;;;345:833:49;;;;;;;;;;;;;;;;;;;;;13488:78:5;;;10138:68;10173:33;;;;;10138:68;;345:833:49;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;345:833:49;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;345:833:49;;;;;;;;;;;;;;;;;-1:-1:-1;;345:833:49;;;;;;15620:4:5;;735:10:30;15602:23:5;15598:95;;345:833:49;15707:35:5;345:833:49;15722:9:5;345:833:49;;;;;;;;;;;15707:35:5;15722:9;345:833:49;;;15598:95:5;345:833:49;;;15648:34:5;;;;;;735:10:30;15648:34:5;;;345:833:49;15648:34:5;345:833:49;;;;;;;;-1:-1:-1;;345:833:49;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;735:10:30;;-1:-1:-1;;;;;345:833:49;;5421:34:0;5417:102;;345:833:49;5529:37:0;345:833:49;;;5529:37:0;:::i;5417:102::-;345:833:49;-1:-1:-1;;;5478:30:0;;345:833:49;;5478:30:0;345:833:49;;;;;;;;-1:-1:-1;;345:833:49;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;4330:25:0;345:833:49;;3282:12:0;345:833:49;;;:::i;3282:12:0:-;4330:25;:::i;345:833:49:-;;;;;;;;-1:-1:-1;;345:833:49;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;345:833:49;;;;;;;;;;;;;;;;3901:22:0;345:833:49;;;;;;;;;;;;;;;-1:-1:-1;;345:833:49;;;;;;:::i;:::-;;;;:::i;:::-;;;;;-1:-1:-1;;;;;345:833:49;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;345:833:49;-1:-1:-1;;;345:833:49;;;;;;;;;;;-1:-1:-1;;345:833:49;;;;;;;;;;:::i;:::-;12623:2:5;12490:11;345:833:49;12559:43:5;;12407:56;345:833:49;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;345:833:49;;;;;;;;;;;;;;;;;;;;;;;;;;;5347:26:5;5343:87;;345:833:49;12407:56:5;;;;;;:::i;:::-;12490:11;;;;;:::i;:::-;12536:7;;;;;;:::i;:::-;345:833:49;12559:43:5;;;;;:::i;:::-;;;;12623:2;:::i;5343:87::-;5406:12;735:10:30;5406:12:5;:::i;:::-;5343:87;;345:833:49;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;345:833:49;;;;;;;;;;;-1:-1:-1;;345:833:49;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;775:49:20;;;:89;;;;345:833:49;;;;;;;;;775:89:20;2688:32:0;;-1:-1:-1;;;;2673:47:0;;;:87;;;;775:89:20;;;;;;2673:87:0;-1:-1:-1;;;862:40:41;;-1:-1:-1;2673:87:0;;;345:833:49;;;;;;;;;-1:-1:-1;;345:833:49;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;345:833:49;;;;9438:61:5;345:833:49;;;;;;;:::i;:::-;;;;;;;9438:61:5;345:833:49;;;;;735:10:30;3282:12:0;735:10:30;3282:12:0;:::i;:::-;9340:53:5;;;;;;;;:::i;:::-;9417:5;;;;;;;:::i;:::-;345:833:49;;9438:61:5;;;;;:::i;:::-;;;;9513:18;9509:72;;345:833:49;;;9509:72:5;9552:18;345:833:49;;;;;;;9552:18:5;9509:72;;;345:833:49;;;;;;;-1:-1:-1;;;;;345:833:49;;;;;;:::o;:::-;;;;;;;;-1:-1:-1;;;;;345:833:49;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;345:833:49;;;;;;;;;;;;;;;:::o;:::-;;-1:-1:-1;;345:833:49;;;;;;;-1:-1:-1;;;;;345:833:49;;;;;;;;;;;;;-1:-1:-1;;;;;345:833:49;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;345:833:49;;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;345:833:49;;;;;;-1:-1:-1;;345:833:49;;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;345:833:49;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;345:833:49;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;345:833:49;;;;;-1:-1:-1;;;;;345:833:49;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;345:833:49;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;3432:197:0;-1:-1:-1;;;;;345:833:49;2954:6:0;345:833:49;;;;;;;;;;1204:26:5;;345:833:49;;3519:23:0;3515:108;;3432:197;;:::o;3515:108::-;345:833:49;;;;;3565:47:0;;;;;;;;;345:833:49;;;;;3565:47:0;3432:197;-1:-1:-1;;;;;345:833:49;2954:6:0;345:833:49;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1276:26:5;345:833:49;;3519:23:0;3515:108;;3432:197;;:::o;:::-;345:833:49;2954:6:0;345:833:49;2954:6:0;345:833:49;;;2954:6:0;345:833:49;;;;;;;;;;2954:6:0;345:833:49;;;;;2954:6:0;345:833:49;;;3519:23:0;3515:108;;3432:197;;:::o;6179:316::-;;2954:6;345:833:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6276:23:0;6272:217;345:833:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6370:40:0;735:10:30;6370:40:0;;;345:833:49;6424:11:0;:::o;6272:217::-;6466:12;;;:::o;6732:317::-;;2954:6;345:833:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6826:217:0;345:833:49;;;;;;;;;;;;;;;;;;;;;;;;;;;6924:40:0;735:10:30;6924:40:0;;;345:833:49;6978:11:0;:::o;6006:129:5:-;6083:21;6006:129;6083:21;:::i;:::-;345:833:49;;;;;;6083:45:5;;6006:129;:::o;345:833:49:-;;;;6108:20:5;345:833:49;;;;;6108:20:5;345:833:49;6270:209:5;6370:21;6270:209;6370:21;:::i;:::-;345:833:49;;;;;;6417:22:5;6408:31;;:64;;;;;6401:71;6270:209;:::o;6408:64::-;6452:20;6443:29;;;6270:209;:::o;6615:134::-;6697:21;6615:134;6697:21;:::i;:::-;345:833:49;;;;;;6722:20:5;6697:45;6615:134;:::o;6828:132::-;6909:21;6828:132;6909:21;:::i;:::-;345:833:49;;;;;;6934:19:5;6909:44;6828:132;:::o;7278:460::-;-1:-1:-1;345:833:49;7197:11:5;345:833:49;;;-1:-1:-1;345:833:49;;7422:14:5;;7418:314;7422:14;;;7452:27;-1:-1:-1;7452:27:5;:::o;7418:314::-;7197:11;7500:28;;7197:11;;7544:26;7551:19;7544:26;:::o;7496:236::-;7603:15;-1:-1:-1;7603:15:5;;;7197:11;7634:29;:::o;7587:145::-;7701:20;7694:27;:::o;345:833:49:-;;;;;;;;;;;;;-1:-1:-1;345:833:49;;;;;;;;-1:-1:-1;;345:833:49;;;;:::o;8142:279:5:-;;345:833:49;8363:50:5;8142:279;;;;345:833:49;;8363:50:5;;;;;;345:833:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;8363:50:5;345:833:49;;8363:50:5;;;;;;:::i;:::-;345:833:49;8353:61:5;;8142:279;:::o;8537:320::-;;;;;;;;;345:833:49;;8793:56:5;;;;;;345:833:49;;;;;;;;;;;;;;-1:-1:-1;345:833:49;;;;;;-1:-1:-1;;;;;345:833:49;;;;;;;;;;;;;-1:-1:-1;;;;;345:833:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;345:833:49;;;;;;;;;;;;;8793:56:5;345:833:49;;;;;;;;;;8793:56:5;;;;;;;;:::i;345:833:49:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;345:833:49;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::o;:::-;-1:-1:-1;;345:833:49;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;345:833:49;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;345:833:49;;;;;;;;;;;;;;;:::o;10784:399:5:-;;10852:15;;;:::i;:::-;10848:131;;8013:9;345:833:49;11034:16:5;;;11030:96;;11153:15;;345:833:49;11153:15:5;;;345:833:49;;;-1:-1:-1;345:833:49;11135:11:5;345:833:49;;;-1:-1:-1;345:833:49;;10784:399:5:o;11030:96::-;345:833:49;;;;;11073:42:5;;;;;;;;;345:833:49;;;;;11073:42:5;10848:131;345:833:49;;-1:-1:-1;;;10890:78:5;;345:833:49;10890:78:5;;345:833:49;;;;;;;;;;10890:78:5;345:833:49;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;14100:232:5:-;14280:45;14100:232;14239:31;14100:232;;;;345:833:49;;;;;;;;;;;;;14239:31:5;;;;345:833:49;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;14239:31:5;345:833:49;;;;14280:45:5;:::i;:::-;;14100:232::o;345:833:49:-;;;14280:45:5;:::i;14415:367::-;14497:20;;;:::i;:::-;14496:21;14492:137;;14642:25;;;;:58;;;14415:367;14638:138;;14415:367;:::o;14638:138::-;345:833:49;;;;14723:42:5;;;;;;;;;345:833:49;14723:42:5;14642:58;14672:28;;;;:::i;:::-;14671:29;14642:58;;14492:137;345:833:49;;;;11453:169:5;;;;14540:78;;345:833:49;14540:78:5;;345:833:49;;;;;;14540:78:5;14864:236;14919:20;;;:::i;:::-;14918:21;14914:137;;-1:-1:-1;345:833:49;1434:1:5;345:833:49;;1434:1:5;345:833:49;-1:-1:-1;345:833:49;;14864:236:5:o;5221:224:29:-;;;;5337:8;;-1:-1:-1;345:833:49;;5690:21:29;:17;;5815:158;;;;;;5686:354;345:833:49;;-1:-1:-1;;;6010:19:29;;;;;5333:106;5411:17::o"},"methodIdentifiers":{"CANCELLER_ROLE()":"b08e51c0","DEFAULT_ADMIN_ROLE()":"a217fddf","EXECUTOR_ROLE()":"07bd0265","PROPOSER_ROLE()":"8f61f4f5","cancel(bytes32)":"c4d252f5","execute(address,uint256,bytes,bytes32,bytes32)":"134008d3","executeBatch(address[],uint256[],bytes[],bytes32,bytes32)":"e38335e5","getMinDelay()":"f27a0c92","getOperationState(bytes32)":"7958004c","getRoleAdmin(bytes32)":"248a9ca3","getTimestamp(bytes32)":"d45c4435","grantRole(bytes32,address)":"2f2ff15d","hasRole(bytes32,address)":"91d14854","hashOperation(address,uint256,bytes,bytes32,bytes32)":"8065657f","hashOperationBatch(address[],uint256[],bytes[],bytes32,bytes32)":"b1c5f427","isOperation(bytes32)":"31d50750","isOperationDone(bytes32)":"2ab0f529","isOperationPending(bytes32)":"584b153e","isOperationReady(bytes32)":"13bc9f20","onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","onERC721Received(address,address,uint256,bytes)":"150b7a02","renounceRole(bytes32,address)":"36568abe","revokeRole(bytes32,address)":"d547741f","schedule(address,uint256,bytes,bytes32,bytes32,uint256)":"01d5062a","scheduleBatch(address[],uint256[],bytes[],bytes32,bytes32,uint256)":"8f2a0bb0","supportsInterface(bytes4)":"01ffc9a7","updateDelay(uint256)":"64d62353"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"minDelay\",\"type\":\"uint256\"},{\"internalType\":\"address[]\",\"name\":\"proposers\",\"type\":\"address[]\"},{\"internalType\":\"address[]\",\"name\":\"executors\",\"type\":\"address[]\"},{\"internalType\":\"address\",\"name\":\"admin\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"AccessControlBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"neededRole\",\"type\":\"bytes32\"}],\"name\":\"AccessControlUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"delay\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minDelay\",\"type\":\"uint256\"}],\"name\":\"TimelockInsufficientDelay\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payloads\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"TimelockInvalidOperationLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"TimelockUnauthorizedCaller\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"predecessorId\",\"type\":\"bytes32\"}],\"name\":\"TimelockUnexecutedPredecessor\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"TimelockUnexpectedOperationState\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"CallExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"CallSalt\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"predecessor\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"delay\",\"type\":\"uint256\"}],\"name\":\"CallScheduled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"Cancelled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldDuration\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newDuration\",\"type\":\"uint256\"}],\"name\":\"MinDelayChange\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"previousAdminRole\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"newAdminRole\",\"type\":\"bytes32\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"CANCELLER_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DEFAULT_ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXECUTOR_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PROPOSER_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"cancel\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"payload\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"predecessor\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"payloads\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"predecessor\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"executeBatch\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getMinDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getOperationState\",\"outputs\":[{\"internalType\":\"enum TimelockController.OperationState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getTimestamp\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"predecessor\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"hashOperation\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"payloads\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"predecessor\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"hashOperationBatch\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"isOperation\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"isOperationDone\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"isOperationPending\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"isOperationReady\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"predecessor\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"delay\",\"type\":\"uint256\"}],\"name\":\"schedule\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"payloads\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"predecessor\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"delay\",\"type\":\"uint256\"}],\"name\":\"scheduleBatch\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"newDelay\",\"type\":\"uint256\"}],\"name\":\"updateDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"\\u041a\\u043e\\u043d\\u0442\\u0440\\u0430\\u043a\\u0442 \\u0442\\u0430\\u0439\\u043c\\u043b\\u043e\\u043a\\u0430 \\u0434\\u043b\\u044f DAO, \\u043e\\u0431\\u0435\\u0441\\u043f\\u0435\\u0447\\u0438\\u0432\\u0430\\u044e\\u0449\\u0438\\u0439 \\u0437\\u0430\\u0434\\u0435\\u0440\\u0436\\u043a\\u0443 \\u043c\\u0435\\u0436\\u0434\\u0443 \\u043e\\u0434\\u043e\\u0431\\u0440\\u0435\\u043d\\u0438\\u0435\\u043c \\u0438 \\u0438\\u0441\\u043f\\u043e\\u043b\\u043d\\u0435\\u043d\\u0438\\u0435\\u043c \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0439\",\"errors\":{\"AccessControlBadConfirmation()\":[{\"details\":\"The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\"}],\"AccessControlUnauthorizedAccount(address,bytes32)\":[{\"details\":\"The `account` is missing a role.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"TimelockInsufficientDelay(uint256,uint256)\":[{\"details\":\"The schedule operation doesn't meet the minimum delay.\"}],\"TimelockInvalidOperationLength(uint256,uint256,uint256)\":[{\"details\":\"Mismatch between the parameters length for an operation call.\"}],\"TimelockUnauthorizedCaller(address)\":[{\"details\":\"The caller account is not authorized.\"}],\"TimelockUnexecutedPredecessor(bytes32)\":[{\"details\":\"The predecessor to an operation not yet done.\"}],\"TimelockUnexpectedOperationState(bytes32,bytes32)\":[{\"details\":\"The current state of an operation is not as required. The `expectedStates` is a bitmap with the bits enabled for each OperationState enum position counting from right to left. See {_encodeStateBitmap}.\"}]},\"events\":{\"CallExecuted(bytes32,uint256,address,uint256,bytes)\":{\"details\":\"Emitted when a call is performed as part of operation `id`.\"},\"CallSalt(bytes32,bytes32)\":{\"details\":\"Emitted when new proposal is scheduled with non-zero salt.\"},\"CallScheduled(bytes32,uint256,address,uint256,bytes,bytes32,uint256)\":{\"details\":\"Emitted when a call is scheduled as part of operation `id`.\"},\"Cancelled(bytes32)\":{\"details\":\"Emitted when operation `id` is cancelled.\"},\"MinDelayChange(uint256,uint256)\":{\"details\":\"Emitted when the minimum delay for future operations is modified.\"},\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted to signal this.\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call. This account bears the admin role (for the granted role). Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call: - if using `revokeRole`, it is the admin role bearer - if using `renounceRole`, it is the role bearer (i.e. `account`)\"}},\"kind\":\"dev\",\"methods\":{\"cancel(bytes32)\":{\"details\":\"Cancel an operation. Requirements: - the caller must have the 'canceller' role.\"},\"constructor\":{\"details\":\"\\u041a\\u043e\\u043d\\u0441\\u0442\\u0440\\u0443\\u043a\\u0442\\u043e\\u0440\",\"params\":{\"admin\":\"\\u0410\\u0434\\u0440\\u0435\\u0441 \\u0430\\u0434\\u043c\\u0438\\u043d\\u0438\\u0441\\u0442\\u0440\\u0430\\u0442\\u043e\\u0440\\u0430 (\\u043e\\u0431\\u044b\\u0447\\u043d\\u043e \\u0430\\u0434\\u0440\\u0435\\u0441 \\u043d\\u0443\\u043b\\u0435\\u0432\\u043e\\u0439 \\u0434\\u043b\\u044f \\u0434\\u0435\\u0446\\u0435\\u043d\\u0442\\u0440\\u0430\\u043b\\u0438\\u0437\\u0430\\u0446\\u0438\\u0438)\",\"executors\":\"\\u0410\\u0434\\u0440\\u0435\\u0441\\u0430, \\u043a\\u043e\\u0442\\u043e\\u0440\\u044b\\u0435 \\u043c\\u043e\\u0433\\u0443\\u0442 \\u0432\\u044b\\u043f\\u043e\\u043b\\u043d\\u044f\\u0442\\u044c \\u0442\\u0440\\u0430\\u043d\\u0437\\u0430\\u043a\\u0446\\u0438\\u0438\",\"minDelay\":\"\\u041c\\u0438\\u043d\\u0438\\u043c\\u0430\\u043b\\u044c\\u043d\\u0430\\u044f \\u0437\\u0430\\u0434\\u0435\\u0440\\u0436\\u043a\\u0430 \\u0432 \\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u0430\\u0445 \\u043f\\u0435\\u0440\\u0435\\u0434 \\u0432\\u044b\\u043f\\u043e\\u043b\\u043d\\u0435\\u043d\\u0438\\u0435\\u043c \\u0442\\u0440\\u0430\\u043d\\u0437\\u0430\\u043a\\u0446\\u0438\\u0438\",\"proposers\":\"\\u0410\\u0434\\u0440\\u0435\\u0441\\u0430, \\u043a\\u043e\\u0442\\u043e\\u0440\\u044b\\u0435 \\u043c\\u043e\\u0433\\u0443\\u0442 \\u043f\\u0440\\u0435\\u0434\\u043b\\u0430\\u0433\\u0430\\u0442\\u044c \\u0442\\u0440\\u0430\\u043d\\u0437\\u0430\\u043a\\u0446\\u0438\\u0438\"}},\"execute(address,uint256,bytes,bytes32,bytes32)\":{\"details\":\"Execute an (ready) operation containing a single transaction. Emits a {CallExecuted} event. Requirements: - the caller must have the 'executor' role.\"},\"executeBatch(address[],uint256[],bytes[],bytes32,bytes32)\":{\"details\":\"Execute an (ready) operation containing a batch of transactions. Emits one {CallExecuted} event per transaction in the batch. Requirements: - the caller must have the 'executor' role.\"},\"getMinDelay()\":{\"details\":\"Returns the minimum delay in seconds for an operation to become valid. This value can be changed by executing an operation that calls `updateDelay`.\"},\"getOperationState(bytes32)\":{\"details\":\"Returns operation state.\"},\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {_setRoleAdmin}.\"},\"getTimestamp(bytes32)\":{\"details\":\"Returns the timestamp at which an operation becomes ready (0 for unset operations, 1 for done operations).\"},\"grantRole(bytes32,address)\":{\"details\":\"Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleGranted} event.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"hashOperation(address,uint256,bytes,bytes32,bytes32)\":{\"details\":\"Returns the identifier of an operation containing a single transaction.\"},\"hashOperationBatch(address[],uint256[],bytes[],bytes32,bytes32)\":{\"details\":\"Returns the identifier of an operation containing a batch of transactions.\"},\"isOperation(bytes32)\":{\"details\":\"Returns whether an id corresponds to a registered operation. This includes both Waiting, Ready, and Done operations.\"},\"isOperationDone(bytes32)\":{\"details\":\"Returns whether an operation is done or not.\"},\"isOperationPending(bytes32)\":{\"details\":\"Returns whether an operation is pending or not. Note that a \\\"pending\\\" operation may also be \\\"ready\\\".\"},\"isOperationReady(bytes32)\":{\"details\":\"Returns whether an operation is ready for execution. Note that a \\\"ready\\\" operation is also \\\"pending\\\".\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Always returns `IERC721Receiver.onERC721Received.selector`.\"},\"renounceRole(bytes32,address)\":{\"details\":\"Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been revoked `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`. May emit a {RoleRevoked} event.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleRevoked} event.\"},\"schedule(address,uint256,bytes,bytes32,bytes32,uint256)\":{\"details\":\"Schedule an operation containing a single transaction. Emits {CallSalt} if salt is nonzero, and {CallScheduled}. Requirements: - the caller must have the 'proposer' role.\"},\"scheduleBatch(address[],uint256[],bytes[],bytes32,bytes32,uint256)\":{\"details\":\"Schedule an operation containing a batch of transactions. Emits {CallSalt} if salt is nonzero, and one {CallScheduled} event per transaction in the batch. Requirements: - the caller must have the 'proposer' role.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"updateDelay(uint256)\":{\"details\":\"Changes the minimum timelock duration for future operations. Emits a {MinDelayChange} event. Requirements: - the caller must be the timelock itself. This can only be achieved by scheduling and later executing an operation where the timelock is the target and the data is the ABI-encoded call to this function.\"}},\"title\":\"GovernanceTimelock\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/GovernanceTimelock.sol\":\"GovernanceTimelock\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xc1bebdee8943bd5e9ef1e0f2e63296aa1dd4171a66b9e74d0286220e891e1458\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://928cf2f0042c606f3dcb21bd8a272573f462a215cd65285d2d6b407f31e9bd67\",\"dweb:/ipfs/QmWGxjckno6sfjHPX5naPnsfsyisgy4PJDf46eLw9umfpx\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0x4d9a2b261b56a1e4a37bb038151dec98b952fed16de2bdfdda27e38e2b12b530\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f724110f7aeb6151af800ab8c12e6060b29bda9e013f0ccb331eb754d6a7cbf0\",\"dweb:/ipfs/QmUcjzCZpxtUPdEThtAzE1f9LvuJiUGZxTdH9N6bHrb5Cf\"]},\"@openzeppelin/contracts/governance/TimelockController.sol\":{\"keccak256\":\"0x42ce53c97c0d57628662c1a6e277a6eee113aeedd0cae61805e0513ac2866daf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fff5babafc1100625c7f60ee3694fe98b73446992211a30dbfbc2b98cced16\",\"dweb:/ipfs/QmRU8ThthE6USLbEgLNf6jVKp36qJNAkzDZ5RBoYSN7bLC\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol\":{\"keccak256\":\"0xe103e95f854ef0cd1bba5f469175f67cd332f5c2561941f165e3dd65cee94d6d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6cf8cc5d07cf8003255f9d766fe8188b9f6e33b6240e126a605f0d061566b23e\",\"dweb:/ipfs/Qmd7okDCSoUt1L4G9hmb5c4W8kWUnfpAa2jyBKUp4xKErd\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol\":{\"keccak256\":\"0xaad20f8713b5cd98114278482d5d91b9758f9727048527d582e8e88fd4901fd8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5396e8dbb000c2fada59b7d2093b9c7c870fd09413ab0fdaba45d882959c6244\",\"dweb:/ipfs/QmXQn5XckSiUsUBpMYuiFeqnojRX4rKa9jmgjCPeTuPmhh\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"contracts/GovernanceTimelock.sol\":{\"keccak256\":\"0xdaf34290781f39eea8ef740a8ee3dbacdd740164af8a96b54e55a3ea5b43877a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3941a06276ea3cbfd8a354a16fd97f7870618298f885820f8188e370d13f6f04\",\"dweb:/ipfs/QmYFxMQ7yXwUcYZh9ZLzNdYGYf4TFojtgqME8Fqw7RFpkX\"]}},\"version\":1}"}},"contracts/GovernanceToken.sol":{"GovernanceToken":{"abi":[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CheckpointUnorderedInsertion","type":"error"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"uint256","name":"increasedSupply","type":"uint256"},{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"ERC20ExceededSafeSupply","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"uint48","name":"clock","type":"uint48"}],"name":"ERC5805FutureLookup","type":"error"},{"inputs":[],"name":"ERC6372InconsistentClock","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"inputs":[{"internalType":"uint256","name":"expiry","type":"uint256"}],"name":"VotesExpiredSignature","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousVotes","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotes","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"pos","type":"uint32"}],"name":"checkpoints","outputs":[{"components":[{"internalType":"uint48","name":"_key","type":"uint48"},{"internalType":"uint208","name":"_value","type":"uint208"}],"internalType":"struct Checkpoints.Checkpoint208","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"partners","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintInitialSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"abi_decode_string_fromMemory":{"entryPoint":1267,"id":null,"parameterSlots":2,"returnSlots":1},"copy_memory_to_memory_with_cleanup":{"entryPoint":1230,"id":null,"parameterSlots":3,"returnSlots":0},"finalize_allocation":{"entryPoint":1194,"id":null,"parameterSlots":2,"returnSlots":0},"fun_toShortStringWithFallback":{"entryPoint":1358,"id":7428,"parameterSlots":1,"returnSlots":1},"fun_toShortStringWithFallback_10491":{"entryPoint":1779,"id":7428,"parameterSlots":1,"returnSlots":1}},"generatedSources":[],"linkReferences":{},"object":"610160604081815234620004a55762002c098038038091620000228286620004aa565b84398201606083820312620004a55782516001600160401b039190828111620004a5578162000053918601620004f3565b9160209182860151828111620004a557859162000072918801620004f3565b9501516001600160a01b03808216929091839003620004a55785519386850185811083821117620003a457875260019485815281810195603160f81b87528751848111620003a45760038054918383811c931680156200049a575b868410146200048457601f9283811162000439575b508086848211600114620003c657600091620003ba575b5060001982841b1c191690841b1781555b8b5191868311620003a45760049c8d548581811c9116801562000399575b8882101462000384578e83821162000339575b50508d87928511600114620002ce5750938394918492600095620002c2575b50501b92600019911b1c19161789555b62000175876200054e565b956101209687526200018782620006f3565b97610140988952838151910120918260e0525190209861010099808b524660a0528951938401927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f84528a85015260608401524660808401523060a084015260a0835260c083019383851090851117620002ad5750828852815190206080523060c052831562000296575050600b80546001600160a01b031981168417909155945194167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a36123be93846200084b853960805184611796015260a05184611851015260c05184611760015260e051846117e50152518361180b015251826107750152518161079e0152f35b631e4fbdf760e01b8252600060c490910152602490fd5b604190634e487b7160e01b6000525260246000fd5b0151935038806200015a565b929190601f1985169360005284886000209460005b8a8983831062000321575050501062000306575b50505050811b0189556200016a565b01519060f884600019921b161c1916905538808080620002f7565b868601518955909701969485019488935001620002e3565b600052876000208380870160051c8201928a88106200037a575b0160051c019086905b8281106200036d5750508e6200013b565b600081550186906200035c565b9250819262000353565b60228f634e487b7160e01b6000525260246000fd5b90607f169062000128565b634e487b7160e01b600052604160045260246000fd5b90508b015138620000f9565b8592508c90601f1983168560005289600020928a6000915b83831062000417575050508311620003fe575b5050811b0181556200010a565b8d015160001983861b60f8161c191690553880620003f1565b948482949597989293960151815501940192019087949392918f8b90620003de565b82600052866000208480840160051c8201928985106200047a575b0160051c019085905b8281106200046d575050620000e2565b600081550185906200045d565b9250819262000454565b634e487b7160e01b600052602260045260246000fd5b92607f1692620000cd565b600080fd5b601f909101601f19168101906001600160401b03821190821017620003a457604052565b60005b838110620004e25750506000910152565b8181015183820152602001620004d1565b81601f82011215620004a55780516001600160401b038111620003a457604051926200052a601f8301601f191660200185620004aa565b81845260208284010111620004a5576200054b9160208085019101620004ce565b90565b80516020919082811015620005ce575090601f8251116200058c57808251920151908083106200057d57501790565b82600019910360031b1b161790565b604490620005c09260405193849263305a27a960e01b845280600485015282519283918260248701528686019101620004ce565b601f01601f19168101030190fd5b6001600160401b038111620003a4576005928354926001938481811c91168015620006e8575b838210146200048457601f8111620006b1575b5081601f84116001146200064757509282939183926000946200063b575b50501b916000199060031b1c191617905560ff90565b01519250388062000625565b919083601f1981168760005284600020946000905b888383106200069657505050106200067c575b505050811b01905560ff90565b015160001960f88460031b161c191690553880806200066f565b8587015188559096019594850194879350908101906200065c565b8560005284601f846000209201871c820191601f8601881c015b828110620006db57505062000607565b60008155018590620006cb565b90607f1690620005f4565b805160209081811015620007205750601f8251116200058c57808251920151908083106200057d57501790565b906001600160401b038211620003a457600654926001938481811c911680156200083f575b838210146200048457601f811162000805575b5081601f84116001146200079957509282939183926000946200078d575b50501b916000199060031b1c19161760065560ff90565b01519250388062000776565b919083601f198116600660005284600020946000905b88838310620007ea5750505010620007d0575b505050811b0160065560ff90565b015160001960f88460031b161c19169055388080620007c2565b858701518855909601959485019487935090810190620007af565b600660005284601f84600020920160051c820191601f860160051c015b8281106200083257505062000758565b6000815501859062000822565b90607f16906200074556fe6080604052600436101561001257600080fd5b60003560e01c806306fdde03146101c7578063095ea7b3146101c257806318160ddd146101bd57806323b872dd146101b8578063313ce567146101b35780633644e515146101ae5780633a46b1a8146101a95780634bf5d7e9146101a4578063587cde1e1461019f5780635c19a95c1461019a5780636fcfff451461019557806370a0823114610190578063715018a61461018b5780637ecebe001461018657806384b0196e146101815780638da5cb5b1461017c5780638e539e8c1461017757806391ddadf41461017257806395d89b411461016d5780639ab24eb0146101685780639df2c95d14610163578063a9059cbb1461015e578063c3cda52014610159578063d505accf14610154578063dd62ed3e1461014f578063f1127ed81461014a5763f2fde38b1461014557600080fd5b610f90565b610edd565b610e85565b610d51565b610c88565b610c42565b610b98565b610a1d565b610976565b61094a565b61087b565b610852565b61075a565b610720565b6106ff565b6106c6565b61065e565b61063a565b6105ff565b61056d565b610485565b610462565b610446565b610399565b61037b565b61034a565b610220565b919082519283825260005b8481106101f8575050826000602080949584010152601f8019910116010190565b6020818301810151848301820152016101d7565b90602061021d9281815201906101cc565b90565b34610305576000806003193601126103025760405190806003546102438161135f565b808552916001918083169081156102d8575060011461027d575b6102798561026d81870382610af1565b6040519182918261020c565b0390f35b9250600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8284106102c057505050810160200161026d8261027961025d565b805460208587018101919091529093019281016102a5565b8695506102799693506020925061026d94915060ff191682840152151560051b820101929361025d565b80fd5b600080fd5b600435906001600160a01b038216820361030557565b602435906001600160a01b038216820361030557565b35906001600160a01b038216820361030557565b346103055760403660031901126103055761037061036661030a565b60243590336114ab565b602060405160018152f35b34610305576000366003190112610305576020600254604051908152f35b34610305576060366003190112610305576103b261030a565b6103ba610320565b6001600160a01b03821660009081526001602090815260408083203384529091529020604435919054926000198410610404575b6103f89350611399565b60405160018152602090f35b8284106104205761041b836103f89503338361155f565b6103ee565b604051637dc7a0d960e11b81523360048201526024810185905260448101849052606490fd5b3461030557600036600319011261030557602060405160128152f35b3461030557600036600319011261030557602061047d61175d565b604051908152f35b34610305576040366003190112610305576001600160a01b036104a661030a565b166000908152600960205260408120906104c160243561109e565b91805482938160058111610513575b50906020946104df9284611f9a565b806104f95750505b6040516001600160d01b039091168152f35b91610505849293611ab5565b92815220015460301c6104e7565b9461051d86611aff565b8603958611610568576020956104df9385875265ffffffffffff80838a8a20015416908516106000146105565750915b919250946104d0565b92915061056290611ac4565b9061054d565b611349565b346103055760003660031901126103055761058743611a83565b65ffffffffffff8061059843611a83565b169116036105ed576102796040516105af81610a7c565b601d81527f6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c7400000060208201526040519182916020835260208301906101cc565b6040516301bfc1c560e61b8152600490fd5b346103055760203660031901126103055760206001600160a01b038061062361030a565b166000526008825260406000205416604051908152f35b346103055760203660031901126103055761065c61065661030a565b336110df565b005b34610305576020366003190112610305576001600160a01b0361067f61030a565b16600052600960205260406000205463ffffffff908181116106a75760209160405191168152f35b604490604051906306dfcc6560e41b8252602060048301526024820152fd5b3461030557602036600319011261030557602061047d6106e461030a565b6001600160a01b031660009081526020819052604090205490565b346103055760003660031901126103055761071861102e565b61065c61105a565b34610305576020366003190112610305576001600160a01b0361074161030a565b1660005260076020526020604060002054604051908152f35b346103055760008060031936011261030257610804906107997f000000000000000000000000000000000000000000000000000000000000000061189d565b6107c27f0000000000000000000000000000000000000000000000000000000000000000611996565b91604051916107d083610a9d565b818352604051948594600f60f81b86526107f660209360e08589015260e08801906101cc565b9086820360408801526101cc565b904660608601523060808601528260a086015284820360c08601528080855193848152019401925b82811061083b57505050500390f35b83518552869550938101939281019260010161082c565b3461030557600036600319011261030557600b546040516001600160a01b039091168152602090f35b346103055760203660031901126103055761089760043561109e565b600a549060008291600584116108ef575b6108b29350611f31565b6000816108c757505060405160008152602090f35b600a6108d4602093611ab5565b9152600080516020612369833981519152015460301c6104e7565b91926108fa81611aff565b8103908111610568576108b293600a835265ffffffffffff8083600080516020612369833981519152015416908516106000146109385750916108a8565b92915061094490611ac4565b906108a8565b3461030557600036600319011261030557602061096643611a83565b65ffffffffffff60405191168152f35b34610305576000806003193601126103025760405190806004546109998161135f565b808552916001918083169081156102d857506001146109c2576102798561026d81870382610af1565b9250600483527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610a0557505050810160200161026d8261027961025d565b805460208587018101919091529093019281016109ea565b34610305576020366003190112610305576001600160a01b03610a3e61030a565b166000526009602052602060018060d01b03610a5d6040600020611c74565b16604051908152f35b634e487b7160e01b600052604160045260246000fd5b6040810190811067ffffffffffffffff821117610a9857604052565b610a66565b6020810190811067ffffffffffffffff821117610a9857604052565b60a0810190811067ffffffffffffffff821117610a9857604052565b60c0810190811067ffffffffffffffff821117610a9857604052565b90601f8019910116810190811067ffffffffffffffff821117610a9857604052565b60405190610b2082610a7c565b565b67ffffffffffffffff8111610a985760051b60200190565b81601f8201121561030557803591610b5183610b22565b92610b5f6040519485610af1565b808452602092838086019260051b820101928311610305578301905b828210610b89575050505090565b81358152908301908301610b7b565b346103055760403660031901126103055767ffffffffffffffff6004358181116103055736602382011215610305578060040135610bd581610b22565b91610be36040519384610af1565b81835260209160248385019160051b8301019136831161030557602401905b828210610c2b576024358587821161030557610c2561065c923690600401610b3a565b90611ffb565b838091610c3784610336565b815201910190610c02565b3461030557604036600319011261030557610370610c5e61030a565b6024359033611399565b6064359060ff8216820361030557565b6084359060ff8216820361030557565b346103055760c036600319011261030557610ca161030a565b60443590602435610cb0610c68565b834211610d3857610d2c61065c94610d33926040519060208201927fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf845260018060a01b0388166040840152866060840152608083015260808252610d1482610ab9565b610d2760a4359360843593519020611877565b611608565b91826115b2565b6110df565b604051632341d78760e11b815260048101859052602490fd5b346103055760e036600319011261030557610d6a61030a565b610d72610320565b60443590606435610d81610c78565b814211610e6c576001600160a01b0385811660008181526007602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c99281019283529283019390935292861660608201526080810187905260a081019190915260c080820194909452928352610e25929091610e1260e083610af1565b610d2760c4359360a43593519020611877565b6001600160a01b0384811690821603610e42575061065c926114ab565b6040516325c0072360e11b81526001600160a01b0391821660048201529084166024820152604490fd5b60405163313c898160e11b815260048101839052602490fd5b34610305576040366003190112610305576020610ed4610ea361030a565b610eab610320565b6001600160a01b0391821660009081526001855260408082209290931681526020919091522090565b54604051908152f35b3461030557604036600319011261030557610ef661030a565b6024359063ffffffff821682036103055761027991610f4691610f17611599565b50610f20611599565b506001600160a01b03166000908152600960205260409020610f40611599565b50611cb8565b5060405190610f5482610a7c565b5465ffffffffffff811680835260309190911c60209283019081526040805192835290516001600160d01b031692820192909252918291820190565b3461030557602036600319011261030557610fa961030a565b610fb161102e565b6001600160a01b0390811690811561100557600b54826bffffffffffffffffffffffff60a01b821617600b55167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3005b604051631e4fbdf760e01b815260006004820152602490fd5b61102661102e565b610b2061105a565b600b546001600160a01b0316330361104257565b60405163118cdaa760e01b8152336004820152602490fd5b600b80546001600160a01b031981169091556000906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3565b65ffffffffffff6110ae43611a83565b16808210156110c1575061021d90611a83565b6044925060405191637669fc0f60e11b835260048301526024820152fd5b6001600160a01b03818116600081815260086020526040812080548685166001600160a01b031982168117909255610b209694169461115c9390928691907f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9080a46001600160a01b031660009081526020819052604090205490565b915b6001600160a01b038083169392919081169081851415806112a7575b611186575b5050505050565b8161120b575b50508261119b575b808061117f565b6001600160a01b031660009081526009602052604090207fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724916111e8916111e29091611a50565b906112b0565b604080516001600160d01b039384168152919092166020820152a2388080611194565b6001600160a01b0316600090815260096020526040902061122b84611a50565b61123443611a83565b6001600160d01b0391828061124886611c74565b169116900392828411610568577fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7249361129d9261128492611e75565b6040805192851683529316602082015291829190820190565b0390a2388061118c565b5083151561117a565b906112ba43611a83565b6001600160d01b039182806112ce86611c74565b16911601918211610568576112e292611e75565b9091565b6112ef43611a83565b906001600160d01b03908180611303611c2a565b16911601908111610568576112e291611d8c565b61132043611a83565b906001600160d01b03908180611334611c2a565b1691169003908111611349576112e291611d8c565b634e487b7160e01b600052601160045260246000fd5b90600182811c9216801561138f575b602083101461137957565b634e487b7160e01b600052602260045260246000fd5b91607f169161136e565b6001600160a01b03808216949392919085156114925782168015611479576001600160a01b0382166000908152602081905260409020549584871061144a5784610b209697036113fb8460018060a01b03166000526000602052604060002090565b556001600160a01b0384166000908152602081815260409182902080548801905590518681527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a36122fd565b60405163391434e360e21b81526001600160a01b03841660048201526024810188905260448101869052606490fd5b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b6001600160a01b03808216929190831561154657821693841561152d57806115237f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259461150c60209560018060a01b03166000526001602052604060002090565b9060018060a01b0316600052602052604060002090565b55604051908152a3565b604051634a1406b160e11b815260006004820152602490fd5b60405163e602df0560e01b815260006004820152602490fd5b906001600160a01b03808316156115465781161561152d5761150c6115969260018060a01b03166000526001602052604060002090565b55565b604051906115a682610a7c565b60006020838281520152565b6001600160a01b038116600090815260076020526040902080546001810190915590918190036115e0575050565b6040516301d4b62360e61b81526001600160a01b039092166004830152602482015260449150fd5b9161021d939161161793611620565b909291926116d0565b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084116116a457926020929160ff608095604051948552168484015260408301526060820152600092839182805260015afa156116985780516001600160a01b0381161561168f57918190565b50809160019190565b604051903d90823e3d90fd5b50505060009160039190565b600411156116ba57565b634e487b7160e01b600052602160045260246000fd5b6116d9816116b0565b806116e2575050565b6116eb816116b0565b600181036117055760405163f645eedf60e01b8152600490fd5b61170e816116b0565b6002810361172f5760405163fce698f760e01b815260048101839052602490fd5b8061173b6003926116b0565b146117435750565b6040516335e2f38360e21b81526004810191909152602490fd5b307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316148061184e575b156117b8577f000000000000000000000000000000000000000000000000000000000000000090565b60405160208101907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82527f000000000000000000000000000000000000000000000000000000000000000060408201527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260a0815261184881610ad5565b51902090565b507f0000000000000000000000000000000000000000000000000000000000000000461461178f565b60429061188261175d565b906040519161190160f01b8352600283015260228201522090565b60ff81146118db5760ff811690601f82116118c957604051916118bf83610a7c565b8252602082015290565b604051632cd44ac360e21b8152600490fd5b506040516005548160006118ee8361135f565b808352926001908181169081156119745750600114611915575b5061021d92500382610af1565b6005600090815291507f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db05b848310611959575061021d935050810160200138611908565b81935090816020925483858901015201910190918492611940565b90506020925061021d94915060ff191682840152151560051b82010138611908565b60ff81146119b85760ff811690601f82116118c957604051916118bf83610a7c565b506040516006548160006119cb8361135f565b8083529260019081811690811561197457506001146119f1575061021d92500382610af1565b6006600090815291507ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f5b848310611a35575061021d935050810160200138611908565b81935090816020925483858901015201910190918492611a1c565b6001600160d01b0390818111611a64571690565b604490604051906306dfcc6560e41b825260d060048301526024820152fd5b65ffffffffffff90818111611a96571690565b604490604051906306dfcc6560e41b8252603060048301526024820152fd5b60001981019190821161056857565b906001820180921161056857565b9190820180921161056857565b8115611ae9570490565b634e487b7160e01b600052601260045260246000fd5b600181111561021d57600181600160801b811015611c18575b611bc0611bb6611bac611ba2611b98611b8e611bcc97600488600160401b611bc79a1015611c0b575b640100000000811015611bfe575b62010000811015611bf1575b610100811015611be5575b6010811015611bd9575b1015611bd1575b60030260011c611b87818b611adf565b0160011c90565b611b87818a611adf565b611b878189611adf565b611b878188611adf565b611b878187611adf565b611b878186611adf565b8093611adf565b821190565b900390565b60011b611b77565b811c9160021b91611b70565b60081c91811b91611b66565b60101c9160081b91611b5b565b60201c9160101b91611b4f565b60401c9160201b91611b41565b50600160401b9050608082901c611b18565b600a5460009080611c3c575050600090565b8060001981011161056857600a7fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a79252015460301c90565b805460009181611c8657505050600090565b6000199282848101116105685760209181522001015460301c90565b634e487b7160e01b600052603260045260246000fd5b8054821015611cd05760005260206000200190600090565b611ca2565b600a5490600160401b821015610a98576001820180600a55821015611cd057600a600052805160209091015160301b65ffffffffffff191665ffffffffffff919091161760008051602061236983398151915290910155565b8054600160401b811015610a9857611d4b91600182018155611cb8565b611d7657815160209092015160301b65ffffffffffff191665ffffffffffff92909216919091179055565b634e487b7160e01b600052600060045260246000fd5b600a549192918015611e4b57611da4611dbc91611ab5565b600a6000526000805160206123698339815191520190565b9081549165ffffffffffff90818416918316808311611e3957869203611e0157611dfa92509065ffffffffffff82549181199060301b169116179055565b60301c9190565b5050611e3490611e20611e12610b13565b65ffffffffffff9092168252565b6001600160d01b0385166020820152611cd5565b611dfa565b604051632520601d60e01b8152600490fd5b50611e6f90611e5b611e12610b13565b6001600160d01b0384166020820152611cd5565b60009190565b80549293928015611f0c57611e8c611e9991611ab5565b8260005260206000200190565b9182549265ffffffffffff91828516928116808411611e3957879303611ed85750611dfa92509065ffffffffffff82549181199060301b169116179055565b915050611e3491611ef8611eea610b13565b65ffffffffffff9093168352565b6001600160d01b0386166020830152611d2e565b5090611e6f91611f1d611eea610b13565b6001600160d01b0385166020830152611d2e565b905b828110611f3f57505090565b90918082169080831860011c820180921161056857600a60005265ffffffffffff808360008051602061236983398151915201541690851610600014611f885750915b90611f33565b929150611f9490611ac4565b90611f82565b91905b838210611faa5750505090565b9091928083169080841860011c82018092116105685760008581526020902082015465ffffffffffff9081169084161015611fe95750925b9190611f9d565b939250611ff590611ac4565b91611fe2565b91909161200661102e565b80518351036120c25761201b81511515612100565b6000805b82518210156120b5576120886120af9161206261205b61204f612042878961214a565b516001600160a01b031690565b6001600160a01b031690565b151561215e565b61207761206f858961214a565b511515612199565b612081848861214a565b5190611ad2565b916120aa612099612042838761214a565b6120a3838961214a565b51906121d3565b61213b565b9061201f565b5050509050610b2061101e565b60405162461bcd60e51b8152602060048201526016602482015275082e4e4c2f2e640d8cadccee8d040dad2e6dac2e8c6d60531b6044820152606490fd5b1561210757565b60405162461bcd60e51b815260206004820152600c60248201526b456d7074792061727261797360a01b6044820152606490fd5b60001981146105685760010190565b8051821015611cd05760209160051b010190565b1561216557565b60405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606490fd5b156121a057565b60405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b6044820152606490fd5b91906001600160a01b038316801561147957600254828101809111610568576002556001600160a01b038416600090815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a3600254926001600160d01b03841161225957610b2092935061227f565b604051630e58ae9360e11b8152600481018590526001600160d01b036024820152604490fd5b90610b209161229561229083611a50565b6112e6565b50506001600160a01b039081169081156122e5575b60086020527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c75460009283526040909220548116911661115e565b6122f66122f184611a50565b611317565b50506122aa565b610b2092916001600160a01b03918216919081908315612355575b16918215612342575b6000526008602052806040600020541691600052604060002054169061115e565b61234e6122f185611a50565b5050612321565b61236161229086611a50565b505061231856fec65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8a26469706673582212200116234fdedb856572cf71350ec48e0cd04d30b316abca3f0da91dc1800ce6fa64736f6c63430008140033","opcodes":"PUSH2 0x160 PUSH1 0x40 DUP2 DUP2 MSTORE CALLVALUE PUSH3 0x4A5 JUMPI PUSH3 0x2C09 DUP1 CODESIZE SUB DUP1 SWAP2 PUSH3 0x22 DUP3 DUP7 PUSH3 0x4AA JUMP JUMPDEST DUP5 CODECOPY DUP3 ADD PUSH1 0x60 DUP4 DUP3 SUB SLT PUSH3 0x4A5 JUMPI DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP2 SWAP1 DUP3 DUP2 GT PUSH3 0x4A5 JUMPI DUP2 PUSH3 0x53 SWAP2 DUP7 ADD PUSH3 0x4F3 JUMP JUMPDEST SWAP2 PUSH1 0x20 SWAP2 DUP3 DUP7 ADD MLOAD DUP3 DUP2 GT PUSH3 0x4A5 JUMPI DUP6 SWAP2 PUSH3 0x72 SWAP2 DUP9 ADD PUSH3 0x4F3 JUMP JUMPDEST SWAP6 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND SWAP3 SWAP1 SWAP2 DUP4 SWAP1 SUB PUSH3 0x4A5 JUMPI DUP6 MLOAD SWAP4 DUP7 DUP6 ADD DUP6 DUP2 LT DUP4 DUP3 GT OR PUSH3 0x3A4 JUMPI DUP8 MSTORE PUSH1 0x1 SWAP5 DUP6 DUP2 MSTORE DUP2 DUP2 ADD SWAP6 PUSH1 0x31 PUSH1 0xF8 SHL DUP8 MSTORE DUP8 MLOAD DUP5 DUP2 GT PUSH3 0x3A4 JUMPI PUSH1 0x3 DUP1 SLOAD SWAP2 DUP4 DUP4 DUP2 SHR SWAP4 AND DUP1 ISZERO PUSH3 0x49A JUMPI JUMPDEST DUP7 DUP5 LT EQ PUSH3 0x484 JUMPI PUSH1 0x1F SWAP3 DUP4 DUP2 GT PUSH3 0x439 JUMPI JUMPDEST POP DUP1 DUP7 DUP5 DUP3 GT PUSH1 0x1 EQ PUSH3 0x3C6 JUMPI PUSH1 0x0 SWAP2 PUSH3 0x3BA JUMPI JUMPDEST POP PUSH1 0x0 NOT DUP3 DUP5 SHL SHR NOT AND SWAP1 DUP5 SHL OR DUP2 SSTORE JUMPDEST DUP12 MLOAD SWAP2 DUP7 DUP4 GT PUSH3 0x3A4 JUMPI PUSH1 0x4 SWAP13 DUP14 SLOAD DUP6 DUP2 DUP2 SHR SWAP2 AND DUP1 ISZERO PUSH3 0x399 JUMPI JUMPDEST DUP9 DUP3 LT EQ PUSH3 0x384 JUMPI DUP15 DUP4 DUP3 GT PUSH3 0x339 JUMPI JUMPDEST POP POP DUP14 DUP8 SWAP3 DUP6 GT PUSH1 0x1 EQ PUSH3 0x2CE JUMPI POP SWAP4 DUP4 SWAP5 SWAP2 DUP5 SWAP3 PUSH1 0x0 SWAP6 PUSH3 0x2C2 JUMPI JUMPDEST POP POP SHL SWAP3 PUSH1 0x0 NOT SWAP2 SHL SHR NOT AND OR DUP10 SSTORE JUMPDEST PUSH3 0x175 DUP8 PUSH3 0x54E JUMP JUMPDEST SWAP6 PUSH2 0x120 SWAP7 DUP8 MSTORE PUSH3 0x187 DUP3 PUSH3 0x6F3 JUMP JUMPDEST SWAP8 PUSH2 0x140 SWAP9 DUP10 MSTORE DUP4 DUP2 MLOAD SWAP2 ADD KECCAK256 SWAP2 DUP3 PUSH1 0xE0 MSTORE MLOAD SWAP1 KECCAK256 SWAP9 PUSH2 0x100 SWAP10 DUP1 DUP12 MSTORE CHAINID PUSH1 0xA0 MSTORE DUP10 MLOAD SWAP4 DUP5 ADD SWAP3 PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F DUP5 MSTORE DUP11 DUP6 ADD MSTORE PUSH1 0x60 DUP5 ADD MSTORE CHAINID PUSH1 0x80 DUP5 ADD MSTORE ADDRESS PUSH1 0xA0 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 MSTORE PUSH1 0xC0 DUP4 ADD SWAP4 DUP4 DUP6 LT SWAP1 DUP6 GT OR PUSH3 0x2AD JUMPI POP DUP3 DUP9 MSTORE DUP2 MLOAD SWAP1 KECCAK256 PUSH1 0x80 MSTORE ADDRESS PUSH1 0xC0 MSTORE DUP4 ISZERO PUSH3 0x296 JUMPI POP POP PUSH1 0xB DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP2 AND DUP5 OR SWAP1 SWAP2 SSTORE SWAP5 MLOAD SWAP5 AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x0 DUP1 LOG3 PUSH2 0x23BE SWAP4 DUP5 PUSH3 0x84B DUP6 CODECOPY PUSH1 0x80 MLOAD DUP5 PUSH2 0x1796 ADD MSTORE PUSH1 0xA0 MLOAD DUP5 PUSH2 0x1851 ADD MSTORE PUSH1 0xC0 MLOAD DUP5 PUSH2 0x1760 ADD MSTORE PUSH1 0xE0 MLOAD DUP5 PUSH2 0x17E5 ADD MSTORE MLOAD DUP4 PUSH2 0x180B ADD MSTORE MLOAD DUP3 PUSH2 0x775 ADD MSTORE MLOAD DUP2 PUSH2 0x79E ADD MSTORE RETURN JUMPDEST PUSH4 0x1E4FBDF7 PUSH1 0xE0 SHL DUP3 MSTORE PUSH1 0x0 PUSH1 0xC4 SWAP1 SWAP2 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x41 SWAP1 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADD MLOAD SWAP4 POP CODESIZE DUP1 PUSH3 0x15A JUMP JUMPDEST SWAP3 SWAP2 SWAP1 PUSH1 0x1F NOT DUP6 AND SWAP4 PUSH1 0x0 MSTORE DUP5 DUP9 PUSH1 0x0 KECCAK256 SWAP5 PUSH1 0x0 JUMPDEST DUP11 DUP10 DUP4 DUP4 LT PUSH3 0x321 JUMPI POP POP POP LT PUSH3 0x306 JUMPI JUMPDEST POP POP POP POP DUP2 SHL ADD DUP10 SSTORE PUSH3 0x16A JUMP JUMPDEST ADD MLOAD SWAP1 PUSH1 0xF8 DUP5 PUSH1 0x0 NOT SWAP3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 DUP1 PUSH3 0x2F7 JUMP JUMPDEST DUP7 DUP7 ADD MLOAD DUP10 SSTORE SWAP1 SWAP8 ADD SWAP7 SWAP5 DUP6 ADD SWAP5 DUP9 SWAP4 POP ADD PUSH3 0x2E3 JUMP JUMPDEST PUSH1 0x0 MSTORE DUP8 PUSH1 0x0 KECCAK256 DUP4 DUP1 DUP8 ADD PUSH1 0x5 SHR DUP3 ADD SWAP3 DUP11 DUP9 LT PUSH3 0x37A JUMPI JUMPDEST ADD PUSH1 0x5 SHR ADD SWAP1 DUP7 SWAP1 JUMPDEST DUP3 DUP2 LT PUSH3 0x36D JUMPI POP POP DUP15 PUSH3 0x13B JUMP JUMPDEST PUSH1 0x0 DUP2 SSTORE ADD DUP7 SWAP1 PUSH3 0x35C JUMP JUMPDEST SWAP3 POP DUP2 SWAP3 PUSH3 0x353 JUMP JUMPDEST PUSH1 0x22 DUP16 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x7F AND SWAP1 PUSH3 0x128 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 POP DUP12 ADD MLOAD CODESIZE PUSH3 0xF9 JUMP JUMPDEST DUP6 SWAP3 POP DUP13 SWAP1 PUSH1 0x1F NOT DUP4 AND DUP6 PUSH1 0x0 MSTORE DUP10 PUSH1 0x0 KECCAK256 SWAP3 DUP11 PUSH1 0x0 SWAP2 JUMPDEST DUP4 DUP4 LT PUSH3 0x417 JUMPI POP POP POP DUP4 GT PUSH3 0x3FE JUMPI JUMPDEST POP POP DUP2 SHL ADD DUP2 SSTORE PUSH3 0x10A JUMP JUMPDEST DUP14 ADD MLOAD PUSH1 0x0 NOT DUP4 DUP7 SHL PUSH1 0xF8 AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 PUSH3 0x3F1 JUMP JUMPDEST SWAP5 DUP5 DUP3 SWAP5 SWAP6 SWAP8 SWAP9 SWAP3 SWAP4 SWAP7 ADD MLOAD DUP2 SSTORE ADD SWAP5 ADD SWAP3 ADD SWAP1 DUP8 SWAP5 SWAP4 SWAP3 SWAP2 DUP16 DUP12 SWAP1 PUSH3 0x3DE JUMP JUMPDEST DUP3 PUSH1 0x0 MSTORE DUP7 PUSH1 0x0 KECCAK256 DUP5 DUP1 DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP3 DUP10 DUP6 LT PUSH3 0x47A JUMPI JUMPDEST ADD PUSH1 0x5 SHR ADD SWAP1 DUP6 SWAP1 JUMPDEST DUP3 DUP2 LT PUSH3 0x46D JUMPI POP POP PUSH3 0xE2 JUMP JUMPDEST PUSH1 0x0 DUP2 SSTORE ADD DUP6 SWAP1 PUSH3 0x45D JUMP JUMPDEST SWAP3 POP DUP2 SWAP3 PUSH3 0x454 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP3 PUSH1 0x7F AND SWAP3 PUSH3 0xCD JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1F SWAP1 SWAP2 ADD PUSH1 0x1F NOT AND DUP2 ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT SWAP1 DUP3 LT OR PUSH3 0x3A4 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT PUSH3 0x4E2 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0x4D1 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH3 0x4A5 JUMPI DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x3A4 JUMPI PUSH1 0x40 MLOAD SWAP3 PUSH3 0x52A PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP6 PUSH3 0x4AA JUMP JUMPDEST DUP2 DUP5 MSTORE PUSH1 0x20 DUP3 DUP5 ADD ADD GT PUSH3 0x4A5 JUMPI PUSH3 0x54B SWAP2 PUSH1 0x20 DUP1 DUP6 ADD SWAP2 ADD PUSH3 0x4CE JUMP JUMPDEST SWAP1 JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 SWAP2 SWAP1 DUP3 DUP2 LT ISZERO PUSH3 0x5CE JUMPI POP SWAP1 PUSH1 0x1F DUP3 MLOAD GT PUSH3 0x58C JUMPI DUP1 DUP3 MLOAD SWAP3 ADD MLOAD SWAP1 DUP1 DUP4 LT PUSH3 0x57D JUMPI POP OR SWAP1 JUMP JUMPDEST DUP3 PUSH1 0x0 NOT SWAP2 SUB PUSH1 0x3 SHL SHL AND OR SWAP1 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH3 0x5C0 SWAP3 PUSH1 0x40 MLOAD SWAP4 DUP5 SWAP3 PUSH4 0x305A27A9 PUSH1 0xE0 SHL DUP5 MSTORE DUP1 PUSH1 0x4 DUP6 ADD MSTORE DUP3 MLOAD SWAP3 DUP4 SWAP2 DUP3 PUSH1 0x24 DUP8 ADD MSTORE DUP7 DUP7 ADD SWAP2 ADD PUSH3 0x4CE JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND DUP2 ADD SUB ADD SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0x3A4 JUMPI PUSH1 0x5 SWAP3 DUP4 SLOAD SWAP3 PUSH1 0x1 SWAP4 DUP5 DUP2 DUP2 SHR SWAP2 AND DUP1 ISZERO PUSH3 0x6E8 JUMPI JUMPDEST DUP4 DUP3 LT EQ PUSH3 0x484 JUMPI PUSH1 0x1F DUP2 GT PUSH3 0x6B1 JUMPI JUMPDEST POP DUP2 PUSH1 0x1F DUP5 GT PUSH1 0x1 EQ PUSH3 0x647 JUMPI POP SWAP3 DUP3 SWAP4 SWAP2 DUP4 SWAP3 PUSH1 0x0 SWAP5 PUSH3 0x63B JUMPI JUMPDEST POP POP SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR SWAP1 SSTORE PUSH1 0xFF SWAP1 JUMP JUMPDEST ADD MLOAD SWAP3 POP CODESIZE DUP1 PUSH3 0x625 JUMP JUMPDEST SWAP2 SWAP1 DUP4 PUSH1 0x1F NOT DUP2 AND DUP8 PUSH1 0x0 MSTORE DUP5 PUSH1 0x0 KECCAK256 SWAP5 PUSH1 0x0 SWAP1 JUMPDEST DUP9 DUP4 DUP4 LT PUSH3 0x696 JUMPI POP POP POP LT PUSH3 0x67C JUMPI JUMPDEST POP POP POP DUP2 SHL ADD SWAP1 SSTORE PUSH1 0xFF SWAP1 JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0x66F JUMP JUMPDEST DUP6 DUP8 ADD MLOAD DUP9 SSTORE SWAP1 SWAP7 ADD SWAP6 SWAP5 DUP6 ADD SWAP5 DUP8 SWAP4 POP SWAP1 DUP2 ADD SWAP1 PUSH3 0x65C JUMP JUMPDEST DUP6 PUSH1 0x0 MSTORE DUP5 PUSH1 0x1F DUP5 PUSH1 0x0 KECCAK256 SWAP3 ADD DUP8 SHR DUP3 ADD SWAP2 PUSH1 0x1F DUP7 ADD DUP9 SHR ADD JUMPDEST DUP3 DUP2 LT PUSH3 0x6DB JUMPI POP POP PUSH3 0x607 JUMP JUMPDEST PUSH1 0x0 DUP2 SSTORE ADD DUP6 SWAP1 PUSH3 0x6CB JUMP JUMPDEST SWAP1 PUSH1 0x7F AND SWAP1 PUSH3 0x5F4 JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 SWAP1 DUP2 DUP2 LT ISZERO PUSH3 0x720 JUMPI POP PUSH1 0x1F DUP3 MLOAD GT PUSH3 0x58C JUMPI DUP1 DUP3 MLOAD SWAP3 ADD MLOAD SWAP1 DUP1 DUP4 LT PUSH3 0x57D JUMPI POP OR SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH3 0x3A4 JUMPI PUSH1 0x6 SLOAD SWAP3 PUSH1 0x1 SWAP4 DUP5 DUP2 DUP2 SHR SWAP2 AND DUP1 ISZERO PUSH3 0x83F JUMPI JUMPDEST DUP4 DUP3 LT EQ PUSH3 0x484 JUMPI PUSH1 0x1F DUP2 GT PUSH3 0x805 JUMPI JUMPDEST POP DUP2 PUSH1 0x1F DUP5 GT PUSH1 0x1 EQ PUSH3 0x799 JUMPI POP SWAP3 DUP3 SWAP4 SWAP2 DUP4 SWAP3 PUSH1 0x0 SWAP5 PUSH3 0x78D JUMPI JUMPDEST POP POP SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x6 SSTORE PUSH1 0xFF SWAP1 JUMP JUMPDEST ADD MLOAD SWAP3 POP CODESIZE DUP1 PUSH3 0x776 JUMP JUMPDEST SWAP2 SWAP1 DUP4 PUSH1 0x1F NOT DUP2 AND PUSH1 0x6 PUSH1 0x0 MSTORE DUP5 PUSH1 0x0 KECCAK256 SWAP5 PUSH1 0x0 SWAP1 JUMPDEST DUP9 DUP4 DUP4 LT PUSH3 0x7EA JUMPI POP POP POP LT PUSH3 0x7D0 JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x6 SSTORE PUSH1 0xFF SWAP1 JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0x7C2 JUMP JUMPDEST DUP6 DUP8 ADD MLOAD DUP9 SSTORE SWAP1 SWAP7 ADD SWAP6 SWAP5 DUP6 ADD SWAP5 DUP8 SWAP4 POP SWAP1 DUP2 ADD SWAP1 PUSH3 0x7AF JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 MSTORE DUP5 PUSH1 0x1F DUP5 PUSH1 0x0 KECCAK256 SWAP3 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 PUSH1 0x1F DUP7 ADD PUSH1 0x5 SHR ADD JUMPDEST DUP3 DUP2 LT PUSH3 0x832 JUMPI POP POP PUSH3 0x758 JUMP JUMPDEST PUSH1 0x0 DUP2 SSTORE ADD DUP6 SWAP1 PUSH3 0x822 JUMP JUMPDEST SWAP1 PUSH1 0x7F AND SWAP1 PUSH3 0x745 JUMP INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT ISZERO PUSH2 0x12 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1C7 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1C2 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1BD JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1B8 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1B3 JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x1AE JUMPI DUP1 PUSH4 0x3A46B1A8 EQ PUSH2 0x1A9 JUMPI DUP1 PUSH4 0x4BF5D7E9 EQ PUSH2 0x1A4 JUMPI DUP1 PUSH4 0x587CDE1E EQ PUSH2 0x19F JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x19A JUMPI DUP1 PUSH4 0x6FCFFF45 EQ PUSH2 0x195 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x190 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x18B JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x186 JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x181 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0x8E539E8C EQ PUSH2 0x177 JUMPI DUP1 PUSH4 0x91DDADF4 EQ PUSH2 0x172 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0x9AB24EB0 EQ PUSH2 0x168 JUMPI DUP1 PUSH4 0x9DF2C95D EQ PUSH2 0x163 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0xC3CDA520 EQ PUSH2 0x159 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x154 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x14F JUMPI DUP1 PUSH4 0xF1127ED8 EQ PUSH2 0x14A JUMPI PUSH4 0xF2FDE38B EQ PUSH2 0x145 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF90 JUMP JUMPDEST PUSH2 0xEDD JUMP JUMPDEST PUSH2 0xE85 JUMP JUMPDEST PUSH2 0xD51 JUMP JUMPDEST PUSH2 0xC88 JUMP JUMPDEST PUSH2 0xC42 JUMP JUMPDEST PUSH2 0xB98 JUMP JUMPDEST PUSH2 0xA1D JUMP JUMPDEST PUSH2 0x976 JUMP JUMPDEST PUSH2 0x94A JUMP JUMPDEST PUSH2 0x87B JUMP JUMPDEST PUSH2 0x852 JUMP JUMPDEST PUSH2 0x75A JUMP JUMPDEST PUSH2 0x720 JUMP JUMPDEST PUSH2 0x6FF JUMP JUMPDEST PUSH2 0x6C6 JUMP JUMPDEST PUSH2 0x65E JUMP JUMPDEST PUSH2 0x63A JUMP JUMPDEST PUSH2 0x5FF JUMP JUMPDEST PUSH2 0x56D JUMP JUMPDEST PUSH2 0x485 JUMP JUMPDEST PUSH2 0x462 JUMP JUMPDEST PUSH2 0x446 JUMP JUMPDEST PUSH2 0x399 JUMP JUMPDEST PUSH2 0x37B JUMP JUMPDEST PUSH2 0x34A JUMP JUMPDEST PUSH2 0x220 JUMP JUMPDEST SWAP2 SWAP1 DUP3 MLOAD SWAP3 DUP4 DUP3 MSTORE PUSH1 0x0 JUMPDEST DUP5 DUP2 LT PUSH2 0x1F8 JUMPI POP POP DUP3 PUSH1 0x0 PUSH1 0x20 DUP1 SWAP5 SWAP6 DUP5 ADD ADD MSTORE PUSH1 0x1F DUP1 NOT SWAP2 ADD AND ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 DUP4 ADD DUP2 ADD MLOAD DUP5 DUP4 ADD DUP3 ADD MSTORE ADD PUSH2 0x1D7 JUMP JUMPDEST SWAP1 PUSH1 0x20 PUSH2 0x21D SWAP3 DUP2 DUP2 MSTORE ADD SWAP1 PUSH2 0x1CC JUMP JUMPDEST SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x302 JUMPI PUSH1 0x40 MLOAD SWAP1 DUP1 PUSH1 0x3 SLOAD PUSH2 0x243 DUP2 PUSH2 0x135F JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0x2D8 JUMPI POP PUSH1 0x1 EQ PUSH2 0x27D JUMPI JUMPDEST PUSH2 0x279 DUP6 PUSH2 0x26D DUP2 DUP8 SUB DUP3 PUSH2 0xAF1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP3 PUSH2 0x20C JUMP JUMPDEST SUB SWAP1 RETURN JUMPDEST SWAP3 POP PUSH1 0x3 DUP4 MSTORE PUSH32 0xC2575A0E9E593C00F959F8C92F12DB2869C3395A3B0502D05E2516446F71F85B JUMPDEST DUP3 DUP5 LT PUSH2 0x2C0 JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0x26D DUP3 PUSH2 0x279 PUSH2 0x25D JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x2A5 JUMP JUMPDEST DUP7 SWAP6 POP PUSH2 0x279 SWAP7 SWAP4 POP PUSH1 0x20 SWAP3 POP PUSH2 0x26D SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 SWAP4 PUSH2 0x25D JUMP JUMPDEST DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x4 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0x305 JUMPI JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0x305 JUMPI JUMP JUMPDEST CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0x305 JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0x370 PUSH2 0x366 PUSH2 0x30A JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 CALLER PUSH2 0x14AB JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x20 PUSH1 0x2 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0x3B2 PUSH2 0x30A JUMP JUMPDEST PUSH2 0x3BA PUSH2 0x320 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 PUSH1 0x44 CALLDATALOAD SWAP2 SWAP1 SLOAD SWAP3 PUSH1 0x0 NOT DUP5 LT PUSH2 0x404 JUMPI JUMPDEST PUSH2 0x3F8 SWAP4 POP PUSH2 0x1399 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST DUP3 DUP5 LT PUSH2 0x420 JUMPI PUSH2 0x41B DUP4 PUSH2 0x3F8 SWAP6 SUB CALLER DUP4 PUSH2 0x155F JUMP JUMPDEST PUSH2 0x3EE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x20 PUSH2 0x47D PUSH2 0x175D JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0x4A6 PUSH2 0x30A JUMP JUMPDEST AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 PUSH2 0x4C1 PUSH1 0x24 CALLDATALOAD PUSH2 0x109E JUMP JUMPDEST SWAP2 DUP1 SLOAD DUP3 SWAP4 DUP2 PUSH1 0x5 DUP2 GT PUSH2 0x513 JUMPI JUMPDEST POP SWAP1 PUSH1 0x20 SWAP5 PUSH2 0x4DF SWAP3 DUP5 PUSH2 0x1F9A JUMP JUMPDEST DUP1 PUSH2 0x4F9 JUMPI POP POP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE RETURN JUMPDEST SWAP2 PUSH2 0x505 DUP5 SWAP3 SWAP4 PUSH2 0x1AB5 JUMP JUMPDEST SWAP3 DUP2 MSTORE KECCAK256 ADD SLOAD PUSH1 0x30 SHR PUSH2 0x4E7 JUMP JUMPDEST SWAP5 PUSH2 0x51D DUP7 PUSH2 0x1AFF JUMP JUMPDEST DUP7 SUB SWAP6 DUP7 GT PUSH2 0x568 JUMPI PUSH1 0x20 SWAP6 PUSH2 0x4DF SWAP4 DUP6 DUP8 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 DUP11 DUP11 KECCAK256 ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x556 JUMPI POP SWAP2 JUMPDEST SWAP2 SWAP3 POP SWAP5 PUSH2 0x4D0 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x562 SWAP1 PUSH2 0x1AC4 JUMP JUMPDEST SWAP1 PUSH2 0x54D JUMP JUMPDEST PUSH2 0x1349 JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0x587 NUMBER PUSH2 0x1A83 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP1 PUSH2 0x598 NUMBER PUSH2 0x1A83 JUMP JUMPDEST AND SWAP2 AND SUB PUSH2 0x5ED JUMPI PUSH2 0x279 PUSH1 0x40 MLOAD PUSH2 0x5AF DUP2 PUSH2 0xA7C JUMP JUMPDEST PUSH1 0x1D DUP2 MSTORE PUSH32 0x6D6F64653D626C6F636B6E756D6265722666726F6D3D64656661756C74000000 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 PUSH1 0x20 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x1CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1BFC1C5 PUSH1 0xE6 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x20 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 PUSH2 0x623 PUSH2 0x30A JUMP JUMPDEST AND PUSH1 0x0 MSTORE PUSH1 0x8 DUP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0x65C PUSH2 0x656 PUSH2 0x30A JUMP JUMPDEST CALLER PUSH2 0x10DF JUMP JUMPDEST STOP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0x67F PUSH2 0x30A JUMP JUMPDEST AND PUSH1 0x0 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH4 0xFFFFFFFF SWAP1 DUP2 DUP2 GT PUSH2 0x6A7 JUMPI PUSH1 0x20 SWAP2 PUSH1 0x40 MLOAD SWAP2 AND DUP2 MSTORE RETURN JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP3 MSTORE PUSH1 0x20 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x20 PUSH2 0x47D PUSH2 0x6E4 PUSH2 0x30A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0x718 PUSH2 0x102E JUMP JUMPDEST PUSH2 0x65C PUSH2 0x105A JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0x741 PUSH2 0x30A JUMP JUMPDEST AND PUSH1 0x0 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x302 JUMPI PUSH2 0x804 SWAP1 PUSH2 0x799 PUSH32 0x0 PUSH2 0x189D JUMP JUMPDEST PUSH2 0x7C2 PUSH32 0x0 PUSH2 0x1996 JUMP JUMPDEST SWAP2 PUSH1 0x40 MLOAD SWAP2 PUSH2 0x7D0 DUP4 PUSH2 0xA9D JUMP JUMPDEST DUP2 DUP4 MSTORE PUSH1 0x40 MLOAD SWAP5 DUP6 SWAP5 PUSH1 0xF PUSH1 0xF8 SHL DUP7 MSTORE PUSH2 0x7F6 PUSH1 0x20 SWAP4 PUSH1 0xE0 DUP6 DUP10 ADD MSTORE PUSH1 0xE0 DUP9 ADD SWAP1 PUSH2 0x1CC JUMP JUMPDEST SWAP1 DUP7 DUP3 SUB PUSH1 0x40 DUP9 ADD MSTORE PUSH2 0x1CC JUMP JUMPDEST SWAP1 CHAINID PUSH1 0x60 DUP7 ADD MSTORE ADDRESS PUSH1 0x80 DUP7 ADD MSTORE DUP3 PUSH1 0xA0 DUP7 ADD MSTORE DUP5 DUP3 SUB PUSH1 0xC0 DUP7 ADD MSTORE DUP1 DUP1 DUP6 MLOAD SWAP4 DUP5 DUP2 MSTORE ADD SWAP5 ADD SWAP3 JUMPDEST DUP3 DUP2 LT PUSH2 0x83B JUMPI POP POP POP POP SUB SWAP1 RETURN JUMPDEST DUP4 MLOAD DUP6 MSTORE DUP7 SWAP6 POP SWAP4 DUP2 ADD SWAP4 SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x82C JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0xB SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0x897 PUSH1 0x4 CALLDATALOAD PUSH2 0x109E JUMP JUMPDEST PUSH1 0xA SLOAD SWAP1 PUSH1 0x0 DUP3 SWAP2 PUSH1 0x5 DUP5 GT PUSH2 0x8EF JUMPI JUMPDEST PUSH2 0x8B2 SWAP4 POP PUSH2 0x1F31 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x8C7 JUMPI POP POP PUSH1 0x40 MLOAD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST PUSH1 0xA PUSH2 0x8D4 PUSH1 0x20 SWAP4 PUSH2 0x1AB5 JUMP JUMPDEST SWAP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x2369 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD PUSH1 0x30 SHR PUSH2 0x4E7 JUMP JUMPDEST SWAP2 SWAP3 PUSH2 0x8FA DUP2 PUSH2 0x1AFF JUMP JUMPDEST DUP2 SUB SWAP1 DUP2 GT PUSH2 0x568 JUMPI PUSH2 0x8B2 SWAP4 PUSH1 0xA DUP4 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x2369 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x938 JUMPI POP SWAP2 PUSH2 0x8A8 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x944 SWAP1 PUSH2 0x1AC4 JUMP JUMPDEST SWAP1 PUSH2 0x8A8 JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x20 PUSH2 0x966 NUMBER PUSH2 0x1A83 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 MLOAD SWAP2 AND DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x302 JUMPI PUSH1 0x40 MLOAD SWAP1 DUP1 PUSH1 0x4 SLOAD PUSH2 0x999 DUP2 PUSH2 0x135F JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0x2D8 JUMPI POP PUSH1 0x1 EQ PUSH2 0x9C2 JUMPI PUSH2 0x279 DUP6 PUSH2 0x26D DUP2 DUP8 SUB DUP3 PUSH2 0xAF1 JUMP JUMPDEST SWAP3 POP PUSH1 0x4 DUP4 MSTORE PUSH32 0x8A35ACFBC15FF81A39AE7D344FD709F28E8600B4AA8C65C6B64BFE7FE36BD19B JUMPDEST DUP3 DUP5 LT PUSH2 0xA05 JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0x26D DUP3 PUSH2 0x279 PUSH2 0x25D JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x9EA JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0xA3E PUSH2 0x30A JUMP JUMPDEST AND PUSH1 0x0 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x1 DUP1 PUSH1 0xD0 SHL SUB PUSH2 0xA5D PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH2 0x1C74 JUMP JUMPDEST AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0xA98 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH2 0xA66 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0xA98 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0xA98 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0xC0 DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0xA98 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP1 NOT SWAP2 ADD AND DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0xA98 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0xB20 DUP3 PUSH2 0xA7C JUMP JUMPDEST JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT PUSH2 0xA98 JUMPI PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0x305 JUMPI DUP1 CALLDATALOAD SWAP2 PUSH2 0xB51 DUP4 PUSH2 0xB22 JUMP JUMPDEST SWAP3 PUSH2 0xB5F PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0xAF1 JUMP JUMPDEST DUP1 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0x305 JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xB89 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP2 CALLDATALOAD DUP2 MSTORE SWAP1 DUP4 ADD SWAP1 DUP4 ADD PUSH2 0xB7B JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH8 0xFFFFFFFFFFFFFFFF PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x305 JUMPI CALLDATASIZE PUSH1 0x23 DUP3 ADD SLT ISZERO PUSH2 0x305 JUMPI DUP1 PUSH1 0x4 ADD CALLDATALOAD PUSH2 0xBD5 DUP2 PUSH2 0xB22 JUMP JUMPDEST SWAP2 PUSH2 0xBE3 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0xAF1 JUMP JUMPDEST DUP2 DUP4 MSTORE PUSH1 0x20 SWAP2 PUSH1 0x24 DUP4 DUP6 ADD SWAP2 PUSH1 0x5 SHL DUP4 ADD ADD SWAP2 CALLDATASIZE DUP4 GT PUSH2 0x305 JUMPI PUSH1 0x24 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xC2B JUMPI PUSH1 0x24 CALLDATALOAD DUP6 DUP8 DUP3 GT PUSH2 0x305 JUMPI PUSH2 0xC25 PUSH2 0x65C SWAP3 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB3A JUMP JUMPDEST SWAP1 PUSH2 0x1FFB JUMP JUMPDEST DUP4 DUP1 SWAP2 PUSH2 0xC37 DUP5 PUSH2 0x336 JUMP JUMPDEST DUP2 MSTORE ADD SWAP2 ADD SWAP1 PUSH2 0xC02 JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0x370 PUSH2 0xC5E PUSH2 0x30A JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 CALLER PUSH2 0x1399 JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD SWAP1 PUSH1 0xFF DUP3 AND DUP3 SUB PUSH2 0x305 JUMPI JUMP JUMPDEST PUSH1 0x84 CALLDATALOAD SWAP1 PUSH1 0xFF DUP3 AND DUP3 SUB PUSH2 0x305 JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0xCA1 PUSH2 0x30A JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x24 CALLDATALOAD PUSH2 0xCB0 PUSH2 0xC68 JUMP JUMPDEST DUP4 TIMESTAMP GT PUSH2 0xD38 JUMPI PUSH2 0xD2C PUSH2 0x65C SWAP5 PUSH2 0xD33 SWAP3 PUSH1 0x40 MLOAD SWAP1 PUSH1 0x20 DUP3 ADD SWAP3 PUSH32 0xE48329057BFD03D55E49B547132E39CFFD9C1820AD7B9D4C5307691425D15ADF DUP5 MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x40 DUP5 ADD MSTORE DUP7 PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x80 DUP3 MSTORE PUSH2 0xD14 DUP3 PUSH2 0xAB9 JUMP JUMPDEST PUSH2 0xD27 PUSH1 0xA4 CALLDATALOAD SWAP4 PUSH1 0x84 CALLDATALOAD SWAP4 MLOAD SWAP1 KECCAK256 PUSH2 0x1877 JUMP JUMPDEST PUSH2 0x1608 JUMP JUMPDEST SWAP2 DUP3 PUSH2 0x15B2 JUMP JUMPDEST PUSH2 0x10DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2341D787 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0xE0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0xD6A PUSH2 0x30A JUMP JUMPDEST PUSH2 0xD72 PUSH2 0x320 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x64 CALLDATALOAD PUSH2 0xD81 PUSH2 0xC78 JUMP JUMPDEST DUP2 TIMESTAMP GT PUSH2 0xE6C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE DUP3 MLOAD PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 SWAP3 DUP2 ADD SWAP3 DUP4 MSTORE SWAP3 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE SWAP3 DUP7 AND PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0xA0 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xC0 DUP1 DUP3 ADD SWAP5 SWAP1 SWAP5 MSTORE SWAP3 DUP4 MSTORE PUSH2 0xE25 SWAP3 SWAP1 SWAP2 PUSH2 0xE12 PUSH1 0xE0 DUP4 PUSH2 0xAF1 JUMP JUMPDEST PUSH2 0xD27 PUSH1 0xC4 CALLDATALOAD SWAP4 PUSH1 0xA4 CALLDATALOAD SWAP4 MLOAD SWAP1 KECCAK256 PUSH2 0x1877 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND SWAP1 DUP3 AND SUB PUSH2 0xE42 JUMPI POP PUSH2 0x65C SWAP3 PUSH2 0x14AB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x25C00723 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 DUP5 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x313C8981 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x20 PUSH2 0xED4 PUSH2 0xEA3 PUSH2 0x30A JUMP JUMPDEST PUSH2 0xEAB PUSH2 0x320 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP6 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP3 SWAP1 SWAP4 AND DUP2 MSTORE PUSH1 0x20 SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0xEF6 PUSH2 0x30A JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH4 0xFFFFFFFF DUP3 AND DUP3 SUB PUSH2 0x305 JUMPI PUSH2 0x279 SWAP2 PUSH2 0xF46 SWAP2 PUSH2 0xF17 PUSH2 0x1599 JUMP JUMPDEST POP PUSH2 0xF20 PUSH2 0x1599 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0xF40 PUSH2 0x1599 JUMP JUMPDEST POP PUSH2 0x1CB8 JUMP JUMPDEST POP PUSH1 0x40 MLOAD SWAP1 PUSH2 0xF54 DUP3 PUSH2 0xA7C JUMP JUMPDEST SLOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND DUP1 DUP4 MSTORE PUSH1 0x30 SWAP2 SWAP1 SWAP2 SHR PUSH1 0x20 SWAP3 DUP4 ADD SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP2 DUP3 SWAP2 DUP3 ADD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0xFA9 PUSH2 0x30A JUMP JUMPDEST PUSH2 0xFB1 PUSH2 0x102E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1005 JUMPI PUSH1 0xB SLOAD DUP3 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xA0 SHL DUP3 AND OR PUSH1 0xB SSTORE AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x0 DUP1 LOG3 STOP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1E4FBDF7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH2 0x1026 PUSH2 0x102E JUMP JUMPDEST PUSH2 0xB20 PUSH2 0x105A JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER SUB PUSH2 0x1042 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x118CDAA7 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0xB DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP2 AND SWAP1 SWAP2 SSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 DUP3 DUP1 LOG3 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF PUSH2 0x10AE NUMBER PUSH2 0x1A83 JUMP JUMPDEST AND DUP1 DUP3 LT ISZERO PUSH2 0x10C1 JUMPI POP PUSH2 0x21D SWAP1 PUSH2 0x1A83 JUMP JUMPDEST PUSH1 0x44 SWAP3 POP PUSH1 0x40 MLOAD SWAP2 PUSH4 0x7669FC0F PUSH1 0xE1 SHL DUP4 MSTORE PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP7 DUP6 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP3 AND DUP2 OR SWAP1 SWAP3 SSTORE PUSH2 0xB20 SWAP7 SWAP5 AND SWAP5 PUSH2 0x115C SWAP4 SWAP1 SWAP3 DUP7 SWAP2 SWAP1 PUSH32 0x3134E8A2E6D97E929A7E54011EA5485D7D196DD5F0BA4D4EF95803E8E3FC257F SWAP1 DUP1 LOG4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST SWAP2 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND SWAP4 SWAP3 SWAP2 SWAP1 DUP2 AND SWAP1 DUP2 DUP6 EQ ISZERO DUP1 PUSH2 0x12A7 JUMPI JUMPDEST PUSH2 0x1186 JUMPI JUMPDEST POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH2 0x120B JUMPI JUMPDEST POP POP DUP3 PUSH2 0x119B JUMPI JUMPDEST DUP1 DUP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH32 0xDEC2BACDD2F05B59DE34DA9B523DFF8BE42E5E38E818C82FDB0BAE774387A724 SWAP2 PUSH2 0x11E8 SWAP2 PUSH2 0x11E2 SWAP1 SWAP2 PUSH2 0x1A50 JUMP JUMPDEST SWAP1 PUSH2 0x12B0 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE LOG2 CODESIZE DUP1 DUP1 PUSH2 0x1194 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x122B DUP5 PUSH2 0x1A50 JUMP JUMPDEST PUSH2 0x1234 NUMBER PUSH2 0x1A83 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP2 DUP3 DUP1 PUSH2 0x1248 DUP7 PUSH2 0x1C74 JUMP JUMPDEST AND SWAP2 AND SWAP1 SUB SWAP3 DUP3 DUP5 GT PUSH2 0x568 JUMPI PUSH32 0xDEC2BACDD2F05B59DE34DA9B523DFF8BE42E5E38E818C82FDB0BAE774387A724 SWAP4 PUSH2 0x129D SWAP3 PUSH2 0x1284 SWAP3 PUSH2 0x1E75 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP6 AND DUP4 MSTORE SWAP4 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 DUP3 SWAP2 SWAP1 DUP3 ADD SWAP1 JUMP JUMPDEST SUB SWAP1 LOG2 CODESIZE DUP1 PUSH2 0x118C JUMP JUMPDEST POP DUP4 ISZERO ISZERO PUSH2 0x117A JUMP JUMPDEST SWAP1 PUSH2 0x12BA NUMBER PUSH2 0x1A83 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP2 DUP3 DUP1 PUSH2 0x12CE DUP7 PUSH2 0x1C74 JUMP JUMPDEST AND SWAP2 AND ADD SWAP2 DUP3 GT PUSH2 0x568 JUMPI PUSH2 0x12E2 SWAP3 PUSH2 0x1E75 JUMP JUMPDEST SWAP1 SWAP2 JUMP JUMPDEST PUSH2 0x12EF NUMBER PUSH2 0x1A83 JUMP JUMPDEST SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x1303 PUSH2 0x1C2A JUMP JUMPDEST AND SWAP2 AND ADD SWAP1 DUP2 GT PUSH2 0x568 JUMPI PUSH2 0x12E2 SWAP2 PUSH2 0x1D8C JUMP JUMPDEST PUSH2 0x1320 NUMBER PUSH2 0x1A83 JUMP JUMPDEST SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x1334 PUSH2 0x1C2A JUMP JUMPDEST AND SWAP2 AND SWAP1 SUB SWAP1 DUP2 GT PUSH2 0x1349 JUMPI PUSH2 0x12E2 SWAP2 PUSH2 0x1D8C JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH2 0x138F JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH2 0x1379 JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP2 PUSH1 0x7F AND SWAP2 PUSH2 0x136E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 DUP6 ISZERO PUSH2 0x1492 JUMPI DUP3 AND DUP1 ISZERO PUSH2 0x1479 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP6 DUP5 DUP8 LT PUSH2 0x144A JUMPI DUP5 PUSH2 0xB20 SWAP7 SWAP8 SUB PUSH2 0x13FB DUP5 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD DUP9 ADD SWAP1 SSTORE SWAP1 MLOAD DUP7 DUP2 MSTORE PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 SWAP1 LOG3 PUSH2 0x22FD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP9 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND SWAP3 SWAP2 SWAP1 DUP4 ISZERO PUSH2 0x1546 JUMPI DUP3 AND SWAP4 DUP5 ISZERO PUSH2 0x152D JUMPI DUP1 PUSH2 0x1523 PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP5 PUSH2 0x150C PUSH1 0x20 SWAP6 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE LOG3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND ISZERO PUSH2 0x1546 JUMPI DUP2 AND ISZERO PUSH2 0x152D JUMPI PUSH2 0x150C PUSH2 0x1596 SWAP3 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x15A6 DUP3 PUSH2 0xA7C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP4 DUP3 DUP2 MSTORE ADD MSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE SWAP1 SWAP2 DUP2 SWAP1 SUB PUSH2 0x15E0 JUMPI POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1D4B623 PUSH1 0xE6 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP2 POP REVERT JUMPDEST SWAP2 PUSH2 0x21D SWAP4 SWAP2 PUSH2 0x1617 SWAP4 PUSH2 0x1620 JUMP JUMPDEST SWAP1 SWAP3 SWAP2 SWAP3 PUSH2 0x16D0 JUMP JUMPDEST SWAP2 SWAP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT PUSH2 0x16A4 JUMPI SWAP3 PUSH1 0x20 SWAP3 SWAP2 PUSH1 0xFF PUSH1 0x80 SWAP6 PUSH1 0x40 MLOAD SWAP5 DUP6 MSTORE AND DUP5 DUP5 ADD MSTORE PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x0 SWAP3 DUP4 SWAP2 DUP3 DUP1 MSTORE PUSH1 0x1 GAS STATICCALL ISZERO PUSH2 0x1698 JUMPI DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x168F JUMPI SWAP2 DUP2 SWAP1 JUMP JUMPDEST POP DUP1 SWAP2 PUSH1 0x1 SWAP2 SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 RETURNDATASIZE SWAP1 DUP3 RETURNDATACOPY RETURNDATASIZE SWAP1 REVERT JUMPDEST POP POP POP PUSH1 0x0 SWAP2 PUSH1 0x3 SWAP2 SWAP1 JUMP JUMPDEST PUSH1 0x4 GT ISZERO PUSH2 0x16BA JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x16D9 DUP2 PUSH2 0x16B0 JUMP JUMPDEST DUP1 PUSH2 0x16E2 JUMPI POP POP JUMP JUMPDEST PUSH2 0x16EB DUP2 PUSH2 0x16B0 JUMP JUMPDEST PUSH1 0x1 DUP2 SUB PUSH2 0x1705 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST PUSH2 0x170E DUP2 PUSH2 0x16B0 JUMP JUMPDEST PUSH1 0x2 DUP2 SUB PUSH2 0x172F JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST DUP1 PUSH2 0x173B PUSH1 0x3 SWAP3 PUSH2 0x16B0 JUMP JUMPDEST EQ PUSH2 0x1743 JUMPI POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST ADDRESS PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x184E JUMPI JUMPDEST ISZERO PUSH2 0x17B8 JUMPI PUSH32 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F DUP3 MSTORE PUSH32 0x0 PUSH1 0x40 DUP3 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xA0 DUP2 MSTORE PUSH2 0x1848 DUP2 PUSH2 0xAD5 JUMP JUMPDEST MLOAD SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST POP PUSH32 0x0 CHAINID EQ PUSH2 0x178F JUMP JUMPDEST PUSH1 0x42 SWAP1 PUSH2 0x1882 PUSH2 0x175D JUMP JUMPDEST SWAP1 PUSH1 0x40 MLOAD SWAP2 PUSH2 0x1901 PUSH1 0xF0 SHL DUP4 MSTORE PUSH1 0x2 DUP4 ADD MSTORE PUSH1 0x22 DUP3 ADD MSTORE KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0xFF DUP2 EQ PUSH2 0x18DB JUMPI PUSH1 0xFF DUP2 AND SWAP1 PUSH1 0x1F DUP3 GT PUSH2 0x18C9 JUMPI PUSH1 0x40 MLOAD SWAP2 PUSH2 0x18BF DUP4 PUSH2 0xA7C JUMP JUMPDEST DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2CD44AC3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x5 SLOAD DUP2 PUSH1 0x0 PUSH2 0x18EE DUP4 PUSH2 0x135F JUMP JUMPDEST DUP1 DUP4 MSTORE SWAP3 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1974 JUMPI POP PUSH1 0x1 EQ PUSH2 0x1915 JUMPI JUMPDEST POP PUSH2 0x21D SWAP3 POP SUB DUP3 PUSH2 0xAF1 JUMP JUMPDEST PUSH1 0x5 PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP2 POP PUSH32 0x36B6384B5ECA791C62761152D0C79BB0604C104A5FB6F4EB0703F3154BB3DB0 JUMPDEST DUP5 DUP4 LT PUSH2 0x1959 JUMPI POP PUSH2 0x21D SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE PUSH2 0x1908 JUMP JUMPDEST DUP2 SWAP4 POP SWAP1 DUP2 PUSH1 0x20 SWAP3 SLOAD DUP4 DUP6 DUP10 ADD ADD MSTORE ADD SWAP2 ADD SWAP1 SWAP2 DUP5 SWAP3 PUSH2 0x1940 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 SWAP3 POP PUSH2 0x21D SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD CODESIZE PUSH2 0x1908 JUMP JUMPDEST PUSH1 0xFF DUP2 EQ PUSH2 0x19B8 JUMPI PUSH1 0xFF DUP2 AND SWAP1 PUSH1 0x1F DUP3 GT PUSH2 0x18C9 JUMPI PUSH1 0x40 MLOAD SWAP2 PUSH2 0x18BF DUP4 PUSH2 0xA7C JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x6 SLOAD DUP2 PUSH1 0x0 PUSH2 0x19CB DUP4 PUSH2 0x135F JUMP JUMPDEST DUP1 DUP4 MSTORE SWAP3 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1974 JUMPI POP PUSH1 0x1 EQ PUSH2 0x19F1 JUMPI POP PUSH2 0x21D SWAP3 POP SUB DUP3 PUSH2 0xAF1 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP2 POP PUSH32 0xF652222313E28459528D920B65115C16C04F3EFC82AAEDC97BE59F3F377C0D3F JUMPDEST DUP5 DUP4 LT PUSH2 0x1A35 JUMPI POP PUSH2 0x21D SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE PUSH2 0x1908 JUMP JUMPDEST DUP2 SWAP4 POP SWAP1 DUP2 PUSH1 0x20 SWAP3 SLOAD DUP4 DUP6 DUP10 ADD ADD MSTORE ADD SWAP2 ADD SWAP1 SWAP2 DUP5 SWAP3 PUSH2 0x1A1C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP2 GT PUSH2 0x1A64 JUMPI AND SWAP1 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP3 MSTORE PUSH1 0xD0 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP2 GT PUSH2 0x1A96 JUMPI AND SWAP1 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP3 MSTORE PUSH1 0x30 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x0 NOT DUP2 ADD SWAP2 SWAP1 DUP3 GT PUSH2 0x568 JUMPI JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x568 JUMPI JUMP JUMPDEST SWAP2 SWAP1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x568 JUMPI JUMP JUMPDEST DUP2 ISZERO PUSH2 0x1AE9 JUMPI DIV SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x21D JUMPI PUSH1 0x1 DUP2 PUSH1 0x1 PUSH1 0x80 SHL DUP2 LT ISZERO PUSH2 0x1C18 JUMPI JUMPDEST PUSH2 0x1BC0 PUSH2 0x1BB6 PUSH2 0x1BAC PUSH2 0x1BA2 PUSH2 0x1B98 PUSH2 0x1B8E PUSH2 0x1BCC SWAP8 PUSH1 0x4 DUP9 PUSH1 0x1 PUSH1 0x40 SHL PUSH2 0x1BC7 SWAP11 LT ISZERO PUSH2 0x1C0B JUMPI JUMPDEST PUSH5 0x100000000 DUP2 LT ISZERO PUSH2 0x1BFE JUMPI JUMPDEST PUSH3 0x10000 DUP2 LT ISZERO PUSH2 0x1BF1 JUMPI JUMPDEST PUSH2 0x100 DUP2 LT ISZERO PUSH2 0x1BE5 JUMPI JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x1BD9 JUMPI JUMPDEST LT ISZERO PUSH2 0x1BD1 JUMPI JUMPDEST PUSH1 0x3 MUL PUSH1 0x1 SHR PUSH2 0x1B87 DUP2 DUP12 PUSH2 0x1ADF JUMP JUMPDEST ADD PUSH1 0x1 SHR SWAP1 JUMP JUMPDEST PUSH2 0x1B87 DUP2 DUP11 PUSH2 0x1ADF JUMP JUMPDEST PUSH2 0x1B87 DUP2 DUP10 PUSH2 0x1ADF JUMP JUMPDEST PUSH2 0x1B87 DUP2 DUP9 PUSH2 0x1ADF JUMP JUMPDEST PUSH2 0x1B87 DUP2 DUP8 PUSH2 0x1ADF JUMP JUMPDEST PUSH2 0x1B87 DUP2 DUP7 PUSH2 0x1ADF JUMP JUMPDEST DUP1 SWAP4 PUSH2 0x1ADF JUMP JUMPDEST DUP3 GT SWAP1 JUMP JUMPDEST SWAP1 SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 SHL PUSH2 0x1B77 JUMP JUMPDEST DUP2 SHR SWAP2 PUSH1 0x2 SHL SWAP2 PUSH2 0x1B70 JUMP JUMPDEST PUSH1 0x8 SHR SWAP2 DUP2 SHL SWAP2 PUSH2 0x1B66 JUMP JUMPDEST PUSH1 0x10 SHR SWAP2 PUSH1 0x8 SHL SWAP2 PUSH2 0x1B5B JUMP JUMPDEST PUSH1 0x20 SHR SWAP2 PUSH1 0x10 SHL SWAP2 PUSH2 0x1B4F JUMP JUMPDEST PUSH1 0x40 SHR SWAP2 PUSH1 0x20 SHL SWAP2 PUSH2 0x1B41 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x40 SHL SWAP1 POP PUSH1 0x80 DUP3 SWAP1 SHR PUSH2 0x1B18 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x0 SWAP1 DUP1 PUSH2 0x1C3C JUMPI POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DUP2 ADD GT PUSH2 0x568 JUMPI PUSH1 0xA PUSH32 0xC65A7BB8D6351C1CF70C95A316CC6A92839C986682D98BC35F958F4883F9D2A7 SWAP3 MSTORE ADD SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x0 SWAP2 DUP2 PUSH2 0x1C86 JUMPI POP POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x0 NOT SWAP3 DUP3 DUP5 DUP2 ADD GT PUSH2 0x568 JUMPI PUSH1 0x20 SWAP2 DUP2 MSTORE KECCAK256 ADD ADD SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 SLOAD DUP3 LT ISZERO PUSH2 0x1CD0 JUMPI PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SWAP1 PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x1CA2 JUMP JUMPDEST PUSH1 0xA SLOAD SWAP1 PUSH1 0x1 PUSH1 0x40 SHL DUP3 LT ISZERO PUSH2 0xA98 JUMPI PUSH1 0x1 DUP3 ADD DUP1 PUSH1 0xA SSTORE DUP3 LT ISZERO PUSH2 0x1CD0 JUMPI PUSH1 0xA PUSH1 0x0 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD MLOAD PUSH1 0x30 SHL PUSH6 0xFFFFFFFFFFFF NOT AND PUSH6 0xFFFFFFFFFFFF SWAP2 SWAP1 SWAP2 AND OR PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x2369 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 SWAP2 ADD SSTORE JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x40 SHL DUP2 LT ISZERO PUSH2 0xA98 JUMPI PUSH2 0x1D4B SWAP2 PUSH1 0x1 DUP3 ADD DUP2 SSTORE PUSH2 0x1CB8 JUMP JUMPDEST PUSH2 0x1D76 JUMPI DUP2 MLOAD PUSH1 0x20 SWAP1 SWAP3 ADD MLOAD PUSH1 0x30 SHL PUSH6 0xFFFFFFFFFFFF NOT AND PUSH6 0xFFFFFFFFFFFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0xA SLOAD SWAP2 SWAP3 SWAP2 DUP1 ISZERO PUSH2 0x1E4B JUMPI PUSH2 0x1DA4 PUSH2 0x1DBC SWAP2 PUSH2 0x1AB5 JUMP JUMPDEST PUSH1 0xA PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x2369 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 JUMP JUMPDEST SWAP1 DUP2 SLOAD SWAP2 PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP5 AND SWAP2 DUP4 AND DUP1 DUP4 GT PUSH2 0x1E39 JUMPI DUP7 SWAP3 SUB PUSH2 0x1E01 JUMPI PUSH2 0x1DFA SWAP3 POP SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 SLOAD SWAP2 DUP2 NOT SWAP1 PUSH1 0x30 SHL AND SWAP2 AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x30 SHR SWAP2 SWAP1 JUMP JUMPDEST POP POP PUSH2 0x1E34 SWAP1 PUSH2 0x1E20 PUSH2 0x1E12 PUSH2 0xB13 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP3 AND DUP3 MSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x1CD5 JUMP JUMPDEST PUSH2 0x1DFA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2520601D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST POP PUSH2 0x1E6F SWAP1 PUSH2 0x1E5B PUSH2 0x1E12 PUSH2 0xB13 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x1CD5 JUMP JUMPDEST PUSH1 0x0 SWAP2 SWAP1 JUMP JUMPDEST DUP1 SLOAD SWAP3 SWAP4 SWAP3 DUP1 ISZERO PUSH2 0x1F0C JUMPI PUSH2 0x1E8C PUSH2 0x1E99 SWAP2 PUSH2 0x1AB5 JUMP JUMPDEST DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SWAP1 JUMP JUMPDEST SWAP2 DUP3 SLOAD SWAP3 PUSH6 0xFFFFFFFFFFFF SWAP2 DUP3 DUP6 AND SWAP3 DUP2 AND DUP1 DUP5 GT PUSH2 0x1E39 JUMPI DUP8 SWAP4 SUB PUSH2 0x1ED8 JUMPI POP PUSH2 0x1DFA SWAP3 POP SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 SLOAD SWAP2 DUP2 NOT SWAP1 PUSH1 0x30 SHL AND SWAP2 AND OR SWAP1 SSTORE JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1E34 SWAP2 PUSH2 0x1EF8 PUSH2 0x1EEA PUSH2 0xB13 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP4 AND DUP4 MSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP7 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x1D2E JUMP JUMPDEST POP SWAP1 PUSH2 0x1E6F SWAP2 PUSH2 0x1F1D PUSH2 0x1EEA PUSH2 0xB13 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x1D2E JUMP JUMPDEST SWAP1 JUMPDEST DUP3 DUP2 LT PUSH2 0x1F3F JUMPI POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 DUP1 DUP3 AND SWAP1 DUP1 DUP4 XOR PUSH1 0x1 SHR DUP3 ADD DUP1 SWAP3 GT PUSH2 0x568 JUMPI PUSH1 0xA PUSH1 0x0 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x2369 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x1F88 JUMPI POP SWAP2 JUMPDEST SWAP1 PUSH2 0x1F33 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x1F94 SWAP1 PUSH2 0x1AC4 JUMP JUMPDEST SWAP1 PUSH2 0x1F82 JUMP JUMPDEST SWAP2 SWAP1 JUMPDEST DUP4 DUP3 LT PUSH2 0x1FAA JUMPI POP POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 SWAP3 DUP1 DUP4 AND SWAP1 DUP1 DUP5 XOR PUSH1 0x1 SHR DUP3 ADD DUP1 SWAP3 GT PUSH2 0x568 JUMPI PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 SWAP1 KECCAK256 DUP3 ADD SLOAD PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 AND SWAP1 DUP5 AND LT ISZERO PUSH2 0x1FE9 JUMPI POP SWAP3 JUMPDEST SWAP2 SWAP1 PUSH2 0x1F9D JUMP JUMPDEST SWAP4 SWAP3 POP PUSH2 0x1FF5 SWAP1 PUSH2 0x1AC4 JUMP JUMPDEST SWAP2 PUSH2 0x1FE2 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 PUSH2 0x2006 PUSH2 0x102E JUMP JUMPDEST DUP1 MLOAD DUP4 MLOAD SUB PUSH2 0x20C2 JUMPI PUSH2 0x201B DUP2 MLOAD ISZERO ISZERO PUSH2 0x2100 JUMP JUMPDEST PUSH1 0x0 DUP1 JUMPDEST DUP3 MLOAD DUP3 LT ISZERO PUSH2 0x20B5 JUMPI PUSH2 0x2088 PUSH2 0x20AF SWAP2 PUSH2 0x2062 PUSH2 0x205B PUSH2 0x204F PUSH2 0x2042 DUP8 DUP10 PUSH2 0x214A JUMP JUMPDEST MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST ISZERO ISZERO PUSH2 0x215E JUMP JUMPDEST PUSH2 0x2077 PUSH2 0x206F DUP6 DUP10 PUSH2 0x214A JUMP JUMPDEST MLOAD ISZERO ISZERO PUSH2 0x2199 JUMP JUMPDEST PUSH2 0x2081 DUP5 DUP9 PUSH2 0x214A JUMP JUMPDEST MLOAD SWAP1 PUSH2 0x1AD2 JUMP JUMPDEST SWAP2 PUSH2 0x20AA PUSH2 0x2099 PUSH2 0x2042 DUP4 DUP8 PUSH2 0x214A JUMP JUMPDEST PUSH2 0x20A3 DUP4 DUP10 PUSH2 0x214A JUMP JUMPDEST MLOAD SWAP1 PUSH2 0x21D3 JUMP JUMPDEST PUSH2 0x213B JUMP JUMPDEST SWAP1 PUSH2 0x201F JUMP JUMPDEST POP POP POP SWAP1 POP PUSH2 0xB20 PUSH2 0x101E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x82E4E4C2F2E640D8CADCCEE8D040DAD2E6DAC2E8C6D PUSH1 0x53 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x2107 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x456D70747920617272617973 PUSH1 0xA0 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH2 0x568 JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST DUP1 MLOAD DUP3 LT ISZERO PUSH2 0x1CD0 JUMPI PUSH1 0x20 SWAP2 PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST ISZERO PUSH2 0x2165 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x5A65726F2061646472657373 PUSH1 0xA0 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x21A0 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xB PUSH1 0x24 DUP3 ADD MSTORE PUSH11 0x16995C9BC8185B5BDD5B9D PUSH1 0xAA SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP1 ISZERO PUSH2 0x1479 JUMPI PUSH1 0x2 SLOAD DUP3 DUP2 ADD DUP1 SWAP2 GT PUSH2 0x568 JUMPI PUSH1 0x2 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD DUP7 ADD SWAP1 SSTORE MLOAD DUP5 DUP2 MSTORE PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 SWAP1 LOG3 PUSH1 0x2 SLOAD SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 GT PUSH2 0x2259 JUMPI PUSH2 0xB20 SWAP3 SWAP4 POP PUSH2 0x227F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xE58AE93 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST SWAP1 PUSH2 0xB20 SWAP2 PUSH2 0x2295 PUSH2 0x2290 DUP4 PUSH2 0x1A50 JUMP JUMPDEST PUSH2 0x12E6 JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x22E5 JUMPI JUMPDEST PUSH1 0x8 PUSH1 0x20 MSTORE PUSH32 0x5EFF886EA0CE6CA488A3D6E336D6C0F75F46D19B42C06CE5EE98E42C96D256C7 SLOAD PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x40 SWAP1 SWAP3 KECCAK256 SLOAD DUP2 AND SWAP2 AND PUSH2 0x115E JUMP JUMPDEST PUSH2 0x22F6 PUSH2 0x22F1 DUP5 PUSH2 0x1A50 JUMP JUMPDEST PUSH2 0x1317 JUMP JUMPDEST POP POP PUSH2 0x22AA JUMP JUMPDEST PUSH2 0xB20 SWAP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND SWAP2 SWAP1 DUP2 SWAP1 DUP4 ISZERO PUSH2 0x2355 JUMPI JUMPDEST AND SWAP2 DUP3 ISZERO PUSH2 0x2342 JUMPI JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE DUP1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND SWAP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND SWAP1 PUSH2 0x115E JUMP JUMPDEST PUSH2 0x234E PUSH2 0x22F1 DUP6 PUSH2 0x1A50 JUMP JUMPDEST POP POP PUSH2 0x2321 JUMP JUMPDEST PUSH2 0x2361 PUSH2 0x2290 DUP7 PUSH2 0x1A50 JUMP JUMPDEST POP POP PUSH2 0x2318 JUMP INVALID 0xC6 GAS PUSH28 0xB8D6351C1CF70C95A316CC6A92839C986682D98BC35F958F4883F9D2 0xA8 LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ADD AND 0x23 0x4F 0xDE 0xDB DUP6 PUSH6 0x72CF71350EC4 DUP15 0xC 0xD0 0x4D ADDRESS 0xB3 AND 0xAB 0xCA EXTCODEHASH 0xD 0xA9 SAR 0xC1 DUP1 0xC 0xE6 STATICCALL PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"449:1961:50:-:0;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;449:1961:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;449:1961:50;;;;;;;;;1648:13:21;449:1961:50;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;;;;;;;;;-1:-1:-1;449:1961:50;;;;-1:-1:-1;;;449:1961:50;;;;;;;;;;;;;;;;;;;;;1671:17:21;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;;;;;3501:45:38;;;:::i;:::-;3493:53;;;;;3567:51;;;:::i;:::-;3556:62;;;;;449:1961:50;;;;;3642:22:38;3628:36;;;;449:1961:50;3691:25:38;;3674:42;;;;;;3744:13;449:1961:50;3727:30:38;449:1961:50;;4304:80:38;;;2079:95;;;;;;;;449:1961:50;2079:95:38;;;3744:13;2079:95;;;;4378:4;449:1961:50;2079:95:38;;449:1961:50;;4304:80:38;;2079:95;449:1961:50;;;;;;;;;;;;;;;;;;4294:91:38;;2079:95;3767:48;4378:4;2079:95;3825:27;1273:26:2;;1269:95;;-1:-1:-1;;3004:6:2;449:1961:50;;-1:-1:-1;;;;;;449:1961:50;;;;;;;;;;;3052:40:2;-1:-1:-1;;3052:40:2;449:1961:50;;;;;;2079:95:38;449:1961:50;;;;;;;;;;;2079:95:38;449:1961:50;;;;;3628:36:38;449:1961:50;;;;;;;;;;;;;;;;;;;;;1269:95:2;-1:-1:-1;;;1322:31:2;;-1:-1:-1;1322:31:2;;;;449:1961:50;;;1322:31:2;449:1961:50;;;;;;-1:-1:-1;449:1961:50;;;-1:-1:-1;449:1961:50;;;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;;-1:-1:-1;449:1961:50;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;;;-1:-1:-1;449:1961:50;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;-1:-1:-1;449:1961:50;;1671:17:21;449:1961:50;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;-1:-1:-1;449:1961:50;;;-1:-1:-1;449:1961:50;;;;;;;;;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;;-1:-1:-1;;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;;;;-1:-1:-1;449:1961:50;;;;;;;;;-1:-1:-1;449:1961:50;;;;;;;-1:-1:-1;;449:1961:50;;;;-1:-1:-1;;;;;449:1961:50;;;;;;;;;;:::o;:::-;;;;;;;;-1:-1:-1;;449:1961:50;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;449:1961:50;;;;;;;;;;;-1:-1:-1;;449:1961:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;2887:340:34:-;449:1961:50;;3032:2:34;;449:1961:50;3010:24:34;;;3032:2;;;449:1961:50;;1854:2:34;449:1961:50;;1840:16:34;1836:72;;449:1961:50;;;;;;;;;;;;1949:36:34;;3050:27;:::o;449:1961:50:-;;;;;;;;;;1949:36:34;3050:27;:::o;1836:72::-;449:1961:50;;;;;;1879:18:34;;;;;;;;;;;;449:1961:50;;;;;;;;;;;;;;;;;:::i;:::-;1854:2:34;449:1961:50;-1:-1:-1;;449:1961:50;;;1879:18:34;;;;3006:215;-1:-1:-1;;;;;449:1961:50;;;;3532:13:38;449:1961:50;;;;;;;;;;;;;;;;3006:215:34;449:1961:50;;;;;;;;;;;3006:215:34;449:1961:50;;;;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;;;;;1390:66:34;3168:42;:::o;449:1961:50:-;;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;-1:-1:-1;449:1961:50;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;1390:66:34;3168:42;:::o;449:1961:50:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;;;;;;;-1:-1:-1;449:1961:50;;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;2887:340:34;449:1961:50;;3032:2:34;;3010:24;;;3032:2;;;449:1961:50;1854:2:34;449:1961:50;;1840:16:34;1836:72;;449:1961:50;;;;;;;;;;;;1949:36:34;;3050:27;:::o;3006:215::-;449:1961:50;-1:-1:-1;;;;;449:1961:50;;;;3601:16:38;449:1961:50;;;;;;;;;;;;;;3006:215:34;449:1961:50;;;;;;;;;;;3006:215:34;449:1961:50;;;;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;;;3601:16:38;449:1961:50;1390:66:34;3168:42;:::o;449:1961:50:-;;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;3601:16:38;-1:-1:-1;449:1961:50;;-1:-1:-1;449:1961:50;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;;;;;;;3601:16:38;449:1961:50;1390:66:34;3168:42;:::o;449:1961:50:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;;;;;;3601:16:38;-1:-1:-1;449:1961:50;;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"abi_decode_address":{"entryPoint":822,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_address_10344":{"entryPoint":778,"id":null,"parameterSlots":0,"returnSlots":1},"abi_decode_address_10348":{"entryPoint":800,"id":null,"parameterSlots":0,"returnSlots":1},"abi_decode_array_uint256_dyn":{"entryPoint":2874,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint8":{"entryPoint":3192,"id":null,"parameterSlots":0,"returnSlots":1},"abi_decode_uint8_10374":{"entryPoint":3176,"id":null,"parameterSlots":0,"returnSlots":1},"abi_encode_address_address":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_address_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_bytes32_address_address_uint256_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_string":{"entryPoint":524,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string_memory_ptr":{"entryPoint":460,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_struct_Checkpoint208":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_uint256":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_uint256_uint256_17881":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_and_zero_memory_struct_struct_Checkpoint208":{"entryPoint":5529,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory":{"entryPoint":2835,"id":null,"parameterSlots":0,"returnSlots":1},"array_allocation_size_array_address_dyn":{"entryPoint":2850,"id":null,"parameterSlots":1,"returnSlots":1},"array_push_from_struct_Checkpoint208_to_array_struct_Checkpoint208_storage_dyn_ptr":{"entryPoint":7470,"id":null,"parameterSlots":2,"returnSlots":0},"array_push_from_struct_Checkpoint208_to_array_struct_Checkpoint208_storage_dyn_ptr_21901":{"entryPoint":7381,"id":null,"parameterSlots":1,"returnSlots":0},"checked_add_uint256":{"entryPoint":6866,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_uint256_10430":{"entryPoint":6852,"id":null,"parameterSlots":1,"returnSlots":1},"checked_sub_uint256":{"entryPoint":6837,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_address":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"external_fun_CLOCK_MODE":{"entryPoint":1389,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_DOMAIN_SEPARATOR":{"entryPoint":1122,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_allowance":{"entryPoint":3717,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_approve":{"entryPoint":842,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_balanceOf":{"entryPoint":1734,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_checkpoints":{"entryPoint":3805,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_clock":{"entryPoint":2378,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_decimals":{"entryPoint":1094,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_delegate":{"entryPoint":1594,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_delegateBySig":{"entryPoint":3208,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_delegates":{"entryPoint":1535,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_eip712Domain":{"entryPoint":1882,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_getPastTotalSupply":{"entryPoint":2171,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_getPastVotes":{"entryPoint":1157,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_getVotes":{"entryPoint":2589,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_mintInitialSupply":{"entryPoint":2968,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_name":{"entryPoint":544,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_nonces":{"entryPoint":1824,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_numCheckpoints":{"entryPoint":1630,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_owner":{"entryPoint":2130,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_permit":{"entryPoint":3409,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_renounceOwnership":{"entryPoint":1791,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_symbol":{"entryPoint":2422,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_totalSupply":{"entryPoint":891,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_transfer":{"entryPoint":3138,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_transferFrom":{"entryPoint":921,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_transferOwnership":{"entryPoint":3984,"id":null,"parameterSlots":0,"returnSlots":0},"extract_byte_array_length":{"entryPoint":4959,"id":null,"parameterSlots":1,"returnSlots":1},"finalize_allocation":{"entryPoint":2801,"id":null,"parameterSlots":2,"returnSlots":0},"finalize_allocation_10388":{"entryPoint":2684,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_17866":{"entryPoint":2717,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_17870":{"entryPoint":2745,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_17875":{"entryPoint":2773,"id":null,"parameterSlots":1,"returnSlots":0},"fun_approve":{"entryPoint":5291,"id":6318,"parameterSlots":3,"returnSlots":0},"fun_approve_10350":{"entryPoint":5471,"id":6318,"parameterSlots":3,"returnSlots":0},"fun_balanceOf":{"entryPoint":null,"id":5953,"parameterSlots":1,"returnSlots":1},"fun_checkOwner":{"entryPoint":4142,"id":463,"parameterSlots":0,"returnSlots":0},"fun_delegate":{"entryPoint":4319,"id":5281,"parameterSlots":2,"returnSlots":0},"fun_domainSeparatorV4":{"entryPoint":5981,"id":9484,"parameterSlots":0,"returnSlots":1},"fun_hashTypedDataV4":{"entryPoint":6263,"id":9521,"parameterSlots":1,"returnSlots":1},"fun_insert":{"entryPoint":7797,"id":14285,"parameterSlots":3,"returnSlots":2},"fun_insert_17872":{"entryPoint":7564,"id":14285,"parameterSlots":2,"returnSlots":2},"fun_latest":{"entryPoint":7284,"id":14110,"parameterSlots":1,"returnSlots":1},"fun_latest_17871":{"entryPoint":7210,"id":14110,"parameterSlots":0,"returnSlots":1},"fun_mint":{"entryPoint":8659,"id":6207,"parameterSlots":2,"returnSlots":0},"fun_moveDelegateVotes":{"entryPoint":4446,"id":5414,"parameterSlots":3,"returnSlots":0},"fun_push":{"entryPoint":4784,"id":5486,"parameterSlots":2,"returnSlots":2},"fun_push_10478":{"entryPoint":4838,"id":5486,"parameterSlots":1,"returnSlots":2},"fun_push_10479":{"entryPoint":4887,"id":5486,"parameterSlots":1,"returnSlots":2},"fun_recover":{"entryPoint":5640,"id":9311,"parameterSlots":4,"returnSlots":1},"fun_sqrt":{"entryPoint":6911,"id":10983,"parameterSlots":1,"returnSlots":1},"fun_throwError":{"entryPoint":5840,"id":9360,"parameterSlots":2,"returnSlots":0},"fun_toStringWithFallback":{"entryPoint":6301,"id":7455,"parameterSlots":1,"returnSlots":1},"fun_toStringWithFallback_10362":{"entryPoint":6550,"id":7455,"parameterSlots":1,"returnSlots":1},"fun_toUint":{"entryPoint":null,"id":13203,"parameterSlots":1,"returnSlots":1},"fun_toUint208":{"entryPoint":6736,"id":11634,"parameterSlots":1,"returnSlots":1},"fun_toUint48":{"entryPoint":6787,"id":12194,"parameterSlots":1,"returnSlots":1},"fun_transfer":{"entryPoint":5017,"id":6097,"parameterSlots":3,"returnSlots":0},"fun_transferOwnership":{"entryPoint":4186,"id":525,"parameterSlots":0,"returnSlots":0},"fun_transferVotingUnits":{"entryPoint":8957,"id":5336,"parameterSlots":3,"returnSlots":0},"fun_transferVotingUnits_10465":{"entryPoint":8831,"id":5336,"parameterSlots":2,"returnSlots":0},"fun_tryRecover":{"entryPoint":5664,"id":9275,"parameterSlots":4,"returnSlots":3},"fun_unsafeAccess":{"entryPoint":null,"id":14404,"parameterSlots":2,"returnSlots":1},"fun_unsafeAccess_21902":{"entryPoint":null,"id":14404,"parameterSlots":1,"returnSlots":1},"fun_upperBinaryLookup":{"entryPoint":8090,"id":14337,"parameterSlots":4,"returnSlots":1},"fun_upperBinaryLookup_17867":{"entryPoint":7985,"id":14337,"parameterSlots":3,"returnSlots":1},"fun_useCheckedNonce":{"entryPoint":5554,"id":7217,"parameterSlots":2,"returnSlots":0},"fun_useNonce":{"entryPoint":null,"id":7192,"parameterSlots":1,"returnSlots":1},"fun_validateTimepoint":{"entryPoint":4254,"id":5097,"parameterSlots":1,"returnSlots":1},"increment_uint256":{"entryPoint":8507,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_address_struct_Trace208_storage_of_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"mapping_index_access_mapping_address_struct_Trace208_storage_of_address_10396":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_address_struct_Trace208_storage_of_address_10402":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_address_struct_Trace208_storage_of_address_10410":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"memory_array_index_access_address_dyn":{"entryPoint":8522,"id":null,"parameterSlots":2,"returnSlots":1},"modifier_onlyOwner":{"entryPoint":4126,"id":437,"parameterSlots":0,"returnSlots":0},"modifier_onlyOwner_15629":{"entryPoint":8187,"id":437,"parameterSlots":2,"returnSlots":0},"panic_error_0x11":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":7330,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":2662,"id":null,"parameterSlots":0,"returnSlots":0},"read_from_memoryt_address":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"require_helper_stringliteral_499f":{"entryPoint":8601,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_535d":{"entryPoint":8542,"id":null,"parameterSlots":1,"returnSlots":0},"require_helper_stringliteral_920f":{"entryPoint":8448,"id":null,"parameterSlots":1,"returnSlots":0},"shift_right_uint256_uint8":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"storage_array_index_access_struct_Checkpoint208_dyn":{"entryPoint":7352,"id":null,"parameterSlots":2,"returnSlots":2},"update_storage_value_offsett_uint208_to_uint208":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"update_storage_value_offsett_uint256_to_uint256":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"validator_assert_enum_RecoverError":{"entryPoint":5808,"id":null,"parameterSlots":1,"returnSlots":0},"wrapping_div_uint256":{"entryPoint":6879,"id":null,"parameterSlots":2,"returnSlots":1},"write_to_memory_uint208":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"write_to_memory_uint48":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0}},"generatedSources":[],"immutableReferences":{"9382":[{"length":32,"start":6038}],"9384":[{"length":32,"start":6225}],"9386":[{"length":32,"start":5984}],"9388":[{"length":32,"start":6117}],"9390":[{"length":32,"start":6155}],"9393":[{"length":32,"start":1909}],"9396":[{"length":32,"start":1950}]},"linkReferences":{},"object":"6080604052600436101561001257600080fd5b60003560e01c806306fdde03146101c7578063095ea7b3146101c257806318160ddd146101bd57806323b872dd146101b8578063313ce567146101b35780633644e515146101ae5780633a46b1a8146101a95780634bf5d7e9146101a4578063587cde1e1461019f5780635c19a95c1461019a5780636fcfff451461019557806370a0823114610190578063715018a61461018b5780637ecebe001461018657806384b0196e146101815780638da5cb5b1461017c5780638e539e8c1461017757806391ddadf41461017257806395d89b411461016d5780639ab24eb0146101685780639df2c95d14610163578063a9059cbb1461015e578063c3cda52014610159578063d505accf14610154578063dd62ed3e1461014f578063f1127ed81461014a5763f2fde38b1461014557600080fd5b610f90565b610edd565b610e85565b610d51565b610c88565b610c42565b610b98565b610a1d565b610976565b61094a565b61087b565b610852565b61075a565b610720565b6106ff565b6106c6565b61065e565b61063a565b6105ff565b61056d565b610485565b610462565b610446565b610399565b61037b565b61034a565b610220565b919082519283825260005b8481106101f8575050826000602080949584010152601f8019910116010190565b6020818301810151848301820152016101d7565b90602061021d9281815201906101cc565b90565b34610305576000806003193601126103025760405190806003546102438161135f565b808552916001918083169081156102d8575060011461027d575b6102798561026d81870382610af1565b6040519182918261020c565b0390f35b9250600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8284106102c057505050810160200161026d8261027961025d565b805460208587018101919091529093019281016102a5565b8695506102799693506020925061026d94915060ff191682840152151560051b820101929361025d565b80fd5b600080fd5b600435906001600160a01b038216820361030557565b602435906001600160a01b038216820361030557565b35906001600160a01b038216820361030557565b346103055760403660031901126103055761037061036661030a565b60243590336114ab565b602060405160018152f35b34610305576000366003190112610305576020600254604051908152f35b34610305576060366003190112610305576103b261030a565b6103ba610320565b6001600160a01b03821660009081526001602090815260408083203384529091529020604435919054926000198410610404575b6103f89350611399565b60405160018152602090f35b8284106104205761041b836103f89503338361155f565b6103ee565b604051637dc7a0d960e11b81523360048201526024810185905260448101849052606490fd5b3461030557600036600319011261030557602060405160128152f35b3461030557600036600319011261030557602061047d61175d565b604051908152f35b34610305576040366003190112610305576001600160a01b036104a661030a565b166000908152600960205260408120906104c160243561109e565b91805482938160058111610513575b50906020946104df9284611f9a565b806104f95750505b6040516001600160d01b039091168152f35b91610505849293611ab5565b92815220015460301c6104e7565b9461051d86611aff565b8603958611610568576020956104df9385875265ffffffffffff80838a8a20015416908516106000146105565750915b919250946104d0565b92915061056290611ac4565b9061054d565b611349565b346103055760003660031901126103055761058743611a83565b65ffffffffffff8061059843611a83565b169116036105ed576102796040516105af81610a7c565b601d81527f6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c7400000060208201526040519182916020835260208301906101cc565b6040516301bfc1c560e61b8152600490fd5b346103055760203660031901126103055760206001600160a01b038061062361030a565b166000526008825260406000205416604051908152f35b346103055760203660031901126103055761065c61065661030a565b336110df565b005b34610305576020366003190112610305576001600160a01b0361067f61030a565b16600052600960205260406000205463ffffffff908181116106a75760209160405191168152f35b604490604051906306dfcc6560e41b8252602060048301526024820152fd5b3461030557602036600319011261030557602061047d6106e461030a565b6001600160a01b031660009081526020819052604090205490565b346103055760003660031901126103055761071861102e565b61065c61105a565b34610305576020366003190112610305576001600160a01b0361074161030a565b1660005260076020526020604060002054604051908152f35b346103055760008060031936011261030257610804906107997f000000000000000000000000000000000000000000000000000000000000000061189d565b6107c27f0000000000000000000000000000000000000000000000000000000000000000611996565b91604051916107d083610a9d565b818352604051948594600f60f81b86526107f660209360e08589015260e08801906101cc565b9086820360408801526101cc565b904660608601523060808601528260a086015284820360c08601528080855193848152019401925b82811061083b57505050500390f35b83518552869550938101939281019260010161082c565b3461030557600036600319011261030557600b546040516001600160a01b039091168152602090f35b346103055760203660031901126103055761089760043561109e565b600a549060008291600584116108ef575b6108b29350611f31565b6000816108c757505060405160008152602090f35b600a6108d4602093611ab5565b9152600080516020612369833981519152015460301c6104e7565b91926108fa81611aff565b8103908111610568576108b293600a835265ffffffffffff8083600080516020612369833981519152015416908516106000146109385750916108a8565b92915061094490611ac4565b906108a8565b3461030557600036600319011261030557602061096643611a83565b65ffffffffffff60405191168152f35b34610305576000806003193601126103025760405190806004546109998161135f565b808552916001918083169081156102d857506001146109c2576102798561026d81870382610af1565b9250600483527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610a0557505050810160200161026d8261027961025d565b805460208587018101919091529093019281016109ea565b34610305576020366003190112610305576001600160a01b03610a3e61030a565b166000526009602052602060018060d01b03610a5d6040600020611c74565b16604051908152f35b634e487b7160e01b600052604160045260246000fd5b6040810190811067ffffffffffffffff821117610a9857604052565b610a66565b6020810190811067ffffffffffffffff821117610a9857604052565b60a0810190811067ffffffffffffffff821117610a9857604052565b60c0810190811067ffffffffffffffff821117610a9857604052565b90601f8019910116810190811067ffffffffffffffff821117610a9857604052565b60405190610b2082610a7c565b565b67ffffffffffffffff8111610a985760051b60200190565b81601f8201121561030557803591610b5183610b22565b92610b5f6040519485610af1565b808452602092838086019260051b820101928311610305578301905b828210610b89575050505090565b81358152908301908301610b7b565b346103055760403660031901126103055767ffffffffffffffff6004358181116103055736602382011215610305578060040135610bd581610b22565b91610be36040519384610af1565b81835260209160248385019160051b8301019136831161030557602401905b828210610c2b576024358587821161030557610c2561065c923690600401610b3a565b90611ffb565b838091610c3784610336565b815201910190610c02565b3461030557604036600319011261030557610370610c5e61030a565b6024359033611399565b6064359060ff8216820361030557565b6084359060ff8216820361030557565b346103055760c036600319011261030557610ca161030a565b60443590602435610cb0610c68565b834211610d3857610d2c61065c94610d33926040519060208201927fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf845260018060a01b0388166040840152866060840152608083015260808252610d1482610ab9565b610d2760a4359360843593519020611877565b611608565b91826115b2565b6110df565b604051632341d78760e11b815260048101859052602490fd5b346103055760e036600319011261030557610d6a61030a565b610d72610320565b60443590606435610d81610c78565b814211610e6c576001600160a01b0385811660008181526007602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c99281019283529283019390935292861660608201526080810187905260a081019190915260c080820194909452928352610e25929091610e1260e083610af1565b610d2760c4359360a43593519020611877565b6001600160a01b0384811690821603610e42575061065c926114ab565b6040516325c0072360e11b81526001600160a01b0391821660048201529084166024820152604490fd5b60405163313c898160e11b815260048101839052602490fd5b34610305576040366003190112610305576020610ed4610ea361030a565b610eab610320565b6001600160a01b0391821660009081526001855260408082209290931681526020919091522090565b54604051908152f35b3461030557604036600319011261030557610ef661030a565b6024359063ffffffff821682036103055761027991610f4691610f17611599565b50610f20611599565b506001600160a01b03166000908152600960205260409020610f40611599565b50611cb8565b5060405190610f5482610a7c565b5465ffffffffffff811680835260309190911c60209283019081526040805192835290516001600160d01b031692820192909252918291820190565b3461030557602036600319011261030557610fa961030a565b610fb161102e565b6001600160a01b0390811690811561100557600b54826bffffffffffffffffffffffff60a01b821617600b55167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3005b604051631e4fbdf760e01b815260006004820152602490fd5b61102661102e565b610b2061105a565b600b546001600160a01b0316330361104257565b60405163118cdaa760e01b8152336004820152602490fd5b600b80546001600160a01b031981169091556000906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3565b65ffffffffffff6110ae43611a83565b16808210156110c1575061021d90611a83565b6044925060405191637669fc0f60e11b835260048301526024820152fd5b6001600160a01b03818116600081815260086020526040812080548685166001600160a01b031982168117909255610b209694169461115c9390928691907f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9080a46001600160a01b031660009081526020819052604090205490565b915b6001600160a01b038083169392919081169081851415806112a7575b611186575b5050505050565b8161120b575b50508261119b575b808061117f565b6001600160a01b031660009081526009602052604090207fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724916111e8916111e29091611a50565b906112b0565b604080516001600160d01b039384168152919092166020820152a2388080611194565b6001600160a01b0316600090815260096020526040902061122b84611a50565b61123443611a83565b6001600160d01b0391828061124886611c74565b169116900392828411610568577fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7249361129d9261128492611e75565b6040805192851683529316602082015291829190820190565b0390a2388061118c565b5083151561117a565b906112ba43611a83565b6001600160d01b039182806112ce86611c74565b16911601918211610568576112e292611e75565b9091565b6112ef43611a83565b906001600160d01b03908180611303611c2a565b16911601908111610568576112e291611d8c565b61132043611a83565b906001600160d01b03908180611334611c2a565b1691169003908111611349576112e291611d8c565b634e487b7160e01b600052601160045260246000fd5b90600182811c9216801561138f575b602083101461137957565b634e487b7160e01b600052602260045260246000fd5b91607f169161136e565b6001600160a01b03808216949392919085156114925782168015611479576001600160a01b0382166000908152602081905260409020549584871061144a5784610b209697036113fb8460018060a01b03166000526000602052604060002090565b556001600160a01b0384166000908152602081815260409182902080548801905590518681527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a36122fd565b60405163391434e360e21b81526001600160a01b03841660048201526024810188905260448101869052606490fd5b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b6001600160a01b03808216929190831561154657821693841561152d57806115237f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259461150c60209560018060a01b03166000526001602052604060002090565b9060018060a01b0316600052602052604060002090565b55604051908152a3565b604051634a1406b160e11b815260006004820152602490fd5b60405163e602df0560e01b815260006004820152602490fd5b906001600160a01b03808316156115465781161561152d5761150c6115969260018060a01b03166000526001602052604060002090565b55565b604051906115a682610a7c565b60006020838281520152565b6001600160a01b038116600090815260076020526040902080546001810190915590918190036115e0575050565b6040516301d4b62360e61b81526001600160a01b039092166004830152602482015260449150fd5b9161021d939161161793611620565b909291926116d0565b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084116116a457926020929160ff608095604051948552168484015260408301526060820152600092839182805260015afa156116985780516001600160a01b0381161561168f57918190565b50809160019190565b604051903d90823e3d90fd5b50505060009160039190565b600411156116ba57565b634e487b7160e01b600052602160045260246000fd5b6116d9816116b0565b806116e2575050565b6116eb816116b0565b600181036117055760405163f645eedf60e01b8152600490fd5b61170e816116b0565b6002810361172f5760405163fce698f760e01b815260048101839052602490fd5b8061173b6003926116b0565b146117435750565b6040516335e2f38360e21b81526004810191909152602490fd5b307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316148061184e575b156117b8577f000000000000000000000000000000000000000000000000000000000000000090565b60405160208101907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82527f000000000000000000000000000000000000000000000000000000000000000060408201527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260a0815261184881610ad5565b51902090565b507f0000000000000000000000000000000000000000000000000000000000000000461461178f565b60429061188261175d565b906040519161190160f01b8352600283015260228201522090565b60ff81146118db5760ff811690601f82116118c957604051916118bf83610a7c565b8252602082015290565b604051632cd44ac360e21b8152600490fd5b506040516005548160006118ee8361135f565b808352926001908181169081156119745750600114611915575b5061021d92500382610af1565b6005600090815291507f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db05b848310611959575061021d935050810160200138611908565b81935090816020925483858901015201910190918492611940565b90506020925061021d94915060ff191682840152151560051b82010138611908565b60ff81146119b85760ff811690601f82116118c957604051916118bf83610a7c565b506040516006548160006119cb8361135f565b8083529260019081811690811561197457506001146119f1575061021d92500382610af1565b6006600090815291507ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f5b848310611a35575061021d935050810160200138611908565b81935090816020925483858901015201910190918492611a1c565b6001600160d01b0390818111611a64571690565b604490604051906306dfcc6560e41b825260d060048301526024820152fd5b65ffffffffffff90818111611a96571690565b604490604051906306dfcc6560e41b8252603060048301526024820152fd5b60001981019190821161056857565b906001820180921161056857565b9190820180921161056857565b8115611ae9570490565b634e487b7160e01b600052601260045260246000fd5b600181111561021d57600181600160801b811015611c18575b611bc0611bb6611bac611ba2611b98611b8e611bcc97600488600160401b611bc79a1015611c0b575b640100000000811015611bfe575b62010000811015611bf1575b610100811015611be5575b6010811015611bd9575b1015611bd1575b60030260011c611b87818b611adf565b0160011c90565b611b87818a611adf565b611b878189611adf565b611b878188611adf565b611b878187611adf565b611b878186611adf565b8093611adf565b821190565b900390565b60011b611b77565b811c9160021b91611b70565b60081c91811b91611b66565b60101c9160081b91611b5b565b60201c9160101b91611b4f565b60401c9160201b91611b41565b50600160401b9050608082901c611b18565b600a5460009080611c3c575050600090565b8060001981011161056857600a7fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a79252015460301c90565b805460009181611c8657505050600090565b6000199282848101116105685760209181522001015460301c90565b634e487b7160e01b600052603260045260246000fd5b8054821015611cd05760005260206000200190600090565b611ca2565b600a5490600160401b821015610a98576001820180600a55821015611cd057600a600052805160209091015160301b65ffffffffffff191665ffffffffffff919091161760008051602061236983398151915290910155565b8054600160401b811015610a9857611d4b91600182018155611cb8565b611d7657815160209092015160301b65ffffffffffff191665ffffffffffff92909216919091179055565b634e487b7160e01b600052600060045260246000fd5b600a549192918015611e4b57611da4611dbc91611ab5565b600a6000526000805160206123698339815191520190565b9081549165ffffffffffff90818416918316808311611e3957869203611e0157611dfa92509065ffffffffffff82549181199060301b169116179055565b60301c9190565b5050611e3490611e20611e12610b13565b65ffffffffffff9092168252565b6001600160d01b0385166020820152611cd5565b611dfa565b604051632520601d60e01b8152600490fd5b50611e6f90611e5b611e12610b13565b6001600160d01b0384166020820152611cd5565b60009190565b80549293928015611f0c57611e8c611e9991611ab5565b8260005260206000200190565b9182549265ffffffffffff91828516928116808411611e3957879303611ed85750611dfa92509065ffffffffffff82549181199060301b169116179055565b915050611e3491611ef8611eea610b13565b65ffffffffffff9093168352565b6001600160d01b0386166020830152611d2e565b5090611e6f91611f1d611eea610b13565b6001600160d01b0385166020830152611d2e565b905b828110611f3f57505090565b90918082169080831860011c820180921161056857600a60005265ffffffffffff808360008051602061236983398151915201541690851610600014611f885750915b90611f33565b929150611f9490611ac4565b90611f82565b91905b838210611faa5750505090565b9091928083169080841860011c82018092116105685760008581526020902082015465ffffffffffff9081169084161015611fe95750925b9190611f9d565b939250611ff590611ac4565b91611fe2565b91909161200661102e565b80518351036120c25761201b81511515612100565b6000805b82518210156120b5576120886120af9161206261205b61204f612042878961214a565b516001600160a01b031690565b6001600160a01b031690565b151561215e565b61207761206f858961214a565b511515612199565b612081848861214a565b5190611ad2565b916120aa612099612042838761214a565b6120a3838961214a565b51906121d3565b61213b565b9061201f565b5050509050610b2061101e565b60405162461bcd60e51b8152602060048201526016602482015275082e4e4c2f2e640d8cadccee8d040dad2e6dac2e8c6d60531b6044820152606490fd5b1561210757565b60405162461bcd60e51b815260206004820152600c60248201526b456d7074792061727261797360a01b6044820152606490fd5b60001981146105685760010190565b8051821015611cd05760209160051b010190565b1561216557565b60405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606490fd5b156121a057565b60405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b6044820152606490fd5b91906001600160a01b038316801561147957600254828101809111610568576002556001600160a01b038416600090815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a3600254926001600160d01b03841161225957610b2092935061227f565b604051630e58ae9360e11b8152600481018590526001600160d01b036024820152604490fd5b90610b209161229561229083611a50565b6112e6565b50506001600160a01b039081169081156122e5575b60086020527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c75460009283526040909220548116911661115e565b6122f66122f184611a50565b611317565b50506122aa565b610b2092916001600160a01b03918216919081908315612355575b16918215612342575b6000526008602052806040600020541691600052604060002054169061115e565b61234e6122f185611a50565b5050612321565b61236161229086611a50565b505061231856fec65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8a26469706673582212200116234fdedb856572cf71350ec48e0cd04d30b316abca3f0da91dc1800ce6fa64736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT ISZERO PUSH2 0x12 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1C7 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1C2 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1BD JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1B8 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1B3 JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x1AE JUMPI DUP1 PUSH4 0x3A46B1A8 EQ PUSH2 0x1A9 JUMPI DUP1 PUSH4 0x4BF5D7E9 EQ PUSH2 0x1A4 JUMPI DUP1 PUSH4 0x587CDE1E EQ PUSH2 0x19F JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x19A JUMPI DUP1 PUSH4 0x6FCFFF45 EQ PUSH2 0x195 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x190 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x18B JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x186 JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x181 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0x8E539E8C EQ PUSH2 0x177 JUMPI DUP1 PUSH4 0x91DDADF4 EQ PUSH2 0x172 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0x9AB24EB0 EQ PUSH2 0x168 JUMPI DUP1 PUSH4 0x9DF2C95D EQ PUSH2 0x163 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0xC3CDA520 EQ PUSH2 0x159 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x154 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x14F JUMPI DUP1 PUSH4 0xF1127ED8 EQ PUSH2 0x14A JUMPI PUSH4 0xF2FDE38B EQ PUSH2 0x145 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF90 JUMP JUMPDEST PUSH2 0xEDD JUMP JUMPDEST PUSH2 0xE85 JUMP JUMPDEST PUSH2 0xD51 JUMP JUMPDEST PUSH2 0xC88 JUMP JUMPDEST PUSH2 0xC42 JUMP JUMPDEST PUSH2 0xB98 JUMP JUMPDEST PUSH2 0xA1D JUMP JUMPDEST PUSH2 0x976 JUMP JUMPDEST PUSH2 0x94A JUMP JUMPDEST PUSH2 0x87B JUMP JUMPDEST PUSH2 0x852 JUMP JUMPDEST PUSH2 0x75A JUMP JUMPDEST PUSH2 0x720 JUMP JUMPDEST PUSH2 0x6FF JUMP JUMPDEST PUSH2 0x6C6 JUMP JUMPDEST PUSH2 0x65E JUMP JUMPDEST PUSH2 0x63A JUMP JUMPDEST PUSH2 0x5FF JUMP JUMPDEST PUSH2 0x56D JUMP JUMPDEST PUSH2 0x485 JUMP JUMPDEST PUSH2 0x462 JUMP JUMPDEST PUSH2 0x446 JUMP JUMPDEST PUSH2 0x399 JUMP JUMPDEST PUSH2 0x37B JUMP JUMPDEST PUSH2 0x34A JUMP JUMPDEST PUSH2 0x220 JUMP JUMPDEST SWAP2 SWAP1 DUP3 MLOAD SWAP3 DUP4 DUP3 MSTORE PUSH1 0x0 JUMPDEST DUP5 DUP2 LT PUSH2 0x1F8 JUMPI POP POP DUP3 PUSH1 0x0 PUSH1 0x20 DUP1 SWAP5 SWAP6 DUP5 ADD ADD MSTORE PUSH1 0x1F DUP1 NOT SWAP2 ADD AND ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 DUP4 ADD DUP2 ADD MLOAD DUP5 DUP4 ADD DUP3 ADD MSTORE ADD PUSH2 0x1D7 JUMP JUMPDEST SWAP1 PUSH1 0x20 PUSH2 0x21D SWAP3 DUP2 DUP2 MSTORE ADD SWAP1 PUSH2 0x1CC JUMP JUMPDEST SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x302 JUMPI PUSH1 0x40 MLOAD SWAP1 DUP1 PUSH1 0x3 SLOAD PUSH2 0x243 DUP2 PUSH2 0x135F JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0x2D8 JUMPI POP PUSH1 0x1 EQ PUSH2 0x27D JUMPI JUMPDEST PUSH2 0x279 DUP6 PUSH2 0x26D DUP2 DUP8 SUB DUP3 PUSH2 0xAF1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP3 PUSH2 0x20C JUMP JUMPDEST SUB SWAP1 RETURN JUMPDEST SWAP3 POP PUSH1 0x3 DUP4 MSTORE PUSH32 0xC2575A0E9E593C00F959F8C92F12DB2869C3395A3B0502D05E2516446F71F85B JUMPDEST DUP3 DUP5 LT PUSH2 0x2C0 JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0x26D DUP3 PUSH2 0x279 PUSH2 0x25D JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x2A5 JUMP JUMPDEST DUP7 SWAP6 POP PUSH2 0x279 SWAP7 SWAP4 POP PUSH1 0x20 SWAP3 POP PUSH2 0x26D SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 SWAP4 PUSH2 0x25D JUMP JUMPDEST DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x4 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0x305 JUMPI JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0x305 JUMPI JUMP JUMPDEST CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH2 0x305 JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0x370 PUSH2 0x366 PUSH2 0x30A JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 CALLER PUSH2 0x14AB JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x20 PUSH1 0x2 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0x3B2 PUSH2 0x30A JUMP JUMPDEST PUSH2 0x3BA PUSH2 0x320 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 PUSH1 0x44 CALLDATALOAD SWAP2 SWAP1 SLOAD SWAP3 PUSH1 0x0 NOT DUP5 LT PUSH2 0x404 JUMPI JUMPDEST PUSH2 0x3F8 SWAP4 POP PUSH2 0x1399 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST DUP3 DUP5 LT PUSH2 0x420 JUMPI PUSH2 0x41B DUP4 PUSH2 0x3F8 SWAP6 SUB CALLER DUP4 PUSH2 0x155F JUMP JUMPDEST PUSH2 0x3EE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x20 PUSH2 0x47D PUSH2 0x175D JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0x4A6 PUSH2 0x30A JUMP JUMPDEST AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 PUSH2 0x4C1 PUSH1 0x24 CALLDATALOAD PUSH2 0x109E JUMP JUMPDEST SWAP2 DUP1 SLOAD DUP3 SWAP4 DUP2 PUSH1 0x5 DUP2 GT PUSH2 0x513 JUMPI JUMPDEST POP SWAP1 PUSH1 0x20 SWAP5 PUSH2 0x4DF SWAP3 DUP5 PUSH2 0x1F9A JUMP JUMPDEST DUP1 PUSH2 0x4F9 JUMPI POP POP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE RETURN JUMPDEST SWAP2 PUSH2 0x505 DUP5 SWAP3 SWAP4 PUSH2 0x1AB5 JUMP JUMPDEST SWAP3 DUP2 MSTORE KECCAK256 ADD SLOAD PUSH1 0x30 SHR PUSH2 0x4E7 JUMP JUMPDEST SWAP5 PUSH2 0x51D DUP7 PUSH2 0x1AFF JUMP JUMPDEST DUP7 SUB SWAP6 DUP7 GT PUSH2 0x568 JUMPI PUSH1 0x20 SWAP6 PUSH2 0x4DF SWAP4 DUP6 DUP8 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 DUP11 DUP11 KECCAK256 ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x556 JUMPI POP SWAP2 JUMPDEST SWAP2 SWAP3 POP SWAP5 PUSH2 0x4D0 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x562 SWAP1 PUSH2 0x1AC4 JUMP JUMPDEST SWAP1 PUSH2 0x54D JUMP JUMPDEST PUSH2 0x1349 JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0x587 NUMBER PUSH2 0x1A83 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP1 PUSH2 0x598 NUMBER PUSH2 0x1A83 JUMP JUMPDEST AND SWAP2 AND SUB PUSH2 0x5ED JUMPI PUSH2 0x279 PUSH1 0x40 MLOAD PUSH2 0x5AF DUP2 PUSH2 0xA7C JUMP JUMPDEST PUSH1 0x1D DUP2 MSTORE PUSH32 0x6D6F64653D626C6F636B6E756D6265722666726F6D3D64656661756C74000000 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 PUSH1 0x20 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x1CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1BFC1C5 PUSH1 0xE6 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x20 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 PUSH2 0x623 PUSH2 0x30A JUMP JUMPDEST AND PUSH1 0x0 MSTORE PUSH1 0x8 DUP3 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0x65C PUSH2 0x656 PUSH2 0x30A JUMP JUMPDEST CALLER PUSH2 0x10DF JUMP JUMPDEST STOP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0x67F PUSH2 0x30A JUMP JUMPDEST AND PUSH1 0x0 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH4 0xFFFFFFFF SWAP1 DUP2 DUP2 GT PUSH2 0x6A7 JUMPI PUSH1 0x20 SWAP2 PUSH1 0x40 MLOAD SWAP2 AND DUP2 MSTORE RETURN JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP3 MSTORE PUSH1 0x20 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x20 PUSH2 0x47D PUSH2 0x6E4 PUSH2 0x30A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0x718 PUSH2 0x102E JUMP JUMPDEST PUSH2 0x65C PUSH2 0x105A JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0x741 PUSH2 0x30A JUMP JUMPDEST AND PUSH1 0x0 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x302 JUMPI PUSH2 0x804 SWAP1 PUSH2 0x799 PUSH32 0x0 PUSH2 0x189D JUMP JUMPDEST PUSH2 0x7C2 PUSH32 0x0 PUSH2 0x1996 JUMP JUMPDEST SWAP2 PUSH1 0x40 MLOAD SWAP2 PUSH2 0x7D0 DUP4 PUSH2 0xA9D JUMP JUMPDEST DUP2 DUP4 MSTORE PUSH1 0x40 MLOAD SWAP5 DUP6 SWAP5 PUSH1 0xF PUSH1 0xF8 SHL DUP7 MSTORE PUSH2 0x7F6 PUSH1 0x20 SWAP4 PUSH1 0xE0 DUP6 DUP10 ADD MSTORE PUSH1 0xE0 DUP9 ADD SWAP1 PUSH2 0x1CC JUMP JUMPDEST SWAP1 DUP7 DUP3 SUB PUSH1 0x40 DUP9 ADD MSTORE PUSH2 0x1CC JUMP JUMPDEST SWAP1 CHAINID PUSH1 0x60 DUP7 ADD MSTORE ADDRESS PUSH1 0x80 DUP7 ADD MSTORE DUP3 PUSH1 0xA0 DUP7 ADD MSTORE DUP5 DUP3 SUB PUSH1 0xC0 DUP7 ADD MSTORE DUP1 DUP1 DUP6 MLOAD SWAP4 DUP5 DUP2 MSTORE ADD SWAP5 ADD SWAP3 JUMPDEST DUP3 DUP2 LT PUSH2 0x83B JUMPI POP POP POP POP SUB SWAP1 RETURN JUMPDEST DUP4 MLOAD DUP6 MSTORE DUP7 SWAP6 POP SWAP4 DUP2 ADD SWAP4 SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x82C JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0xB SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0x897 PUSH1 0x4 CALLDATALOAD PUSH2 0x109E JUMP JUMPDEST PUSH1 0xA SLOAD SWAP1 PUSH1 0x0 DUP3 SWAP2 PUSH1 0x5 DUP5 GT PUSH2 0x8EF JUMPI JUMPDEST PUSH2 0x8B2 SWAP4 POP PUSH2 0x1F31 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x8C7 JUMPI POP POP PUSH1 0x40 MLOAD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST PUSH1 0xA PUSH2 0x8D4 PUSH1 0x20 SWAP4 PUSH2 0x1AB5 JUMP JUMPDEST SWAP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x2369 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD PUSH1 0x30 SHR PUSH2 0x4E7 JUMP JUMPDEST SWAP2 SWAP3 PUSH2 0x8FA DUP2 PUSH2 0x1AFF JUMP JUMPDEST DUP2 SUB SWAP1 DUP2 GT PUSH2 0x568 JUMPI PUSH2 0x8B2 SWAP4 PUSH1 0xA DUP4 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x2369 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x938 JUMPI POP SWAP2 PUSH2 0x8A8 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x944 SWAP1 PUSH2 0x1AC4 JUMP JUMPDEST SWAP1 PUSH2 0x8A8 JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x20 PUSH2 0x966 NUMBER PUSH2 0x1A83 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 MLOAD SWAP2 AND DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x302 JUMPI PUSH1 0x40 MLOAD SWAP1 DUP1 PUSH1 0x4 SLOAD PUSH2 0x999 DUP2 PUSH2 0x135F JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0x2D8 JUMPI POP PUSH1 0x1 EQ PUSH2 0x9C2 JUMPI PUSH2 0x279 DUP6 PUSH2 0x26D DUP2 DUP8 SUB DUP3 PUSH2 0xAF1 JUMP JUMPDEST SWAP3 POP PUSH1 0x4 DUP4 MSTORE PUSH32 0x8A35ACFBC15FF81A39AE7D344FD709F28E8600B4AA8C65C6B64BFE7FE36BD19B JUMPDEST DUP3 DUP5 LT PUSH2 0xA05 JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0x26D DUP3 PUSH2 0x279 PUSH2 0x25D JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x9EA JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH2 0xA3E PUSH2 0x30A JUMP JUMPDEST AND PUSH1 0x0 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x1 DUP1 PUSH1 0xD0 SHL SUB PUSH2 0xA5D PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH2 0x1C74 JUMP JUMPDEST AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0xA98 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH2 0xA66 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0xA98 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0xA98 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0xC0 DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0xA98 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP1 NOT SWAP2 ADD AND DUP2 ADD SWAP1 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR PUSH2 0xA98 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0xB20 DUP3 PUSH2 0xA7C JUMP JUMPDEST JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT PUSH2 0xA98 JUMPI PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0x305 JUMPI DUP1 CALLDATALOAD SWAP2 PUSH2 0xB51 DUP4 PUSH2 0xB22 JUMP JUMPDEST SWAP3 PUSH2 0xB5F PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0xAF1 JUMP JUMPDEST DUP1 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0x305 JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xB89 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP2 CALLDATALOAD DUP2 MSTORE SWAP1 DUP4 ADD SWAP1 DUP4 ADD PUSH2 0xB7B JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH8 0xFFFFFFFFFFFFFFFF PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x305 JUMPI CALLDATASIZE PUSH1 0x23 DUP3 ADD SLT ISZERO PUSH2 0x305 JUMPI DUP1 PUSH1 0x4 ADD CALLDATALOAD PUSH2 0xBD5 DUP2 PUSH2 0xB22 JUMP JUMPDEST SWAP2 PUSH2 0xBE3 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0xAF1 JUMP JUMPDEST DUP2 DUP4 MSTORE PUSH1 0x20 SWAP2 PUSH1 0x24 DUP4 DUP6 ADD SWAP2 PUSH1 0x5 SHL DUP4 ADD ADD SWAP2 CALLDATASIZE DUP4 GT PUSH2 0x305 JUMPI PUSH1 0x24 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0xC2B JUMPI PUSH1 0x24 CALLDATALOAD DUP6 DUP8 DUP3 GT PUSH2 0x305 JUMPI PUSH2 0xC25 PUSH2 0x65C SWAP3 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0xB3A JUMP JUMPDEST SWAP1 PUSH2 0x1FFB JUMP JUMPDEST DUP4 DUP1 SWAP2 PUSH2 0xC37 DUP5 PUSH2 0x336 JUMP JUMPDEST DUP2 MSTORE ADD SWAP2 ADD SWAP1 PUSH2 0xC02 JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0x370 PUSH2 0xC5E PUSH2 0x30A JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 CALLER PUSH2 0x1399 JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD SWAP1 PUSH1 0xFF DUP3 AND DUP3 SUB PUSH2 0x305 JUMPI JUMP JUMPDEST PUSH1 0x84 CALLDATALOAD SWAP1 PUSH1 0xFF DUP3 AND DUP3 SUB PUSH2 0x305 JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0xCA1 PUSH2 0x30A JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x24 CALLDATALOAD PUSH2 0xCB0 PUSH2 0xC68 JUMP JUMPDEST DUP4 TIMESTAMP GT PUSH2 0xD38 JUMPI PUSH2 0xD2C PUSH2 0x65C SWAP5 PUSH2 0xD33 SWAP3 PUSH1 0x40 MLOAD SWAP1 PUSH1 0x20 DUP3 ADD SWAP3 PUSH32 0xE48329057BFD03D55E49B547132E39CFFD9C1820AD7B9D4C5307691425D15ADF DUP5 MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x40 DUP5 ADD MSTORE DUP7 PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x80 DUP3 MSTORE PUSH2 0xD14 DUP3 PUSH2 0xAB9 JUMP JUMPDEST PUSH2 0xD27 PUSH1 0xA4 CALLDATALOAD SWAP4 PUSH1 0x84 CALLDATALOAD SWAP4 MLOAD SWAP1 KECCAK256 PUSH2 0x1877 JUMP JUMPDEST PUSH2 0x1608 JUMP JUMPDEST SWAP2 DUP3 PUSH2 0x15B2 JUMP JUMPDEST PUSH2 0x10DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2341D787 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0xE0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0xD6A PUSH2 0x30A JUMP JUMPDEST PUSH2 0xD72 PUSH2 0x320 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x64 CALLDATALOAD PUSH2 0xD81 PUSH2 0xC78 JUMP JUMPDEST DUP2 TIMESTAMP GT PUSH2 0xE6C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE DUP3 MLOAD PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 SWAP3 DUP2 ADD SWAP3 DUP4 MSTORE SWAP3 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE SWAP3 DUP7 AND PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0xA0 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xC0 DUP1 DUP3 ADD SWAP5 SWAP1 SWAP5 MSTORE SWAP3 DUP4 MSTORE PUSH2 0xE25 SWAP3 SWAP1 SWAP2 PUSH2 0xE12 PUSH1 0xE0 DUP4 PUSH2 0xAF1 JUMP JUMPDEST PUSH2 0xD27 PUSH1 0xC4 CALLDATALOAD SWAP4 PUSH1 0xA4 CALLDATALOAD SWAP4 MLOAD SWAP1 KECCAK256 PUSH2 0x1877 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND SWAP1 DUP3 AND SUB PUSH2 0xE42 JUMPI POP PUSH2 0x65C SWAP3 PUSH2 0x14AB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x25C00723 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 DUP5 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x313C8981 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH1 0x20 PUSH2 0xED4 PUSH2 0xEA3 PUSH2 0x30A JUMP JUMPDEST PUSH2 0xEAB PUSH2 0x320 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP6 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP3 SWAP1 SWAP4 AND DUP2 MSTORE PUSH1 0x20 SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0xEF6 PUSH2 0x30A JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH4 0xFFFFFFFF DUP3 AND DUP3 SUB PUSH2 0x305 JUMPI PUSH2 0x279 SWAP2 PUSH2 0xF46 SWAP2 PUSH2 0xF17 PUSH2 0x1599 JUMP JUMPDEST POP PUSH2 0xF20 PUSH2 0x1599 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0xF40 PUSH2 0x1599 JUMP JUMPDEST POP PUSH2 0x1CB8 JUMP JUMPDEST POP PUSH1 0x40 MLOAD SWAP1 PUSH2 0xF54 DUP3 PUSH2 0xA7C JUMP JUMPDEST SLOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND DUP1 DUP4 MSTORE PUSH1 0x30 SWAP2 SWAP1 SWAP2 SHR PUSH1 0x20 SWAP3 DUP4 ADD SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP2 DUP3 SWAP2 DUP3 ADD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x305 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x305 JUMPI PUSH2 0xFA9 PUSH2 0x30A JUMP JUMPDEST PUSH2 0xFB1 PUSH2 0x102E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1005 JUMPI PUSH1 0xB SLOAD DUP3 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xA0 SHL DUP3 AND OR PUSH1 0xB SSTORE AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x0 DUP1 LOG3 STOP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1E4FBDF7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH2 0x1026 PUSH2 0x102E JUMP JUMPDEST PUSH2 0xB20 PUSH2 0x105A JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER SUB PUSH2 0x1042 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x118CDAA7 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0xB DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP2 AND SWAP1 SWAP2 SSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 DUP3 DUP1 LOG3 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF PUSH2 0x10AE NUMBER PUSH2 0x1A83 JUMP JUMPDEST AND DUP1 DUP3 LT ISZERO PUSH2 0x10C1 JUMPI POP PUSH2 0x21D SWAP1 PUSH2 0x1A83 JUMP JUMPDEST PUSH1 0x44 SWAP3 POP PUSH1 0x40 MLOAD SWAP2 PUSH4 0x7669FC0F PUSH1 0xE1 SHL DUP4 MSTORE PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP7 DUP6 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP3 AND DUP2 OR SWAP1 SWAP3 SSTORE PUSH2 0xB20 SWAP7 SWAP5 AND SWAP5 PUSH2 0x115C SWAP4 SWAP1 SWAP3 DUP7 SWAP2 SWAP1 PUSH32 0x3134E8A2E6D97E929A7E54011EA5485D7D196DD5F0BA4D4EF95803E8E3FC257F SWAP1 DUP1 LOG4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST SWAP2 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND SWAP4 SWAP3 SWAP2 SWAP1 DUP2 AND SWAP1 DUP2 DUP6 EQ ISZERO DUP1 PUSH2 0x12A7 JUMPI JUMPDEST PUSH2 0x1186 JUMPI JUMPDEST POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH2 0x120B JUMPI JUMPDEST POP POP DUP3 PUSH2 0x119B JUMPI JUMPDEST DUP1 DUP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH32 0xDEC2BACDD2F05B59DE34DA9B523DFF8BE42E5E38E818C82FDB0BAE774387A724 SWAP2 PUSH2 0x11E8 SWAP2 PUSH2 0x11E2 SWAP1 SWAP2 PUSH2 0x1A50 JUMP JUMPDEST SWAP1 PUSH2 0x12B0 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE LOG2 CODESIZE DUP1 DUP1 PUSH2 0x1194 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x122B DUP5 PUSH2 0x1A50 JUMP JUMPDEST PUSH2 0x1234 NUMBER PUSH2 0x1A83 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP2 DUP3 DUP1 PUSH2 0x1248 DUP7 PUSH2 0x1C74 JUMP JUMPDEST AND SWAP2 AND SWAP1 SUB SWAP3 DUP3 DUP5 GT PUSH2 0x568 JUMPI PUSH32 0xDEC2BACDD2F05B59DE34DA9B523DFF8BE42E5E38E818C82FDB0BAE774387A724 SWAP4 PUSH2 0x129D SWAP3 PUSH2 0x1284 SWAP3 PUSH2 0x1E75 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP6 AND DUP4 MSTORE SWAP4 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 DUP3 SWAP2 SWAP1 DUP3 ADD SWAP1 JUMP JUMPDEST SUB SWAP1 LOG2 CODESIZE DUP1 PUSH2 0x118C JUMP JUMPDEST POP DUP4 ISZERO ISZERO PUSH2 0x117A JUMP JUMPDEST SWAP1 PUSH2 0x12BA NUMBER PUSH2 0x1A83 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP2 DUP3 DUP1 PUSH2 0x12CE DUP7 PUSH2 0x1C74 JUMP JUMPDEST AND SWAP2 AND ADD SWAP2 DUP3 GT PUSH2 0x568 JUMPI PUSH2 0x12E2 SWAP3 PUSH2 0x1E75 JUMP JUMPDEST SWAP1 SWAP2 JUMP JUMPDEST PUSH2 0x12EF NUMBER PUSH2 0x1A83 JUMP JUMPDEST SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x1303 PUSH2 0x1C2A JUMP JUMPDEST AND SWAP2 AND ADD SWAP1 DUP2 GT PUSH2 0x568 JUMPI PUSH2 0x12E2 SWAP2 PUSH2 0x1D8C JUMP JUMPDEST PUSH2 0x1320 NUMBER PUSH2 0x1A83 JUMP JUMPDEST SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP1 PUSH2 0x1334 PUSH2 0x1C2A JUMP JUMPDEST AND SWAP2 AND SWAP1 SUB SWAP1 DUP2 GT PUSH2 0x1349 JUMPI PUSH2 0x12E2 SWAP2 PUSH2 0x1D8C JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH2 0x138F JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH2 0x1379 JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP2 PUSH1 0x7F AND SWAP2 PUSH2 0x136E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 DUP6 ISZERO PUSH2 0x1492 JUMPI DUP3 AND DUP1 ISZERO PUSH2 0x1479 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP6 DUP5 DUP8 LT PUSH2 0x144A JUMPI DUP5 PUSH2 0xB20 SWAP7 SWAP8 SUB PUSH2 0x13FB DUP5 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD DUP9 ADD SWAP1 SSTORE SWAP1 MLOAD DUP7 DUP2 MSTORE PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 SWAP1 LOG3 PUSH2 0x22FD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP9 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND SWAP3 SWAP2 SWAP1 DUP4 ISZERO PUSH2 0x1546 JUMPI DUP3 AND SWAP4 DUP5 ISZERO PUSH2 0x152D JUMPI DUP1 PUSH2 0x1523 PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP5 PUSH2 0x150C PUSH1 0x20 SWAP6 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE LOG3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND ISZERO PUSH2 0x1546 JUMPI DUP2 AND ISZERO PUSH2 0x152D JUMPI PUSH2 0x150C PUSH2 0x1596 SWAP3 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x15A6 DUP3 PUSH2 0xA7C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP4 DUP3 DUP2 MSTORE ADD MSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE SWAP1 SWAP2 DUP2 SWAP1 SUB PUSH2 0x15E0 JUMPI POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1D4B623 PUSH1 0xE6 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP2 POP REVERT JUMPDEST SWAP2 PUSH2 0x21D SWAP4 SWAP2 PUSH2 0x1617 SWAP4 PUSH2 0x1620 JUMP JUMPDEST SWAP1 SWAP3 SWAP2 SWAP3 PUSH2 0x16D0 JUMP JUMPDEST SWAP2 SWAP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT PUSH2 0x16A4 JUMPI SWAP3 PUSH1 0x20 SWAP3 SWAP2 PUSH1 0xFF PUSH1 0x80 SWAP6 PUSH1 0x40 MLOAD SWAP5 DUP6 MSTORE AND DUP5 DUP5 ADD MSTORE PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x0 SWAP3 DUP4 SWAP2 DUP3 DUP1 MSTORE PUSH1 0x1 GAS STATICCALL ISZERO PUSH2 0x1698 JUMPI DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x168F JUMPI SWAP2 DUP2 SWAP1 JUMP JUMPDEST POP DUP1 SWAP2 PUSH1 0x1 SWAP2 SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 RETURNDATASIZE SWAP1 DUP3 RETURNDATACOPY RETURNDATASIZE SWAP1 REVERT JUMPDEST POP POP POP PUSH1 0x0 SWAP2 PUSH1 0x3 SWAP2 SWAP1 JUMP JUMPDEST PUSH1 0x4 GT ISZERO PUSH2 0x16BA JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x16D9 DUP2 PUSH2 0x16B0 JUMP JUMPDEST DUP1 PUSH2 0x16E2 JUMPI POP POP JUMP JUMPDEST PUSH2 0x16EB DUP2 PUSH2 0x16B0 JUMP JUMPDEST PUSH1 0x1 DUP2 SUB PUSH2 0x1705 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST PUSH2 0x170E DUP2 PUSH2 0x16B0 JUMP JUMPDEST PUSH1 0x2 DUP2 SUB PUSH2 0x172F JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST DUP1 PUSH2 0x173B PUSH1 0x3 SWAP3 PUSH2 0x16B0 JUMP JUMPDEST EQ PUSH2 0x1743 JUMPI POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST ADDRESS PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x184E JUMPI JUMPDEST ISZERO PUSH2 0x17B8 JUMPI PUSH32 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F DUP3 MSTORE PUSH32 0x0 PUSH1 0x40 DUP3 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xA0 DUP2 MSTORE PUSH2 0x1848 DUP2 PUSH2 0xAD5 JUMP JUMPDEST MLOAD SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST POP PUSH32 0x0 CHAINID EQ PUSH2 0x178F JUMP JUMPDEST PUSH1 0x42 SWAP1 PUSH2 0x1882 PUSH2 0x175D JUMP JUMPDEST SWAP1 PUSH1 0x40 MLOAD SWAP2 PUSH2 0x1901 PUSH1 0xF0 SHL DUP4 MSTORE PUSH1 0x2 DUP4 ADD MSTORE PUSH1 0x22 DUP3 ADD MSTORE KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0xFF DUP2 EQ PUSH2 0x18DB JUMPI PUSH1 0xFF DUP2 AND SWAP1 PUSH1 0x1F DUP3 GT PUSH2 0x18C9 JUMPI PUSH1 0x40 MLOAD SWAP2 PUSH2 0x18BF DUP4 PUSH2 0xA7C JUMP JUMPDEST DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2CD44AC3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x5 SLOAD DUP2 PUSH1 0x0 PUSH2 0x18EE DUP4 PUSH2 0x135F JUMP JUMPDEST DUP1 DUP4 MSTORE SWAP3 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1974 JUMPI POP PUSH1 0x1 EQ PUSH2 0x1915 JUMPI JUMPDEST POP PUSH2 0x21D SWAP3 POP SUB DUP3 PUSH2 0xAF1 JUMP JUMPDEST PUSH1 0x5 PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP2 POP PUSH32 0x36B6384B5ECA791C62761152D0C79BB0604C104A5FB6F4EB0703F3154BB3DB0 JUMPDEST DUP5 DUP4 LT PUSH2 0x1959 JUMPI POP PUSH2 0x21D SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE PUSH2 0x1908 JUMP JUMPDEST DUP2 SWAP4 POP SWAP1 DUP2 PUSH1 0x20 SWAP3 SLOAD DUP4 DUP6 DUP10 ADD ADD MSTORE ADD SWAP2 ADD SWAP1 SWAP2 DUP5 SWAP3 PUSH2 0x1940 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 SWAP3 POP PUSH2 0x21D SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD CODESIZE PUSH2 0x1908 JUMP JUMPDEST PUSH1 0xFF DUP2 EQ PUSH2 0x19B8 JUMPI PUSH1 0xFF DUP2 AND SWAP1 PUSH1 0x1F DUP3 GT PUSH2 0x18C9 JUMPI PUSH1 0x40 MLOAD SWAP2 PUSH2 0x18BF DUP4 PUSH2 0xA7C JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x6 SLOAD DUP2 PUSH1 0x0 PUSH2 0x19CB DUP4 PUSH2 0x135F JUMP JUMPDEST DUP1 DUP4 MSTORE SWAP3 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x1974 JUMPI POP PUSH1 0x1 EQ PUSH2 0x19F1 JUMPI POP PUSH2 0x21D SWAP3 POP SUB DUP3 PUSH2 0xAF1 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 SWAP1 DUP2 MSTORE SWAP2 POP PUSH32 0xF652222313E28459528D920B65115C16C04F3EFC82AAEDC97BE59F3F377C0D3F JUMPDEST DUP5 DUP4 LT PUSH2 0x1A35 JUMPI POP PUSH2 0x21D SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE PUSH2 0x1908 JUMP JUMPDEST DUP2 SWAP4 POP SWAP1 DUP2 PUSH1 0x20 SWAP3 SLOAD DUP4 DUP6 DUP10 ADD ADD MSTORE ADD SWAP2 ADD SWAP1 SWAP2 DUP5 SWAP3 PUSH2 0x1A1C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP2 GT PUSH2 0x1A64 JUMPI AND SWAP1 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP3 MSTORE PUSH1 0xD0 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP2 GT PUSH2 0x1A96 JUMPI AND SWAP1 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP3 MSTORE PUSH1 0x30 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x0 NOT DUP2 ADD SWAP2 SWAP1 DUP3 GT PUSH2 0x568 JUMPI JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x568 JUMPI JUMP JUMPDEST SWAP2 SWAP1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x568 JUMPI JUMP JUMPDEST DUP2 ISZERO PUSH2 0x1AE9 JUMPI DIV SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x21D JUMPI PUSH1 0x1 DUP2 PUSH1 0x1 PUSH1 0x80 SHL DUP2 LT ISZERO PUSH2 0x1C18 JUMPI JUMPDEST PUSH2 0x1BC0 PUSH2 0x1BB6 PUSH2 0x1BAC PUSH2 0x1BA2 PUSH2 0x1B98 PUSH2 0x1B8E PUSH2 0x1BCC SWAP8 PUSH1 0x4 DUP9 PUSH1 0x1 PUSH1 0x40 SHL PUSH2 0x1BC7 SWAP11 LT ISZERO PUSH2 0x1C0B JUMPI JUMPDEST PUSH5 0x100000000 DUP2 LT ISZERO PUSH2 0x1BFE JUMPI JUMPDEST PUSH3 0x10000 DUP2 LT ISZERO PUSH2 0x1BF1 JUMPI JUMPDEST PUSH2 0x100 DUP2 LT ISZERO PUSH2 0x1BE5 JUMPI JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x1BD9 JUMPI JUMPDEST LT ISZERO PUSH2 0x1BD1 JUMPI JUMPDEST PUSH1 0x3 MUL PUSH1 0x1 SHR PUSH2 0x1B87 DUP2 DUP12 PUSH2 0x1ADF JUMP JUMPDEST ADD PUSH1 0x1 SHR SWAP1 JUMP JUMPDEST PUSH2 0x1B87 DUP2 DUP11 PUSH2 0x1ADF JUMP JUMPDEST PUSH2 0x1B87 DUP2 DUP10 PUSH2 0x1ADF JUMP JUMPDEST PUSH2 0x1B87 DUP2 DUP9 PUSH2 0x1ADF JUMP JUMPDEST PUSH2 0x1B87 DUP2 DUP8 PUSH2 0x1ADF JUMP JUMPDEST PUSH2 0x1B87 DUP2 DUP7 PUSH2 0x1ADF JUMP JUMPDEST DUP1 SWAP4 PUSH2 0x1ADF JUMP JUMPDEST DUP3 GT SWAP1 JUMP JUMPDEST SWAP1 SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 SHL PUSH2 0x1B77 JUMP JUMPDEST DUP2 SHR SWAP2 PUSH1 0x2 SHL SWAP2 PUSH2 0x1B70 JUMP JUMPDEST PUSH1 0x8 SHR SWAP2 DUP2 SHL SWAP2 PUSH2 0x1B66 JUMP JUMPDEST PUSH1 0x10 SHR SWAP2 PUSH1 0x8 SHL SWAP2 PUSH2 0x1B5B JUMP JUMPDEST PUSH1 0x20 SHR SWAP2 PUSH1 0x10 SHL SWAP2 PUSH2 0x1B4F JUMP JUMPDEST PUSH1 0x40 SHR SWAP2 PUSH1 0x20 SHL SWAP2 PUSH2 0x1B41 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x40 SHL SWAP1 POP PUSH1 0x80 DUP3 SWAP1 SHR PUSH2 0x1B18 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x0 SWAP1 DUP1 PUSH2 0x1C3C JUMPI POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DUP2 ADD GT PUSH2 0x568 JUMPI PUSH1 0xA PUSH32 0xC65A7BB8D6351C1CF70C95A316CC6A92839C986682D98BC35F958F4883F9D2A7 SWAP3 MSTORE ADD SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x0 SWAP2 DUP2 PUSH2 0x1C86 JUMPI POP POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x0 NOT SWAP3 DUP3 DUP5 DUP2 ADD GT PUSH2 0x568 JUMPI PUSH1 0x20 SWAP2 DUP2 MSTORE KECCAK256 ADD ADD SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 SLOAD DUP3 LT ISZERO PUSH2 0x1CD0 JUMPI PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SWAP1 PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x1CA2 JUMP JUMPDEST PUSH1 0xA SLOAD SWAP1 PUSH1 0x1 PUSH1 0x40 SHL DUP3 LT ISZERO PUSH2 0xA98 JUMPI PUSH1 0x1 DUP3 ADD DUP1 PUSH1 0xA SSTORE DUP3 LT ISZERO PUSH2 0x1CD0 JUMPI PUSH1 0xA PUSH1 0x0 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD MLOAD PUSH1 0x30 SHL PUSH6 0xFFFFFFFFFFFF NOT AND PUSH6 0xFFFFFFFFFFFF SWAP2 SWAP1 SWAP2 AND OR PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x2369 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 SWAP2 ADD SSTORE JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x40 SHL DUP2 LT ISZERO PUSH2 0xA98 JUMPI PUSH2 0x1D4B SWAP2 PUSH1 0x1 DUP3 ADD DUP2 SSTORE PUSH2 0x1CB8 JUMP JUMPDEST PUSH2 0x1D76 JUMPI DUP2 MLOAD PUSH1 0x20 SWAP1 SWAP3 ADD MLOAD PUSH1 0x30 SHL PUSH6 0xFFFFFFFFFFFF NOT AND PUSH6 0xFFFFFFFFFFFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0xA SLOAD SWAP2 SWAP3 SWAP2 DUP1 ISZERO PUSH2 0x1E4B JUMPI PUSH2 0x1DA4 PUSH2 0x1DBC SWAP2 PUSH2 0x1AB5 JUMP JUMPDEST PUSH1 0xA PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x2369 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 JUMP JUMPDEST SWAP1 DUP2 SLOAD SWAP2 PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP5 AND SWAP2 DUP4 AND DUP1 DUP4 GT PUSH2 0x1E39 JUMPI DUP7 SWAP3 SUB PUSH2 0x1E01 JUMPI PUSH2 0x1DFA SWAP3 POP SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 SLOAD SWAP2 DUP2 NOT SWAP1 PUSH1 0x30 SHL AND SWAP2 AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x30 SHR SWAP2 SWAP1 JUMP JUMPDEST POP POP PUSH2 0x1E34 SWAP1 PUSH2 0x1E20 PUSH2 0x1E12 PUSH2 0xB13 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP3 AND DUP3 MSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x1CD5 JUMP JUMPDEST PUSH2 0x1DFA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2520601D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST POP PUSH2 0x1E6F SWAP1 PUSH2 0x1E5B PUSH2 0x1E12 PUSH2 0xB13 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x1CD5 JUMP JUMPDEST PUSH1 0x0 SWAP2 SWAP1 JUMP JUMPDEST DUP1 SLOAD SWAP3 SWAP4 SWAP3 DUP1 ISZERO PUSH2 0x1F0C JUMPI PUSH2 0x1E8C PUSH2 0x1E99 SWAP2 PUSH2 0x1AB5 JUMP JUMPDEST DUP3 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SWAP1 JUMP JUMPDEST SWAP2 DUP3 SLOAD SWAP3 PUSH6 0xFFFFFFFFFFFF SWAP2 DUP3 DUP6 AND SWAP3 DUP2 AND DUP1 DUP5 GT PUSH2 0x1E39 JUMPI DUP8 SWAP4 SUB PUSH2 0x1ED8 JUMPI POP PUSH2 0x1DFA SWAP3 POP SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 SLOAD SWAP2 DUP2 NOT SWAP1 PUSH1 0x30 SHL AND SWAP2 AND OR SWAP1 SSTORE JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1E34 SWAP2 PUSH2 0x1EF8 PUSH2 0x1EEA PUSH2 0xB13 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP4 AND DUP4 MSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP7 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x1D2E JUMP JUMPDEST POP SWAP1 PUSH2 0x1E6F SWAP2 PUSH2 0x1F1D PUSH2 0x1EEA PUSH2 0xB13 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x1D2E JUMP JUMPDEST SWAP1 JUMPDEST DUP3 DUP2 LT PUSH2 0x1F3F JUMPI POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 DUP1 DUP3 AND SWAP1 DUP1 DUP4 XOR PUSH1 0x1 SHR DUP3 ADD DUP1 SWAP3 GT PUSH2 0x568 JUMPI PUSH1 0xA PUSH1 0x0 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x2369 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x1F88 JUMPI POP SWAP2 JUMPDEST SWAP1 PUSH2 0x1F33 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x1F94 SWAP1 PUSH2 0x1AC4 JUMP JUMPDEST SWAP1 PUSH2 0x1F82 JUMP JUMPDEST SWAP2 SWAP1 JUMPDEST DUP4 DUP3 LT PUSH2 0x1FAA JUMPI POP POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 SWAP3 DUP1 DUP4 AND SWAP1 DUP1 DUP5 XOR PUSH1 0x1 SHR DUP3 ADD DUP1 SWAP3 GT PUSH2 0x568 JUMPI PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 SWAP1 KECCAK256 DUP3 ADD SLOAD PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 AND SWAP1 DUP5 AND LT ISZERO PUSH2 0x1FE9 JUMPI POP SWAP3 JUMPDEST SWAP2 SWAP1 PUSH2 0x1F9D JUMP JUMPDEST SWAP4 SWAP3 POP PUSH2 0x1FF5 SWAP1 PUSH2 0x1AC4 JUMP JUMPDEST SWAP2 PUSH2 0x1FE2 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 PUSH2 0x2006 PUSH2 0x102E JUMP JUMPDEST DUP1 MLOAD DUP4 MLOAD SUB PUSH2 0x20C2 JUMPI PUSH2 0x201B DUP2 MLOAD ISZERO ISZERO PUSH2 0x2100 JUMP JUMPDEST PUSH1 0x0 DUP1 JUMPDEST DUP3 MLOAD DUP3 LT ISZERO PUSH2 0x20B5 JUMPI PUSH2 0x2088 PUSH2 0x20AF SWAP2 PUSH2 0x2062 PUSH2 0x205B PUSH2 0x204F PUSH2 0x2042 DUP8 DUP10 PUSH2 0x214A JUMP JUMPDEST MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST ISZERO ISZERO PUSH2 0x215E JUMP JUMPDEST PUSH2 0x2077 PUSH2 0x206F DUP6 DUP10 PUSH2 0x214A JUMP JUMPDEST MLOAD ISZERO ISZERO PUSH2 0x2199 JUMP JUMPDEST PUSH2 0x2081 DUP5 DUP9 PUSH2 0x214A JUMP JUMPDEST MLOAD SWAP1 PUSH2 0x1AD2 JUMP JUMPDEST SWAP2 PUSH2 0x20AA PUSH2 0x2099 PUSH2 0x2042 DUP4 DUP8 PUSH2 0x214A JUMP JUMPDEST PUSH2 0x20A3 DUP4 DUP10 PUSH2 0x214A JUMP JUMPDEST MLOAD SWAP1 PUSH2 0x21D3 JUMP JUMPDEST PUSH2 0x213B JUMP JUMPDEST SWAP1 PUSH2 0x201F JUMP JUMPDEST POP POP POP SWAP1 POP PUSH2 0xB20 PUSH2 0x101E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x82E4E4C2F2E640D8CADCCEE8D040DAD2E6DAC2E8C6D PUSH1 0x53 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x2107 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x456D70747920617272617973 PUSH1 0xA0 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH2 0x568 JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST DUP1 MLOAD DUP3 LT ISZERO PUSH2 0x1CD0 JUMPI PUSH1 0x20 SWAP2 PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST ISZERO PUSH2 0x2165 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x5A65726F2061646472657373 PUSH1 0xA0 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST ISZERO PUSH2 0x21A0 JUMPI JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xB PUSH1 0x24 DUP3 ADD MSTORE PUSH11 0x16995C9BC8185B5BDD5B9D PUSH1 0xAA SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP1 ISZERO PUSH2 0x1479 JUMPI PUSH1 0x2 SLOAD DUP3 DUP2 ADD DUP1 SWAP2 GT PUSH2 0x568 JUMPI PUSH1 0x2 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD DUP7 ADD SWAP1 SSTORE MLOAD DUP5 DUP2 MSTORE PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 SWAP1 LOG3 PUSH1 0x2 SLOAD SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 GT PUSH2 0x2259 JUMPI PUSH2 0xB20 SWAP3 SWAP4 POP PUSH2 0x227F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xE58AE93 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST SWAP1 PUSH2 0xB20 SWAP2 PUSH2 0x2295 PUSH2 0x2290 DUP4 PUSH2 0x1A50 JUMP JUMPDEST PUSH2 0x12E6 JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x22E5 JUMPI JUMPDEST PUSH1 0x8 PUSH1 0x20 MSTORE PUSH32 0x5EFF886EA0CE6CA488A3D6E336D6C0F75F46D19B42C06CE5EE98E42C96D256C7 SLOAD PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x40 SWAP1 SWAP3 KECCAK256 SLOAD DUP2 AND SWAP2 AND PUSH2 0x115E JUMP JUMPDEST PUSH2 0x22F6 PUSH2 0x22F1 DUP5 PUSH2 0x1A50 JUMP JUMPDEST PUSH2 0x1317 JUMP JUMPDEST POP POP PUSH2 0x22AA JUMP JUMPDEST PUSH2 0xB20 SWAP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND SWAP2 SWAP1 DUP2 SWAP1 DUP4 ISZERO PUSH2 0x2355 JUMPI JUMPDEST AND SWAP2 DUP3 ISZERO PUSH2 0x2342 JUMPI JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE DUP1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND SWAP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND SWAP1 PUSH2 0x115E JUMP JUMPDEST PUSH2 0x234E PUSH2 0x22F1 DUP6 PUSH2 0x1A50 JUMP JUMPDEST POP POP PUSH2 0x2321 JUMP JUMPDEST PUSH2 0x2361 PUSH2 0x2290 DUP7 PUSH2 0x1A50 JUMP JUMPDEST POP POP PUSH2 0x2318 JUMP INVALID 0xC6 GAS PUSH28 0xB8D6351C1CF70C95A316CC6A92839C986682D98BC35F958F4883F9D2 0xA8 LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ADD AND 0x23 0x4F 0xDE 0xDB DUP6 PUSH6 0x72CF71350EC4 DUP15 0xC 0xD0 0x4D ADDRESS 0xB3 AND 0xAB 0xCA EXTCODEHASH 0xD 0xA9 SAR 0xC1 DUP1 0xC 0xE6 STATICCALL PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"449:1961:50:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;;;;;;;;-1:-1:-1;449:1961:50;;;;;;;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;449:1961:50;;;;;;:::o;:::-;;;;-1:-1:-1;;;;;449:1961:50;;;;;;:::o;:::-;;;-1:-1:-1;;;;;449:1961:50;;;;;;:::o;:::-;;;;;;-1:-1:-1;;449:1961:50;;;;8823:4:21;449:1961:50;;:::i;:::-;;;735:10:30;;8823:4:21;:::i;:::-;449:1961:50;;;8823:4:21;449:1961:50;;;;;;;;;-1:-1:-1;;449:1961:50;;;;;2908:12:21;449:1961:50;;;;;;;;;;;;;-1:-1:-1;;449:1961:50;;;;;;:::i;:::-;;;:::i;:::-;-1:-1:-1;;;;;449:1961:50;;-1:-1:-1;449:1961:50;;;;;;;;;;;;735:10:30;449:1961:50;;;;;;;;;;;;;-1:-1:-1;;10561:36:21;;10557:309;;449:1961:50;4967:5:21;;;;:::i;:::-;449:1961:50;;3638:11:21;449:1961:50;;;;;10557:309:21;10617:24;;;10613:130;;10835:5;449:1961:50;4967:5:21;449:1961:50;;735:10:30;10835:5:21;;:::i;:::-;10557:309;;10613:130;449:1961:50;;-1:-1:-1;;;10668:60:21;;735:10:30;449:1961:50;10668:60:21;;449:1961:50;;;;;;;;;;;;;;;10668:60:21;449:1961:50;;;;;;-1:-1:-1;;449:1961:50;;;;;;;2761:2:21;449:1961:50;;;;;;;;;-1:-1:-1;;449:1961:50;;;;;2744:20:23;;:::i;:::-;449:1961:50;;;;;;;;;;;;-1:-1:-1;;449:1961:50;;;;-1:-1:-1;;;;;449:1961:50;;:::i;:::-;;-1:-1:-1;449:1961:50;;;4411:20:12;449:1961:50;;;;;;4459:29:12;449:1961:50;;4459:29:12;:::i;:::-;449:1961:50;;;9738:15:46;9763:18;;9802:1;9796:7;;9792:234;;449:1961:50;10050:53:46;;449:1961:50;10050:53:46;;;;;:::i;:::-;10121:8;;;:63;;;449:1961:50;;-1:-1:-1;;;;;449:1961:50;;;;;;10121:63:46;10169:7;;;;;;:::i;:::-;14441:109;;;;;449:1961:50;;;10121:63:46;;9792:234;9839:14;;;;:::i;:::-;449:1961:50;;;;;;;;14441:109:46;10050:53;14441:109;;;;449:1961:50;14441:109:46;;;;;;449:1961:50;;;;;9871:48:46;9867:149;449:1961:50;;;9939:10:46;9867:149;;9792:234;;;;;;9867:149;9994:7;;;;;;:::i;:::-;9867:149;;;449:1961:50;;:::i;:::-;;;;;;-1:-1:-1;;449:1961:50;;;;1002:31:48;1020:12;1002:31;:::i;:::-;449:1961:50;1020:12:48;1002:31;1020:12;1002:31;:::i;:::-;449:1961:50;;;3169:29:12;3165:93;;449:1961:50;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;3165:93:12:-;449:1961:50;;-1:-1:-1;;;3221:26:12;;449:1961:50;;3221:26:12;449:1961:50;;;;;;-1:-1:-1;;449:1961:50;;;;;-1:-1:-1;;;;;449:1961:50;;;:::i;:::-;;-1:-1:-1;449:1961:50;5674:10:12;449:1961:50;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;-1:-1:-1;;449:1961:50;;;;5903:9:12;449:1961:50;;:::i;:::-;735:10:30;5903:9:12;:::i;:::-;449:1961:50;;;;;;;-1:-1:-1;;449:1961:50;;;;-1:-1:-1;;;;;449:1961:50;;:::i;:::-;;-1:-1:-1;449:1961:50;8741:20:12;449:1961:50;;;-1:-1:-1;449:1961:50;;;15374:24:44;;;;15370:103;;449:1961:50;;;;;;;;;15370:103:44;449:1961:50;;;;15421:41:44;;;;;;449:1961:50;;15421:41:44;;449:1961:50;;;;;15421:41:44;449:1961:50;;;;;;-1:-1:-1;;449:1961:50;;;;;;;;:::i;:::-;-1:-1:-1;;;;;449:1961:50;3076:9:21;449:1961:50;;;;;;;;;;;;2985:116:21;449:1961:50;;;;;;-1:-1:-1;;449:1961:50;;;;1500:62:2;;:::i;:::-;2376:10;;:::i;449:1961:50:-;;;;;;-1:-1:-1;;449:1961:50;;;;-1:-1:-1;;;;;449:1961:50;;:::i;:::-;;-1:-1:-1;449:1961:50;624:7:32;449:1961:50;;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;;;;;;;;6198:5:38;:41;:5;:41;:::i;:::-;6653:47;:8;:47;:::i;:::-;449:1961:50;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;5689:13:38;;449:1961:50;;;;5724:4:38;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;;;;-1:-1:-1;;449:1961:50;;;;1710:6:2;449:1961:50;;;-1:-1:-1;;;;;449:1961:50;;;;;;;;;;;;;;-1:-1:-1;;449:1961:50;;;;5270:29:12;449:1961:50;;5270:29:12;:::i;:::-;5234:17;449:1961:50;9738:15:46;-1:-1:-1;9763:18:46;9796:7;9802:1;9796:7;;9792:234;;449:1961:50;10050:53:46;;;;:::i;:::-;-1:-1:-1;10121:8:46;;;-1:-1:-1;;449:1961:50;;-1:-1:-1;449:1961:50;;;;;10121:63:46;5234:17:12;10169:7:46;449:1961:50;10169:7:46;;:::i;:::-;14441:109;;-1:-1:-1;;;;;;;;;;;14441:109:46;449:1961:50;;;10121:63:46;;9792:234;9839:14;;;;;:::i;:::-;449:1961:50;;;;;;;10050:53:46;14441:109;5234:17:12;14441:109:46;;449:1961:50;14441:109:46;;-1:-1:-1;;;;;;;;;;;14441:109:46;449:1961:50;;;;;9871:48:46;9867:149;449:1961:50;;;9939:10:46;9867:149;9792:234;;9867:149;9994:7;;;;;;:::i;:::-;9867:149;9792:234;;449:1961:50;;;;;;-1:-1:-1;;449:1961:50;;;;;1002:31:48;1020:12;1002:31;:::i;:::-;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;449:1961:50;;;;-1:-1:-1;;;;;449:1961:50;;:::i;:::-;;-1:-1:-1;449:1961:50;3868:20:12;449:1961:50;;;;;;;;3868:38:12;449:1961:50;-1:-1:-1;449:1961:50;3868:38:12;:::i;:::-;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;:::i;:::-;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;2079:95:38;449:1961:50;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;:::o;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;-1:-1:-1;;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1222:756;449:1961;;;;;;:::i;:::-;1222:756;;:::i;449:1961::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;;449:1961:50;;;;3440:5:21;449:1961:50;;:::i;:::-;;;735:10:30;;3440:5:21;:::i;449:1961:50:-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;449:1961:50;;;;;;:::i;:::-;;;;;;;;:::i;:::-;6185:15:12;;:24;6181:91;;6298:168;6535:9;449:1961:50;6501:5:12;449:1961:50;;;6352:57:12;449:1961:50;6352:57:12;;449:1961:50;2063:71:12;449:1961:50;;;;;;;;;;2063:71:12;;449:1961:50;2063:71:12;449:1961:50;2063:71:12;;449:1961:50;;2063:71:12;;449:1961:50;;6352:57:12;;;;;:::i;:::-;6325:86;449:1961:50;;;;;;;6342:68:12;;6325:86;:::i;:::-;6298:168;:::i;:::-;6501:5;;;:::i;:::-;6535:9;:::i;6181:91::-;449:1961:50;;-1:-1:-1;;;6232:29:12;;449:1961:50;6232:29:12;;449:1961:50;;;;;6232:29:12;449:1961:50;;;;;;-1:-1:-1;;449:1961:50;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;:::i;:::-;1886:15:23;;:26;1882:97;;-1:-1:-1;;;;;449:1961:50;;;-1:-1:-1;449:1961:50;;;1121:7:32;449:1961:50;;;;;;;;;;;;;;;;;;;1024:95:23;2020:78;;;449:1961:50;;;1024:95:23;;;449:1961:50;;;;;;;1024:95:23;;;449:1961:50;1024:95:23;;;449:1961:50;;;;1024:95:23;;449:1961:50;;;;1024:95:23;;;;449:1961:50;;;;2020:78:23;;;2181:28;;2020:78;;;1024:95;449:1961:50;2020:78:23;:::i;:::-;2125:28;449:1961:50;;;;;;;2010:89:23;;2125:28;:::i;2181:::-;-1:-1:-1;;;;;449:1961:50;;;;;;2223:15:23;2219:88;;8823:4:21;;;;:::i;2219:88:23:-;449:1961:50;;-1:-1:-1;;;2261:35:23;;-1:-1:-1;;;;;449:1961:50;;;;2261:35:23;;449:1961:50;;;;1024:95:23;;;449:1961:50;1024:95:23;;10668:60:21;1882:97:23;449:1961:50;;-1:-1:-1;;;1935:33:23;;449:1961:50;1935:33:23;;449:1961:50;;;;;1935:33:23;449:1961:50;;;;;;-1:-1:-1;;449:1961:50;;;;;3638:27:21;449:1961:50;;:::i;:::-;;;:::i;:::-;-1:-1:-1;;;;;449:1961:50;;;-1:-1:-1;449:1961:50;;;;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;;;;;;3638:27:21;449:1961:50;;;;;;;;;;;;;-1:-1:-1;;449:1961:50;;;;;;:::i;:::-;;;;;;;;;;;;;11454:22:46;449:1961:50;;;:::i;:::-;;;;:::i;:::-;-1:-1:-1;;;;;;449:1961:50;-1:-1:-1;449:1961:50;;;9019:20:12;449:1961:50;;;;;;;:::i;:::-;;11454:22:46;:::i;:::-;449:1961:50;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;449:1961:50;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;449:1961:50;;;;;;:::i;:::-;1500:62:2;;:::i;:::-;-1:-1:-1;;;;;449:1961:50;;;;2627:22:2;;2623:91;;3004:6;449:1961:50;;;;;;;;3004:6:2;449:1961:50;;3052:40:2;-1:-1:-1;3052:40:2;;449:1961:50;2623:91:2;449:1961:50;;-1:-1:-1;;;2672:31:2;;-1:-1:-1;449:1961:50;2672:31:2;;449:1961:50;;;2672:31:2;1500:62;;;:::i;:::-;2376:10;;:::i;1796:162::-;1710:6;449:1961:50;-1:-1:-1;;;;;449:1961:50;735:10:30;1855:23:2;1851:101;;1796:162::o;1851:101::-;449:1961:50;;-1:-1:-1;;;1901:40:2;;735:10:30;1901:40:2;;;449:1961:50;;;1901:40:2;2912:187;3004:6;449:1961:50;;-1:-1:-1;;;;;;449:1961:50;;;;;;;-1:-1:-1;;;;;449:1961:50;3052:40:2;449:1961:50;;3052:40:2;2912:187::o;3415:273:12:-;449:1961:50;1002:31:48;1020:12;1002:31;:::i;:::-;449:1961:50;3550:29:12;;;;3546:90;;3653:28;;;;:::i;3546:90::-;449:1961:50;;;;;3588:48:12;;;;;;;;;449:1961:50;;;;;3588:48:12;6730:312;-1:-1:-1;;;;;449:1961:50;;;-1:-1:-1;449:1961:50;;;5674:10:12;449:1961:50;;;;;;;;;;-1:-1:-1;;;;;;449:1961:50;;;;;;;7010:24:12;;449:1961:50;;;3137:18:24;;449:1961:50;;;;;6909:48:12;;-1:-1:-1;6909:48:12;-1:-1:-1;;;;;449:1961:50;3076:9:21;449:1961:50;;;;;;;;;;;;2985:116:21;3137:18:24;7010:24:12;7761:789;-1:-1:-1;;;;;449:1961:50;;;;7761:789:12;;449:1961:50;;;;7862:10:12;;;;;:24;;7761:789;7858:686;;7761:789;;;;;;:::o;7858:686::-;7906:18;7902:315;;7858:686;8234:16;;;8230:304;;7858:686;;;;;8230:304;-1:-1:-1;;;;;449:1961:50;;;;;8010:20:12;449:1961:50;;;;;8475:44:12;;8309:143;;8408:26;;;;:::i;:::-;8309:143;;:::i;:::-;449:1961:50;;;-1:-1:-1;;;;;449:1961:50;;;;;;;;;;;;;8475:44:12;8230:304;;;;;7902:315;-1:-1:-1;;;;;449:1961:50;;;;;8010:20:12;449:1961:50;;;;;8089:26:12;;;:::i;:::-;1002:31:48;1020:12;1002:31;:::i;:::-;-1:-1:-1;;;;;449:1961:50;;;9312:14:12;;;:::i;:::-;449:1961:50;;;;;;;;;;;8156:46:12;8311:38:46;8156:46:12;8311:38:46;;;;:::i;:::-;449:1961:50;;;;;;;;;;;;;;;;;;;;;;8156:46:12;;;;7902:315;;;;7862:24;7876:10;;;;7862:24;;9069:273;;1002:31:48;1020:12;1002:31;:::i;:::-;-1:-1:-1;;;;;449:1961:50;;;9312:14:12;;;:::i;:::-;449:1961:50;;;;;;;;;8311:38:46;;;:::i;:::-;9282:53:12;;9069:273::o;:::-;1002:31:48;1020:12;1002:31;:::i;:::-;449:1961:50;-1:-1:-1;;;;;449:1961:50;;;9312:14:12;;:::i;:::-;449:1961:50;;;;;;;;;8311:38:46;;;:::i;9069:273:12:-;1002:31:48;1020:12;1002:31;:::i;:::-;449:1961:50;-1:-1:-1;;;;;449:1961:50;;;9312:14:12;;:::i;:::-;449:1961:50;;;;;;;;;;8311:38:46;;;:::i;449:1961:50:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;5374:300:21;-1:-1:-1;;;;;449:1961:50;;;;5374:300:21;;;;5457:18;;5453:86;;449:1961:50;;5552:16:21;;5548:86;;-1:-1:-1;;;;;449:1961:50;;5473:1:21;449:1961:50;;;;;;;;;;;6321:19:21;;;;6317:115;;449:1961:50;2756:5:24;449:1961:50;;;6552:15:21;;449:1961:50;;;;;;5473:1:21;449:1961:50;5473:1:21;449:1961:50;;;5473:1:21;449:1961:50;;;6552:15:21;449:1961:50;-1:-1:-1;;;;;449:1961:50;;5473:1:21;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;7064:25:21;;449:1961:50;7064:25:21;2756:5:24;:::i;6317:115:21:-;449:1961:50;;-1:-1:-1;;;6367:50:21;;-1:-1:-1;;;;;449:1961:50;;6367:50:21;;;449:1961:50;;;;;;;;;;;;;;;10668:60:21;5548:86;449:1961:50;;-1:-1:-1;;;5591:32:21;;5473:1;5591:32;;;449:1961:50;;;5591:32:21;5453:86;449:1961:50;;-1:-1:-1;;;5498:30:21;;5473:1;5498:30;;;449:1961:50;;;5498:30:21;9682:432;-1:-1:-1;;;;;449:1961:50;;;;9682:432:21;;9794:19;;9790:89;;449:1961:50;;9892:21:21;;;9888:90;;9987:18;:27;10066:31;9987:18;;449:1961:50;9987:18:21;449:1961:50;;;;;;;;;;;;;;;;9987:18:21;449:1961:50;;;;;;;;;;;;;;;;9987:27:21;449:1961:50;;;;;;10066:31:21;9682:432::o;9888:90::-;449:1961:50;;-1:-1:-1;;;9936:31:21;;-1:-1:-1;9936:31:21;;;449:1961:50;;;9936:31:21;9790:89;449:1961:50;;-1:-1:-1;;;9836:32:21;;9811:1;9836:32;;;449:1961:50;;;9836:32:21;9682:432;;-1:-1:-1;;;;;449:1961:50;;;9794:19:21;9790:89;;449:1961:50;;9892:21:21;9888:90;;9987:18;:27;:18;449:1961:50;;;;;;;;;;;;;;;;9987:27:21;449:1961:50;9682:432:21:o;449:1961:50:-;;;;;;;:::i;:::-;-1:-1:-1;449:1961:50;;;;;;;:::o;1265:222:32:-;-1:-1:-1;;;;;449:1961:50;;-1:-1:-1;449:1961:50;;;1121:7:32;449:1961:50;;;;;;;;;;;;;;;1396:16:32;;;1392:89;;1265:222;;:::o;1392:89::-;449:1961:50;;-1:-1:-1;;;1435:35:32;;-1:-1:-1;;;;;449:1961:50;;;1435:35:32;;;449:1961:50;;;;;;;-1:-1:-1;1435:35:32;6887:260:37;;7105:8;6887:260;;7051:25;6887:260;7051:25;:::i;:::-;7105:8;;;;;:::i;5203:1551::-;;;6283:66;6270:79;;6266:164;;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6541:24:37;;;;;;;;;;;;;;-1:-1:-1;;;;;449:1961:50;;6579:20:37;6575:113;;6698:49;;5203:1551;:::o;6575:113::-;6615:62;;;6541:24;6615:62;;:::o;6541:24::-;449:1961:50;;;;;;;;;;6266:164:37;6365:54;;;6381:1;6365:54;6385:30;6365:54;;:::o;449:1961:50:-;;-1:-1:-1;449:1961:50;;;:::o;:::-;;;;;;;;;;;;7280:532:37;449:1961:50;;;:::i;:::-;7366:29:37;;;7411:7;;:::o;7362:444::-;449:1961:50;;;:::i;:::-;7471:29:37;7462:38;;7471:29;;449:1961:50;;-1:-1:-1;;;7523:23:37;;;;;7458:348;449:1961:50;;;:::i;:::-;7576:35:37;7567:44;;7576:35;;449:1961:50;;-1:-1:-1;;;7634:46:37;;;;;449:1961:50;;;;;10668:60:21;7563:243:37;449:1961:50;;7710:30:37;449:1961:50;;:::i;:::-;7701:39:37;7697:109;;7563:243;7280:532::o;7697:109::-;449:1961:50;;-1:-1:-1;;;7763:32:37;;;;;449:1961:50;;;;;;10668:60:21;3945:262:38;4029:4;4038:11;-1:-1:-1;;;;;449:1961:50;4021:28:38;;:63;;3945:262;4017:184;;;4107:22;4100:29;:::o;4017:184::-;449:1961:50;;4304:80:38;;;449:1961:50;2079:95:38;449:1961:50;;4326:11:38;449:1961:50;2079:95:38;;449:1961:50;4339:14:38;2079:95;;;449:1961:50;4355:13:38;2079:95;;;449:1961:50;4029:4:38;449:1961:50;2079:95:38;;449:1961:50;;4304:80:38;;;;;:::i;:::-;449:1961:50;4294:91:38;;4160:30;:::o;4021:63::-;4070:14;;4053:13;:31;4021:63;;5017:176;3993:249:39;5017:176:38;5153:20;;:::i;:::-;3993:249:39;;;;-1:-1:-1;;;3993:249:39;;;;;;;;;;;5017:176:38;:::o;3368:267:34:-;1390:66;3491:46;;1390:66;;;2625:40;;2679:11;2688:2;2679:11;;2675:69;;449:1961:50;;;;;;:::i;:::-;2324:106:34;;2311:2;449:1961:50;;2324:106:34;3553:22;:::o;2675:69::-;449:1961:50;;-1:-1:-1;;;2713:20:34;;;;;3487:142;-1:-1:-1;449:1961:50;;6225:13:38;449:1961:50;;-1:-1:-1;449:1961:50;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;1390:66:34;;;;;;;:::i;449:1961:50:-;6225:13:38;-1:-1:-1;449:1961:50;;;-1:-1:-1;;449:1961:50;;;;;;;-1:-1:-1;1390:66:34;;-1:-1:-1;;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1390:66:34;449:1961:50;;;;;;;;;;;;6225:13:38;449:1961:50;;;;;;;3368:267:34;1390:66;3491:46;;1390:66;;;2625:40;;2679:11;2688:2;2679:11;;2675:69;;449:1961:50;;;;;;:::i;3487:142:34:-;-1:-1:-1;449:1961:50;;6683:16:38;449:1961:50;;-1:-1:-1;449:1961:50;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;1390:66:34;;;;;;;:::i;449:1961:50:-;6683:16:38;-1:-1:-1;449:1961:50;;;-1:-1:-1;;449:1961:50;;;;;;;-1:-1:-1;1390:66:34;;-1:-1:-1;;449:1961:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4174:218:44;-1:-1:-1;;;;;449:1961:50;4254:25:44;;;4250:105;;449:1961:50;4174:218:44;:::o;4250:105::-;449:1961:50;;;;15421:41:44;;;;4302:42;;449:1961:50;4302:42:44;;;449:1961:50;;;;;4302:42:44;14296:213;449:1961:50;14374:24:44;;;;14370:103;;449:1961:50;14296:213:44;:::o;14370:103::-;449:1961:50;;;;15421:41:44;;;;14421;;14452:2;14421:41;;;449:1961:50;;;;;14421:41:44;449:1961:50;-1:-1:-1;;449:1961:50;;;;;;;;:::o;:::-;;10000:1:46;449:1961:50;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;;;:::o;:::-;;;;;;;;;;;;20567:5181:43;20733:1;20728:6;;;20724:53;;20733:1;21704:14;-1:-1:-1;;;21765:16:43;;;21761:92;;20567:5181;25314:18;25204;25094;24985;24874;24765;25703:28;21870:15;22385:6;21870:15;-1:-1:-1;;;25724:6:43;21870:15;;;21866:90;;20567:5181;21980:7;21973:15;;;21969:90;;20567:5181;22083:7;22076:15;;;22072:89;;20567:5181;22185:6;22178:14;;;22174:87;;20567:5181;22285:6;22278:14;;;22274:87;;20567:5181;22378:14;;22374:61;;20567:5181;22861:1;449:1961:50;20733:1:43;449:1961:50;24771:6:43;;;;:::i;:::-;449:1961:50;;;;;24765:18:43;24880:6;;;;:::i;24874:18::-;24991:6;;;;:::i;24985:18::-;25100:6;;;;:::i;25094:18::-;25210:6;;;;:::i;25204:18::-;25320:6;;;;:::i;25314:18::-;25724:6;;;:::i;:::-;25719:11;;;34795:145:44;25703:28:43;449:1961:50;;20567:5181:43;:::o;22374:61::-;20733:1;449:1961:50;22374:61:43;;22274:87;449:1961:50;;;;;22274:87:43;;;22174;449:1961:50;;;;;22174:87:43;;;22072:89;449:1961:50;;;;;22072:89:43;;;21969:90;449:1961:50;;;;;21969:90:43;;;21866;449:1961:50;;;;;21866:90:43;;;21761:92;-1:-1:-1;;;;449:1961:50;-1:-1:-1;21772:8:43;449:1961:50;;;21761:92:43;;10311:206:46;7419:17:12;449:1961:50;10406:17:46;;10447:8;;;:63;;10406:17;10311:206;:::o;10447:63::-;10580:17:21;;;449:1961:50;;;;;7419:17:12;14441:109:46;;;;449:1961:50;;;10311:206:46;:::o;:::-;449:1961:50;;10406:17:46;;10447:8;;;:63;;;10406:17;10311:206;:::o;10447:63::-;10580:17:21;;449:1961:50;;;;;;;;14441:109:46;;;;;;;449:1961:50;;;10311:206:46;:::o;449:1961:50:-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;449:1961:50;;-1:-1:-1;449:1961:50;;;-1:-1:-1;449:1961:50;:::o;:::-;;:::i;:::-;7419:17:12;449:1961:50;;-1:-1:-1;;;449:1961:50;;;;;;;;;7419:17:12;449:1961:50;;;;;;7419:17:12;-1:-1:-1;449:1961:50;;;;;;;;;;-1:-1:-1;;449:1961:50;;;;;;;-1:-1:-1;;;;;;;;;;;449:1961:50;;;;:::o;:::-;;;-1:-1:-1;;;449:1961:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;449:1961:50;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;11659:922:46;7419:17:12;449:1961:50;11659:922:46;;;11866:7;;;;11938;11918:28;11938:7;;:::i;:::-;7419:17:12;14441:109:46;;-1:-1:-1;;;;;;;;;;;14441:109:46;14291:265;;11918:28;449:1961:50;;;;;;;;;;;;12105:13:46;;;12101:89;;12253:14;;;;;12287:19;;;449:1961:50;;;;;;;;;;;;;;;;;12287:19:46;449:1961:50;;12425:25:46;;:::o;12249:163::-;449:1961:50;;12345:52:46;449:1961:50;12355:41:46;449:1961:50;;:::i;:::-;;;;;;;;12355:41:46;-1:-1:-1;;;;;449:1961:50;;12355:41:46;;;449:1961:50;12345:52:46;:::i;:::-;12249:163;;12101:89;449:1961:50;;-1:-1:-1;;;12145:30:46;;;;;11862:713;449:1961:50;12481:52:46;449:1961:50;12491:41:46;449:1961:50;;:::i;12491:41:46:-;-1:-1:-1;;;;;449:1961:50;;12491:41:46;;;449:1961:50;12345:52:46;:::i;12481:::-;11872:1;12547:17;;:::o;11659:922::-;449:1961:50;;11659:922:46;;;11866:7;;;;11938;11918:28;11938:7;;:::i;:::-;11918:28;14441:109;;;;;;14291:265;;11918:28;449:1961:50;;;;;;;;;;;;12105:13:46;;;12101:89;;12253:14;;;;;12287:19;;;;449:1961:50;;;;;;;;;;;;;;;;;12249:163:46;449:1961:50;;;12345:52:46;449:1961:50;12355:41:46;449:1961:50;;:::i;:::-;;;;;;;;12355:41:46;-1:-1:-1;;;;;449:1961:50;;12355:41:46;;;449:1961:50;12345:52:46;:::i;11862:713::-;449:1961:50;;12481:52:46;449:1961:50;12491:41:46;449:1961:50;;:::i;12491:41:46:-;-1:-1:-1;;;;;449:1961:50;;12491:41:46;;;449:1961:50;12345:52:46;:::i;12931:433::-;;13114:10;;;;;;13346:11;;12931:433;:::o;13107:230::-;5967:5:43;;;;;5977;;;;449:1961:50;;;;;;;;;5234:17:12;-1:-1:-1;14441:109:46;449:1961:50;14441:109:46;;-1:-1:-1;;;;;;;;;;;14441:109:46;449:1961:50;;;;;-1:-1:-1;13191:136:46;449:1961:50;;;13250:10:46;13191:136;;13107:230;;;13191:136;13305:7;;;;;;:::i;:::-;13191:136;;;12931:433;;;13114:10;;;;;;13346:11;;;12931:433;:::o;13107:230::-;5967:5:43;;;;;;5977;;;;449:1961:50;;;;;;;;;-1:-1:-1;14441:109:46;;;;;;;;449:1961:50;;;;;;;;-1:-1:-1;449:1961:50;;;13250:10:46;13191:136;;13107:230;;;;13191:136;13305:7;;;;;;:::i;:::-;13191:136;;;1500:62:2;;;;;;:::i;:::-;449:1961:50;;;;1361:33;449:1961;;1431:44;449:1961;;1439:19;;1431:44;:::i;:::-;-1:-1:-1;1524:13:50;1560:3;449:1961;;1539:19;;;;;1708:25;1560:3;1587:11;1579:50;1587:25;:11;;;;;:::i;:::-;449:1961;-1:-1:-1;;;;;449:1961:50;;;1587:11;-1:-1:-1;;;;;449:1961:50;;;1587:25;;;1579:50;:::i;:::-;1643:38;1651:10;;;;:::i;:::-;449:1961;1651:14;;1643:38;:::i;:::-;1723:10;;;;:::i;:::-;449:1961;1708:25;;:::i;:::-;1753:11;1766:10;1753:11;;;;;:::i;:::-;1766:10;;;;:::i;:::-;449:1961;1766:10;;:::i;:::-;1560:3;:::i;:::-;1524:13;;;1539:19;;;;;;2293:101:2;;:::i;449:1961:50:-;;;-1:-1:-1;;;449:1961:50;;;;;;;;;;;;-1:-1:-1;;;449:1961:50;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;449:1961:50;;;;;;;;;;;;-1:-1:-1;;;449:1961:50;;;;;;;;-1:-1:-1;;449:1961:50;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;;;;:::o;:::-;;;-1:-1:-1;;;449:1961:50;;;;;;;;;;;;-1:-1:-1;;;449:1961:50;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;449:1961:50;;;;;;;;;;;;-1:-1:-1;;;449:1961:50;;;;;;;7439:208:21;;;-1:-1:-1;;;;;449:1961:50;;7509:21:21;;7505:91;;6214:21;449:1961:50;;;;;;;;;6214:21:21;449:1961:50;-1:-1:-1;;;;;449:1961:50;;5473:1:21;449:1961:50;;;;;;;;;;;;;;;;;;;;;7064:25:21;;449:1961:50;7064:25:21;6214:21;449:1961:50;;-1:-1:-1;;;;;2616:12:24;;2612:94;;2756:5;;;;;:::i;2612:94::-;449:1961:50;;-1:-1:-1;;;2655:36:24;;;;;449:1961:50;;;-1:-1:-1;;;;;449:1961:50;;;;;;10668:60:21;7276:399:12;;7661:6;7276:399;7413:58;7444:26;;;:::i;:::-;7413:58;:::i;:::-;-1:-1:-1;;;;;;;449:1961:50;;;;7495:16:12;;7491:110;;7276:399;5674:10;449:1961:50;;;;;;;;;;;;;;;;;7661:6:12;:::i;7491:110::-;7527:63;7563:26;;;:::i;:::-;7527:63;:::i;:::-;7491:110;;;;7276:399;7661:6;;7276:399;-1:-1:-1;;;;;449:1961:50;;;;;;;7379:18:12;;7375:107;;7276:399;449:1961:50;7495:16:12;;;7491:110;;7276:399;7395:1;449:1961:50;5674:10:12;449:1961:50;;;;7395:1:12;449:1961:50;;;;7395:1:12;449:1961:50;;7395:1:12;449:1961:50;;;7661:6:12;;:::i;7491:110::-;7527:63;7563:26;;;:::i;7527:63::-;7491:110;;;;7375:107;7413:58;7444:26;;;:::i;7413:58::-;7375:107;;;"},"methodIdentifiers":{"CLOCK_MODE()":"4bf5d7e9","DOMAIN_SEPARATOR()":"3644e515","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","checkpoints(address,uint32)":"f1127ed8","clock()":"91ddadf4","decimals()":"313ce567","delegate(address)":"5c19a95c","delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)":"c3cda520","delegates(address)":"587cde1e","eip712Domain()":"84b0196e","getPastTotalSupply(uint256)":"8e539e8c","getPastVotes(address,uint256)":"3a46b1a8","getVotes(address)":"9ab24eb0","mintInitialSupply(address[],uint256[])":"9df2c95d","name()":"06fdde03","nonces(address)":"7ecebe00","numCheckpoints(address)":"6fcfff45","owner()":"8da5cb5b","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","renounceOwnership()":"715018a6","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","transferOwnership(address)":"f2fde38b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"internalType\":\"address\",\"name\":\"initialOwner\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"CheckpointUnorderedInsertion\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"increasedSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"cap\",\"type\":\"uint256\"}],\"name\":\"ERC20ExceededSafeSupply\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"ERC2612ExpiredSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC2612InvalidSigner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"uint48\",\"name\":\"clock\",\"type\":\"uint48\"}],\"name\":\"ERC5805FutureLookup\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC6372InconsistentClock\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"OwnableInvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"OwnableUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"}],\"name\":\"VotesExpiredSignature\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"fromDelegate\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"toDelegate\",\"type\":\"address\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"previousVotes\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newVotes\",\"type\":\"uint256\"}],\"name\":\"DelegateVotesChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"pos\",\"type\":\"uint32\"}],\"name\":\"checkpoints\",\"outputs\":[{\"components\":[{\"internalType\":\"uint48\",\"name\":\"_key\",\"type\":\"uint48\"},{\"internalType\":\"uint208\",\"name\":\"_value\",\"type\":\"uint208\"}],\"internalType\":\"struct Checkpoints.Checkpoint208\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"delegates\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastTotalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getPastVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"partners\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"}],\"name\":\"mintInitialSupply\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"numCheckpoints\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"\\u0422\\u043e\\u043a\\u0435\\u043d \\u0443\\u043f\\u0440\\u0430\\u0432\\u043b\\u0435\\u043d\\u0438\\u044f ERC20Votes \\u0441 \\u0444\\u0443\\u043d\\u043a\\u0446\\u0438\\u044f\\u043c\\u0438 \\u0433\\u043e\\u043b\\u043e\\u0441\\u043e\\u0432\\u0430\\u043d\\u0438\\u044f \\u0434\\u043b\\u044f DAO\",\"errors\":{\"CheckpointUnorderedInsertion()\":[{\"details\":\"A value was attempted to be inserted on a past checkpoint.\"}],\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}],\"ERC20ExceededSafeSupply(uint256,uint256)\":[{\"details\":\"Total supply cap has been exceeded, introducing a risk of votes overflowing.\"}],\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC2612ExpiredSignature(uint256)\":[{\"details\":\"Permit deadline has expired.\"}],\"ERC2612InvalidSigner(address,address)\":[{\"details\":\"Mismatched signature.\"}],\"ERC5805FutureLookup(uint256,uint48)\":[{\"details\":\"Lookup to future votes is not available.\"}],\"ERC6372InconsistentClock()\":[{\"details\":\"The clock was incorrectly modified.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"OwnableInvalidOwner(address)\":[{\"details\":\"The owner is not a valid owner account. (eg. `address(0)`)\"}],\"OwnableUnauthorizedAccount(address)\":[{\"details\":\"The caller account is not authorized to perform an operation.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}],\"VotesExpiredSignature(uint256)\":[{\"details\":\"The signature used has expired.\"}]},\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"DelegateChanged(address,address,address)\":{\"details\":\"Emitted when an account changes their delegate.\"},\"DelegateVotesChanged(address,uint256,uint256)\":{\"details\":\"Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units.\"},\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Machine-readable description of the clock as specified in ERC-6372.\"},\"DOMAIN_SEPARATOR()\":{\"details\":\"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\"},\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"checkpoints(address,uint32)\":{\"details\":\"Get the `pos`-th checkpoint for `account`.\"},\"clock()\":{\"details\":\"Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting), in which case {CLOCK_MODE} should be overridden as well to match.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"delegate(address)\":{\"details\":\"Delegates votes from the sender to `delegatee`.\"},\"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates votes from signer to `delegatee`.\"},\"delegates(address)\":{\"details\":\"Returns the delegate that `account` has chosen.\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"getPastTotalSupply(uint256)\":{\"details\":\"Returns the total supply of votes available at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block. NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. Votes that have not been delegated are still part of total supply, even though they would not participate in a vote. Requirements: - `timepoint` must be in the past. If operating using block numbers, the block must be already mined.\"},\"getPastVotes(address,uint256)\":{\"details\":\"Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is configured to use block numbers, this will return the value at the end of the corresponding block. Requirements: - `timepoint` must be in the past. If operating using block numbers, the block must be already mined.\"},\"getVotes(address)\":{\"details\":\"Returns the current amount of votes that `account` has.\"},\"mintInitialSupply(address[],uint256[])\":{\"details\":\"\\u041c\\u0438\\u043d\\u0442\\u0438\\u0442 \\u043d\\u0430\\u0447\\u0430\\u043b\\u044c\\u043d\\u044b\\u0439 \\u0437\\u0430\\u043f\\u0430\\u0441 \\u0442\\u043e\\u043a\\u0435\\u043d\\u043e\\u0432 \\u0434\\u043b\\u044f \\u0440\\u0430\\u0441\\u043f\\u0440\\u0435\\u0434\\u0435\\u043b\\u0435\\u043d\\u0438\\u044f \\u043c\\u0435\\u0436\\u0434\\u0443 \\u043f\\u0430\\u0440\\u0442\\u043d\\u0435\\u0440\\u0430\\u043c\\u0438\",\"params\":{\"amounts\":\"\\u041c\\u0430\\u0441\\u0441\\u0438\\u0432 \\u0441\\u0443\\u043c\\u043c \\u0442\\u043e\\u043a\\u0435\\u043d\\u043e\\u0432 \\u0434\\u043b\\u044f \\u043a\\u0430\\u0436\\u0434\\u043e\\u0433\\u043e \\u043f\\u0430\\u0440\\u0442\\u043d\\u0435\\u0440\\u0430\",\"partners\":\"\\u041c\\u0430\\u0441\\u0441\\u0438\\u0432 \\u0430\\u0434\\u0440\\u0435\\u0441\\u043e\\u0432 \\u043f\\u0430\\u0440\\u0442\\u043d\\u0435\\u0440\\u043e\\u0432\"}},\"name()\":{\"details\":\"Returns the name of the token.\"},\"numCheckpoints(address)\":{\"details\":\"Get number of checkpoints for `account`.\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also apply here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section]. CAUTION: See Security Considerations above.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"title\":\"GovernanceToken\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/GovernanceToken.sol\":\"GovernanceToken\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6\",\"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a\"]},\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0x5e2b397ae88fd5c68e4f6762eb9f65f65c36702eb57796495f471d024ce70947\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://348fc8e291d54314bb22437b532f443d5dbfb80c8cc9591567c1af6554ccf856\",\"dweb:/ipfs/QmP8ZTyitZinxcpwAHeYHhwj7u21zPpKXSiww38V74sXC2\"]},\"@openzeppelin/contracts/governance/utils/Votes.sol\":{\"keccak256\":\"0x3f91c79d6f55db9e4fc36e1cfe6a483a7b0f5be60fecbd979555071673746d47\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9b1e3c64cbeb2757a2a1a45c69f7f3984a93b0eadd1016341b64f9d94f89d7c4\",\"dweb:/ipfs/QmP1Mj14U4vMTFa2rv2nodMbWSCov2ac9Md8W2aUcgYdKX\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC5805.sol\":{\"keccak256\":\"0x4b9b89f91adbb7d3574f85394754cfb08c5b4eafca8a7061e2094a019ab8f818\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7373d5dbb8eb2381aa0883a456fac89283fcaf52f42fa805d4188f270716742a\",\"dweb:/ipfs/QmVnZDmT4ABvNhRJMaQnbCzsCA8HpyHPVaxi4fCi92LFv2\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x41f6b3b9e030561e7896dbef372b499cc8d418a80c3884a4d65a68f2fdc7493a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://80b0992a11b2fd1f75ced2971696d07bbd1d19ce6761dd50d8b6d48aa435f42a\",\"dweb:/ipfs/QmZDe5xd2gXHjVEjv9t8C1KQ68K5T8qFwdinwQgmP3rF3x\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol\":{\"keccak256\":\"0xaa7f0646f49ebe2606eeca169f85c56451bbaeeeb06265fa076a03369a25d1d3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ee931d4e832385765967efe6366dcc6d00d6a2d794f9c66ee38283c03882de9c\",\"dweb:/ipfs/QmR6SkuJGYxpQeLz38rBdghqaWqEPfzUsL9kBoXgEXKtbD\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol\":{\"keccak256\":\"0x62dc9346044aabf22d78541bd495aa6ca05a7f5100aed26196ba35d40b59fcb5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5221df4501c74cd4493fee1a0f0788e02c4dc78c3c601e9f557f557c5a53ea92\",\"dweb:/ipfs/QmZpzyYY9dKLrgvYhXSHT93jwqb1UGvtGNMQk5dpECY5pa\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x27dbc90e5136ffe46c04f7596fc2dbcc3acebd8d504da3d93fdb8496e6de04f6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ea8b92e4245d75a5579c10f22f118f7b4ba07c57341f181f0b2a85ff8663de3\",\"dweb:/ipfs/Qme3Ss5ByjmkxxkMdLpyu7fQ1PCtjNFH1wEFszt2BZePiG\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x1fcf8cceb1a67e6c8512267e780933c4a3f63ef44756e6c818fda79be51c8402\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://617d7d57f6f9cd449068b4d23daf485676d083aae648e038d05eb3a13291de35\",\"dweb:/ipfs/QmPADWPiGaSzZDFNpFEUx4ZPqhzPkYncBpHyTfAGcfsqzy\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x0c60057e7351874f086db8dc9291b7ada9ad62cb7725befd2991430d04a74572\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33cdfd1fc36410d45046f88ff9864350146b194736c32834baa38d99b843ffbe\",\"dweb:/ipfs/QmdVmqgFKjgEBURy4KUwWDA6J1LEg1BKcHcXsx4nkeHAD2\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/Checkpoints.sol\":{\"keccak256\":\"0x93ce66a307d66cb14e95dbc8f20641cedf48b2d060bf3bda431d62a4493e6e8d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://10d4122ee13fd8dcd2f468a86031665345d2dfdda76993d1f51201bdeb746f9d\",\"dweb:/ipfs/QmWxbbYEgyDCjwT4ZtNwujJwB4vdnR2qEKwL2Zrz9JoSDU\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]},\"contracts/GovernanceToken.sol\":{\"keccak256\":\"0x818d7852f6f646a800e4ff65f38fa758ee8f9b83a48e12c67d584cdb4fe7a131\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://95431852776876cdac4acb96aada93ba25fd16ef08cfa83a6ffe9395f3cdc22d\",\"dweb:/ipfs/QmfYiw7fhQ5vYGE8ZMx4xpob49qqLT19P4oHhnmCPi1Lz9\"]}},\"version\":1}"}},"contracts/GovernorContract.sol":{"GovernorContract":{"abi":[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"contract IVotes","name":"_token","type":"address"},{"internalType":"contract TimelockController","name":"_timelock","type":"address"},{"internalType":"uint48","name":"_votingDelay","type":"uint48"},{"internalType":"uint32","name":"_votingPeriod","type":"uint32"},{"internalType":"uint256","name":"_proposalThreshold","type":"uint256"},{"internalType":"uint256","name":"_quorumPercentage","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CheckpointUnorderedInsertion","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorAlreadyCastVote","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorAlreadyQueuedProposal","type":"error"},{"inputs":[],"name":"GovernorDisabledDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"},{"internalType":"uint256","name":"votes","type":"uint256"},{"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"GovernorInsufficientProposerVotes","type":"error"},{"inputs":[{"internalType":"uint256","name":"targets","type":"uint256"},{"internalType":"uint256","name":"calldatas","type":"uint256"},{"internalType":"uint256","name":"values","type":"uint256"}],"name":"GovernorInvalidProposalLength","type":"error"},{"inputs":[{"internalType":"uint256","name":"quorumNumerator","type":"uint256"},{"internalType":"uint256","name":"quorumDenominator","type":"uint256"}],"name":"GovernorInvalidQuorumFraction","type":"error"},{"inputs":[{"internalType":"address","name":"voter","type":"address"}],"name":"GovernorInvalidSignature","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteParams","type":"error"},{"inputs":[],"name":"GovernorInvalidVoteType","type":"error"},{"inputs":[{"internalType":"uint256","name":"votingPeriod","type":"uint256"}],"name":"GovernorInvalidVotingPeriod","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNonexistentProposal","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"GovernorNotQueuedProposal","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"GovernorOnlyExecutor","type":"error"},{"inputs":[],"name":"GovernorQueueNotImplemented","type":"error"},{"inputs":[{"internalType":"address","name":"proposer","type":"address"}],"name":"GovernorRestrictedProposer","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"GovernorUnableToCancel","type":"error"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"enum IGovernor.ProposalState","name":"current","type":"uint8"},{"internalType":"bytes32","name":"expectedStates","type":"bytes32"}],"name":"GovernorUnexpectedProposalState","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"address","name":"proposer","type":"address"},{"indexed":false,"internalType":"address[]","name":"targets","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"signatures","type":"string[]"},{"indexed":false,"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"indexed":false,"internalType":"uint256","name":"voteStart","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"voteEnd","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"ProposalCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"etaSeconds","type":"uint256"}],"name":"ProposalQueued","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldProposalThreshold","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newProposalThreshold","type":"uint256"}],"name":"ProposalThresholdSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldQuorumNumerator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newQuorumNumerator","type":"uint256"}],"name":"QuorumNumeratorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldTimelock","type":"address"},{"indexed":false,"internalType":"address","name":"newTimelock","type":"address"}],"name":"TimelockChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"VoteCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"proposalId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"support","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"},{"indexed":false,"internalType":"bytes","name":"params","type":"bytes"}],"name":"VoteCastWithParams","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldVotingDelay","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotingDelay","type":"uint256"}],"name":"VotingDelaySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldVotingPeriod","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotingPeriod","type":"uint256"}],"name":"VotingPeriodSet","type":"event"},{"inputs":[],"name":"BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COUNTING_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"EXTENDED_BALLOT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"cancel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"}],"name":"castVote","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"}],"name":"castVoteWithReason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"castVoteWithReasonAndParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"uint8","name":"support","type":"uint8"},{"internalType":"address","name":"voter","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"params","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"castVoteWithReasonAndParamsBySig","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"execute","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"getProposalId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"getVotesWithParams","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"hasVoted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"hashProposal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalEta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalNeedsQueuing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalProposer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"proposalVotes","outputs":[{"internalType":"uint256","name":"againstVotes","type":"uint256"},{"internalType":"uint256","name":"forVotes","type":"uint256"},{"internalType":"uint256","name":"abstainVotes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"string","name":"description","type":"string"}],"name":"propose","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"calldatas","type":"bytes[]"},{"internalType":"bytes32","name":"descriptionHash","type":"bytes32"}],"name":"queue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"quorumDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"quorumNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"quorumNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"relay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newProposalThreshold","type":"uint256"}],"name":"setProposalThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint48","name":"newVotingDelay","type":"uint48"}],"name":"setVotingDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"newVotingPeriod","type":"uint32"}],"name":"setVotingPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"proposalId","type":"uint256"}],"name":"state","outputs":[{"internalType":"enum IGovernor.ProposalState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timelock","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC5805","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newQuorumNumerator","type":"uint256"}],"name":"updateQuorumNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract TimelockController","name":"newTimelock","type":"address"}],"name":"updateTimelock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"votingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{"abi_decode_contract_IVotes_fromMemory":{"entryPoint":390,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint32_fromMemory":{"entryPoint":431,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint48_fromMemory":{"entryPoint":411,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_uint256_uint256_5040":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_memory":{"entryPoint":308,"id":null,"parameterSlots":0,"returnSlots":1},"array_allocation_size_string":{"entryPoint":325,"id":null,"parameterSlots":1,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_10957":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage_10959":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":1},"array_push_from_struct_Checkpoint208_to_array_struct_Checkpoint208_storage_dyn_ptr":{"entryPoint":2939,"id":null,"parameterSlots":1,"returnSlots":0},"checked_sub_uint256":{"entryPoint":2901,"id":null,"parameterSlots":1,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":974,"id":null,"parameterSlots":2,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_10958":{"entryPoint":1063,"id":null,"parameterSlots":2,"returnSlots":0},"clean_up_bytearray_end_slots_string_storage_10960":{"entryPoint":1151,"id":null,"parameterSlots":2,"returnSlots":0},"constructor_GovernorTimelockControl":{"entryPoint":661,"id":4284,"parameterSlots":7,"returnSlots":0},"copy_arguments_for_constructor_object_GovernorContract":{"entryPoint":449,"id":null,"parameterSlots":0,"returnSlots":7},"copy_byte_array_to_storage_from_string_to_string":{"entryPoint":1243,"id":null,"parameterSlots":1,"returnSlots":0},"copy_memory_to_memory_with_cleanup":{"entryPoint":353,"id":null,"parameterSlots":3,"returnSlots":0},"extract_byte_array_length":{"entryPoint":913,"id":null,"parameterSlots":1,"returnSlots":1},"finalize_allocation":{"entryPoint":272,"id":null,"parameterSlots":2,"returnSlots":0},"finalize_allocation_10952":{"entryPoint":210,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_10955":{"entryPoint":244,"id":null,"parameterSlots":1,"returnSlots":0},"fun_clock":{"entryPoint":2044,"id":4659,"parameterSlots":0,"returnSlots":1},"fun_insert":{"entryPoint":3059,"id":14285,"parameterSlots":2,"returnSlots":2},"fun_setProposalThreshold":{"entryPoint":1696,"id":4243,"parameterSlots":1,"returnSlots":0},"fun_setVotingDelay":{"entryPoint":1486,"id":4202,"parameterSlots":1,"returnSlots":0},"fun_setVotingPeriod":{"entryPoint":1564,"id":4227,"parameterSlots":1,"returnSlots":0},"fun_toShortString":{"entryPoint":2738,"id":7330,"parameterSlots":1,"returnSlots":1},"fun_toShortStringWithFallback":{"entryPoint":2494,"id":7428,"parameterSlots":1,"returnSlots":1},"fun_toShortStringWithFallback_5003":{"entryPoint":2224,"id":7428,"parameterSlots":1,"returnSlots":1},"fun_toUint208":{"entryPoint":2849,"id":11634,"parameterSlots":1,"returnSlots":1},"fun_unsafeAccess":{"entryPoint":null,"id":14404,"parameterSlots":1,"returnSlots":1},"fun_updateQuorumNumerator":{"entryPoint":1832,"id":4863,"parameterSlots":1,"returnSlots":0},"fun_updateTimelock":{"entryPoint":1753,"id":4569,"parameterSlots":1,"returnSlots":0},"panic_error_0x41":{"entryPoint":188,"id":null,"parameterSlots":0,"returnSlots":0},"update_storage_value_offsett_uint208_to_uint208":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"write_to_memory_uint208":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"write_to_memory_uint48":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0}},"generatedSources":[],"linkReferences":{},"object":"61018060405234620000b7576200002362000019620001c1565b9094919362000295565b604051613c6a908162000cf0823960805181612749015260a051816127fe015260c05181612713015260e05181612798015261010051816127be015261012051816113a9015261014051816113d501526101605181818161162701528181611aa801528181611bdd01528181611c67015281816123b5015281816124820152818161258b0152818161330b01526133db0152f35b600080fd5b634e487b7160e01b600052604160045260246000fd5b604081019081106001600160401b03821117620000ee57604052565b620000bc565b60c081019081106001600160401b03821117620000ee57604052565b601f909101601f19168101906001600160401b03821190821017620000ee57604052565b604051906200014382620000d2565b565b6001600160401b038111620000ee57601f01601f191660200190565b60005b838110620001755750506000910152565b818101518382015260200162000164565b51906001600160a01b0382168203620000b757565b519065ffffffffffff82168203620000b757565b519063ffffffff82168203620000b757565b6200499a8038038060405192620001d9828562000110565b8339810160e082820312620000b75781516001600160401b038111620000b757820181601f82011215620000b7578051620002148162000145565b9262000224604051948562000110565b81845260208284010111620000b75762000245916020808501910162000161565b620002536020830162000186565b92620002626040840162000186565b9262000271606082016200019b565b926200028060808301620001af565b9260c060a08401519301519196959493929190565b94620003726200038b956200036c62000378949662000366620001439b604051620002c081620000d2565b6001815260208101603160f81b8152620002da83620008b0565b61012052620002e982620009be565b6101405282516020840120918260e05251902080610100524660a0526040519060208201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8452604083015260608201524660808201523060a082015260a081526200035681620000f4565b5190206080523060c052620004db565b620005ce565b6200061c565b620006a0565b6001600160a01b03166101605262000728565b620006d9565b90600182811c92168015620003c3575b6020831014620003ad57565b634e487b7160e01b600052602260045260246000fd5b91607f1691620003a1565b601f8111620003db575050565b6000906003825260208220906020601f850160051c830194106200041c575b601f0160051c01915b8281106200041057505050565b81815560010162000403565b9092508290620003fa565b601f811162000434575050565b60009081805260208220906020601f850160051c8301941062000474575b601f0160051c01915b8281106200046857505050565b8181556001016200045b565b909250829062000452565b90601f82116200048d575050565b60019160009083825260208220906020601f850160051c83019410620004d0575b601f0160051c01915b828110620004c55750505050565b8181558301620004b7565b9092508290620004ae565b80519091906001600160401b038111620000ee5762000507816200050160035462000391565b620003ce565b602080601f83116001146200054657508192936000926200053a575b50508160011b916000199060031b1c191617600355565b01519050388062000523565b6003600052601f198316949091907fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b926000905b878210620005b55750508360019596106200059b575b505050811b01600355565b015160001960f88460031b161c1916905538808062000590565b806001859682949686015181550195019301906200057a565b6008547fc565b045403dc03c2eea82b81a0465edad9e2e7fc4d97e11421c209da93d7a93604080519365ffffffffffff9081851686521693846020820152a165ffffffffffff191617600855565b63ffffffff80821691821562000687577f7e3f7f0708a84de9203036abaa450dccc85ad5ff52f78c170f3edb55cf5e8828604069ffffffff00000000000093600854958251918760301c1682526020820152a160301b169069ffffffff000000000000191617600855565b60405163f1cfbf0560e01b815260006004820152602490fd5b60075460408051918252602082018390527fccb45da8d5717e6c4544694297c4ba5cf151d455c9bb0ed4fc7a38411bc0546191a1600755565b600b547f08f74ea46ef7894f65eabfb5e6e695de773a000b47c529ab559178069b226401604060018060a01b038094169381519084168152846020820152a16001600160a01b03191617600b55565b9060648211620007dc57600a5460009290806200079557506000805160206200497a83398151915291925060005b6200077662000764620007fc565b6200076f8462000b21565b9062000bf3565b5050604080516001600160d01b039290921682526020820192909252a1565b600019908082810111620007c857602085600a6000805160206200497a8339815191529697522001015460301c62000756565b634e487b7160e01b85526011600452602485fd5b60405163243e544560e01b81526004810183905260646024820152604490fd5b610160516040516324776b7d60e21b815290602090829060049082906001600160a01b03165afa600091816200086a575b5062000867575065ffffffffffff8043116200084857431690565b6040516306dfcc6560e41b815260306004820152436024820152604490fd5b90565b90916020823d8211620008a7575b81620008876020938362000110565b81010312620008a457506200089c906200019b565b90386200082d565b80fd5b3d915062000878565b908151602090818110600014620008cf57505090620008679062000ab2565b6001600160401b038111620000ee57600091620008f882620008f2855462000391565b62000427565b80601f83116001146200093757508293948293926200092b575b50508160011b916000199060031b1c191617905560ff90565b01519050388062000912565b60008052601f198316957f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563929185905b888210620009a5575050836001959697106200098b575b505050811b01905560ff90565b015160001960f88460031b161c191690553880806200097e565b8060018596829496860151815501950193019062000967565b908151602090818110600014620009dd57505090620008679062000ab2565b6001600160401b038111620000ee5760019162000a068262000a00855462000391565b6200047f565b80601f831160011462000a4557508192939460009262000a39575b5050600019600383901b1c191690821b17905560ff90565b01519050388062000a21565b6001600052601f198316959091907fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6926000905b88821062000a9a57505083859697106200098b57505050811b01905560ff90565b80878596829496860151815501950193019062000a79565b601f81511162000ae057602081519101516020821062000ad0571790565b6000198260200360031b1b161790565b6044604051809263305a27a960e01b82526020600483015262000b13815180928160248601526020868601910162000161565b601f01601f19168101030190fd5b6001600160d01b039081811162000b36571690565b604490604051906306dfcc6560e41b825260d060048301526024820152fd5b60001981019190821162000b6557565b634e487b7160e01b600052601160045260246000fd5b600a549068010000000000000000821015620000ee576001820180600a5582101562000bdd57600a60005280516020919091015160301b65ffffffffffff191665ffffffffffff91909116176000805160206200495a83398151915290910155565b634e487b7160e01b600052603260045260246000fd5b600a54919291801562000cc05762000c0f62000c289162000b55565b600a6000526000805160206200495a8339815191520190565b9081549165ffffffffffff9081841691831680831162000cae5786920362000c705762000c6992509065ffffffffffff82549181199060301b169116179055565b60301c9190565b505062000ca89062000c9362000c8562000134565b65ffffffffffff9092168252565b6001600160d01b038516602082015262000b7b565b62000c69565b604051632520601d60e01b8152600490fd5b5062000ce99062000cd462000c8562000134565b6001600160d01b038416602082015262000b7b565b6000919056fe60806040526004361015610023575b361561001957600080fd5b610021611c96565b005b60003560e01c806301ffc9a71461032e57806302a251a31461032957806306f3f9e61461032457806306fdde031461031f578063143489d01461031a578063150b7a0214610315578063160cbed7146103105780632656227d1461030b5780632d63f693146103065780632fe3e261146103015780633932abb1146102fc5780633e4f49e6146102f757806343859632146102f2578063452115d6146102ed5780634bf5d7e9146102e8578063544ffc9c146102e357806354fd4d50146102de57806356781388146102d95780635b8d0e0d146102d45780635f398a14146102cf57806360c4247f146102ca57806379051887146102c55780637b3c71d3146102c05780637d5e81e2146102bb5780637ecebe00146102b657806384b0196e146102b15780638ff262e3146102ac57806391ddadf4146102a757806397c3d334146102a25780639a802a6d1461029d578063a7713a7014610298578063a890c91014610293578063a8f8a66814610270578063a9a952941461028e578063ab58fb8e14610289578063b58131b014610284578063bc197c811461027f578063c01f9e371461027a578063c28bc2fa14610275578063c59057e414610270578063d33219b41461026b578063dd4e2ba514610266578063deaaa7cc14610261578063e540d01d1461025c578063eb9019d414610257578063ece40cc114610252578063f23a6e611461024d578063f8ce560a146102485763fc0c546a0361000e57611c51565b611bac565b611b41565b611aec565b611a4c565b6119a3565b611968565b61190a565b6118e1565b61172a565b611875565b611857565b6117b7565b611799565b611762565b611746565b6116b6565b61168a565b6115b9565b61159d565b611572565b61145a565b611390565b61131f565b611286565b611231565b6111be565b611190565b611121565b611099565b61101c565b610fca565b610f7d565b610f4d565b610eaf565b610e56565b610e29565b610dd1565b610d96565b610d5f565b610bf7565b6109ad565b610771565b6105f4565b61050f565b6103eb565b6103c4565b346103b45760203660031901126103b45760043563ffffffff60e01b81168091036103b4576020906366defe7760e11b81149081156103a3575b8115610392575b8115610381575b506040519015158152f35b6301ffc9a760e01b14905038610376565b630271189760e51b8114915061036f565b6332a2ad4360e11b81149150610368565b600080fd5b60009103126103b457565b346103b45760003660031901126103b457602063ffffffff60085460301c16604051908152f35b346103b45760203660031901126103b457600435610407612139565b60648111610494576001600160d01b039081610421612cec565b1661042a6123a0565b92808311610474577f0553476bf02ef2726e8ce5ced78d63e26e602e4a2257b1f559418e24b46339979361046091841690612e12565b5050604080519182526020820192909252a1005b6040516306dfcc6560e41b815260d0600482015260248101849052604490fd5b6044906040519063243e544560e01b8252600482015260646024820152fd5b60005b8381106104c65750506000910152565b81810151838201526020016104b6565b906020916104ef815180928185528580860191016104b3565b601f01601f1916010190565b90602061050c9281815201906104d6565b90565b346103b4576000806003193601126105f157604051908060035461053281611caa565b808552916001918083169081156105c7575060011461056c575b6105688561055c818703826106d4565b604051918291826104fb565b0390f35b9250600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8284106105af57505050810160200161055c8261056861054c565b80546020858701810191909152909301928101610594565b8695506105689693506020925061055c94915060ff191682840152151560051b820101929361054c565b80fd5b346103b45760203660031901126103b4576004356000526004602052602060018060a01b0360406000205416604051908152f35b6001600160a01b038116036103b457565b634e487b7160e01b600052604160045260246000fd5b6001600160401b03811161066257604052565b610639565b604081019081106001600160401b0382111761066257604052565b602081019081106001600160401b0382111761066257604052565b60c081019081106001600160401b0382111761066257604052565b61010081019081106001600160401b0382111761066257604052565b90601f801991011681019081106001600160401b0382111761066257604052565b6040519061070282610667565b565b6001600160401b03811161066257601f01601f191660200190565b92919261072b82610704565b9161073960405193846106d4565b8294818452818301116103b4578281602093846000960137010152565b9080601f830112156103b45781602061050c9335910161071f565b346103b45760803660031901126103b45761078d600435610628565b610798602435610628565b6064356001600160401b0381116103b4576107b7903690600401610756565b50600b546001600160a01b031630036107dc57604051630a85bd0160e11b8152602090f35b604051637485328f60e11b8152600490fd5b6001600160401b0381116106625760051b60200190565b81601f820112156103b45780359161081c836107ee565b9261082a60405194856106d4565b808452602092838086019260051b8201019283116103b4578301905b828210610854575050505090565b838091833561086281610628565b815201910190610846565b81601f820112156103b457803591610884836107ee565b9261089260405194856106d4565b808452602092838086019260051b8201019283116103b4578301905b8282106108bc575050505090565b813581529083019083016108ae565b9080601f830112156103b4578135906108e3826107ee565b926108f160405194856106d4565b828452602092838086019160051b830101928084116103b457848301915b84831061091f5750505050505090565b82356001600160401b0381116103b457869161094084848094890101610756565b81520192019161090f565b60806003198201126103b4576001600160401b03916004358381116103b4578261097791600401610805565b926024358181116103b4578361098f9160040161086d565b926044359182116103b4576109a6916004016108cb565b9060643590565b346103b4576109bb3661094b565b6109c9818385879697611d89565b926109d3846121ea565b50600b546109f1906001600160a01b03165b6001600160a01b031690565b9260409586519363793d064960e11b855260209081866004818a5afa958615610ba657600096610bd8575b506bffffffffffffffffffffffff193060601b161895818951809263b1c5f42760e01b82528180610a538c8a8a8d60048601613af5565b03915afa918215610ba657600092610bab575b5050610a7c87600052600c602052604060002090565b55600b54610a92906001600160a01b03166109e5565b90813b156103b45760008094610abe878b51998a97889687956308f2a0bb60e41b875260048701613b3b565b03925af1908115610ba657610ae292610add92610b8d575b504261229c565b612b60565b65ffffffffffff811615610b7c57917f9a2e42fd6722813d69113e7d0079d3d940171428df7373df9c7f7617cfda2892610b6b84610b4d610568966001610b33886000526004602052604060002090565b019065ffffffffffff1665ffffffffffff19825416179055565b835185815265ffffffffffff90911660208201529081906040820190565b0390a1519081529081906020820190565b8251634844252360e11b8152600490fd5b80610b9a610ba09261064f565b806103b9565b38610ad6565b612394565b610bca9250803d10610bd1575b610bc281836106d4565b81019061254b565b3880610a66565b503d610bb8565b610bf0919650823d8411610bd157610bc281836106d4565b9438610a1c565b610c003661094b565b610c0e818385879597611d89565b92610c188461223c565b50610c43610c30856000526004602052604060002090565b805460ff60f01b1916600160f01b179055565b600b546001600160a01b03939084163003610cf5575b94610c6992916105689686613b89565b600b543091166001600160a01b0316141580610cd0575b610cc1575b6040518181527f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f90602090a16040519081529081906020820190565b610ccb6000600555565b610c85565b50610cf0610cec6005546001600160801b0381169060801c1490565b1590565b610c80565b9290939160005b8451811015610d5557610d319030610d276109e5610d1a848a611e5f565b516001600160a01b031690565b14610d3657611e3a565b610cfc565b610d50610d43828a611e5f565b5160208151910120612f4c565b611e3a565b5091939092610c59565b346103b45760203660031901126103b4576004356000526004602052602065ffffffffffff60406000205460a01c16604051908152f35b346103b45760003660031901126103b45760206040517f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a8118152f35b346103b45760003660031901126103b457602065ffffffffffff60085416604051908152f35b634e487b7160e01b600052602160045260246000fd5b60081115610e1757565b610df7565b906008821015610e175752565b346103b45760203660031901126103b4576020610e47600435613090565b610e546040518092610e1c565bf35b346103b45760403660031901126103b457602060ff610ea3602435610e7a81610628565b6004356000526009845260036040600020019060018060a01b0316600052602052604060002090565b54166040519015158152f35b346103b457610ebd3661094b565b92610ecd84838584969596611d89565b610ed681613090565b6008811015610e17571580610f2e575b15610f0a57610568610efa868686866139b4565b6040519081529081906020820190565b604051638fe5d8a960e01b81526004810191909152336024820152604490fd5b0390fd5b5080600052600460205260018060a01b03604060002054163314610ee6565b346103b45760003660031901126103b457610568610f6961246c565b6040519182916020835260208301906104d6565b346103b45760203660031901126103b45760043560005260096020526040600020805461056860026001840154930154604051938493846040919493926060820195825260208201520152565b346103b45760003660031901126103b457610568604051610fea81610667565b60018152603160f81b60208201526040519182916020835260208301906104d6565b6024359060ff821682036103b457565b346103b45760403660031901126103b457602061106461103a61100c565b60405161104681610682565b600081526040519161105783610682565b6000835233600435611fea565b604051908152f35b9181601f840112156103b4578235916001600160401b0383116103b457602083818601950101116103b457565b346103b45760c03660031901126103b4576110b261100c565b604435906110bf82610628565b6001600160401b03906064358281116103b4576110e090369060040161106c565b6084358481116103b4576110f8903690600401610756565b9160a4359485116103b45761056895611118610efa963690600401610756565b94600435611e78565b346103b45760803660031901126103b45761113a61100c565b6001600160401b03906044358281116103b45761115b90369060040161106c565b90916064359384116103b4576111866110649361117e6020963690600401610756565b93369161071f565b9033600435611fea565b346103b45760203660031901126103b45760206110646004356125d7565b65ffffffffffff8116036103b457565b346103b45760203660031901126103b4576004356111db816111ae565b6111e3612139565b6008547fc565b045403dc03c2eea82b81a0465edad9e2e7fc4d97e11421c209da93d7a93604080519365ffffffffffff9081851686521693846020820152a165ffffffffffff191617600855005b346103b45760603660031901126103b45761124a61100c565b6044356001600160401b0381116103b45760209161127961127261106493369060040161106c565b369161071f565b6040519161105783610682565b346103b45760803660031901126103b4576001600160401b036004358181116103b4576112b7903690600401610805565b906024358181116103b4576112d090369060040161086d565b916044358281116103b4576112e99036906004016108cb565b6064359283116103b457366023840112156103b45761056893611319610efa94369060248160040135910161071f565b92613362565b346103b45760203660031901126103b45760043561133c81610628565b60018060a01b031660005260026020526020604060002054604051908152f35b90815180825260208080930193019160005b82811061137c575050505090565b83518552938101939281019260010161136e565b346103b45760003660031901126103b45761142b6113cd7f0000000000000000000000000000000000000000000000000000000000000000612824565b6105686113f97f000000000000000000000000000000000000000000000000000000000000000061291b565b6114396040519161140983610682565b60008352604051958695600f60f81b875260e0602088015260e08701906104d6565b9085820360408701526104d6565b90466060850152306080850152600060a085015283820360c085015261135c565b346103b45760803660031901126103b45760043561147661100c565b906044359161148483610628565b6064356001600160401b0381116103b457610cec6114a9611536923690600401610756565b6001600160a01b03861660009081526002602052604090208054600181019091556115309060405160208101917ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d7835288604083015260ff8816606083015260018060a01b038a16608083015260a082015260a081526115288161069d565b5190206126ea565b866129dd565b6115515790610efa916105689361154b611ce4565b92611f6e565b6040516394ab6c0760e01b81526001600160a01b0384166004820152602490fd5b346103b45760003660031901126103b457602061158d6123a0565b65ffffffffffff60405191168152f35b346103b45760003660031901126103b457602060405160648152f35b346103b45760603660031901126103b4576004356115d681610628565b6044356001600160401b0381116103b4576044916115fa6020923690600401610756565b50604051630748d63560e31b81526001600160a01b039182166004820152602480359082015292839182907f0000000000000000000000000000000000000000000000000000000000000000165afa8015610ba6576105689160009161166c575b506040519081529081906020820190565b611684915060203d8111610bd157610bc281836106d4565b3861165b565b346103b45760003660031901126103b45760206001600160d01b036116ad612cec565b16604051908152f35b346103b45760203660031901126103b4576004356116d381610628565b6116db612139565b600b547f08f74ea46ef7894f65eabfb5e6e695de773a000b47c529ab559178069b226401604060018060a01b038094169381519084168152846020820152a16001600160a01b03191617600b55005b346103b457602061106461173d3661094b565b92919091611d89565b346103b45760203660031901126103b457602060405160018152f35b346103b45760203660031901126103b4576004356000526004602052602065ffffffffffff60016040600020015416604051908152f35b346103b45760003660031901126103b4576020600754604051908152f35b346103b45760a03660031901126103b4576117d3600435610628565b6117de602435610628565b6001600160401b036044358181116103b4576117fe90369060040161086d565b506064358181116103b45761181790369060040161086d565b506084359081116103b457611830903690600401610756565b5061056861183c6121ad565b6040516001600160e01b031990911681529081906020820190565b346103b45760203660031901126103b4576020611064600435611e03565b60603660031901126103b45760043561188d81610628565b604435906001600160401b0382116103b457600080916118b461002194369060040161106c565b906118bd612139565b81604051928392833781018481520391602435905af16118db612109565b906126c1565b346103b45760003660031901126103b457600b546040516001600160a01b039091168152602090f35b346103b45760003660031901126103b45761056860405161192a81610667565b602081527f737570706f72743d627261766f2671756f72756d3d666f722c6162737461696e60208201526040519182916020835260208301906104d6565b346103b45760003660031901126103b45760206040517ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d78152f35b346103b45760203660031901126103b45760043563ffffffff808216918281036103b4576119cf612139565b8215611a33577f7e3f7f0708a84de9203036abaa450dccc85ad5ff52f78c170f3edb55cf5e8828604069ffffffff00000000000093600854958251918760301c1682526020820152a160301b169069ffffffff000000000000191617600855600080f35b60405163f1cfbf0560e01b815260006004820152602490fd5b346103b45760403660031901126103b45760446020600435611a6d81610628565b6000604051611a7b81610682565b52604051630748d63560e31b81526001600160a01b039182166004820152602480359082015292839182907f0000000000000000000000000000000000000000000000000000000000000000165afa8015610ba6576105689160009161166c57506040519081529081906020820190565b346103b45760203660031901126103b457600435611b08612139565b60075460408051918252602082018390527fccb45da8d5717e6c4544694297c4ba5cf151d455c9bb0ed4fc7a38411bc0546191a1600755005b346103b45760a03660031901126103b457611b5d600435610628565b611b68602435610628565b6084356001600160401b0381116103b457611b87903690600401610756565b50600b546001600160a01b031630036107dc5760405163f23a6e6160e01b8152602090f35b346103b45760203660031901126103b457604051632394e7a360e21b815260048035908201819052906020816024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa8015610ba65761056892610efa92600092611c2d575b50611c27906125d7565b90612fff565b611c27919250611c4a9060203d8111610bd157610bc281836106d4565b9190611c1d565b346103b45760003660031901126103b4576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b600b546001600160a01b031630036107dc57565b90600182811c92168015611cda575b6020831014611cc457565b634e487b7160e01b600052602260045260246000fd5b91607f1691611cb9565b60405190611cf182610682565b60008252565b90815180825260208080930193019160005b828110611d17575050505090565b83516001600160a01b031685529381019392810192600101611d09565b90815180825260208092019182818360051b85019501936000915b848310611d5f5750505050505090565b9091929394958480611d7983856001950387528a516104d6565b9801930193019194939290611d4f565b9290611dd592611de792604051948592611dc5611db2602086019960808b5260a0870190611cf7565b601f19968787830301604088015261135c565b9085858303016060860152611d34565b906080830152039081018352826106d4565b51902090565b634e487b7160e01b600052601160045260246000fd5b600052600460205260406000205465ffffffffffff908163ffffffff8260d01c169160a01c1601818111611e35571690565b611ded565b6000198114611e355760010190565b634e487b7160e01b600052603260045260246000fd5b8051821015611e735760209160051b010190565b611e49565b939092919695610cec611f3291611f2c8a611eae8160018060a01b03166000526002602052604060002080549060018201905590565b611eb936888a61071f565b602081519101208b5160208d0120906040519260208401947f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a81186528d604086015260ff8d16606086015260018060a01b0316608085015260a084015260c083015260e082015260e08152611528816106b8565b8a6129dd565b611f4d5761050c959691611f4791369161071f565b92611fea565b6040516394ab6c0760e01b81526001600160a01b0388166004820152602490fd5b9161050c939160405193611f8185610682565b60008552611fea565b93909260ff611fb69361050c97958752166020860152604085015260a0606085015260a08401906104d6565b9160808184039101526104d6565b909260ff60809361050c96958452166020830152604082015281606082015201906104d6565b929190611ff684613090565b6008811015610e17576002600160ff83161b16156120db575083600052600460205261205261204a612044612039604060002065ffffffffffff905460a01c1690565b65ffffffffffff1690565b8361255a565b8383876122a9565b9480511560001461209f57506120997fb8e138887d0aa13bab447e82de9d5c1777041ecd21ca36ba824ff1e6c07ddda4938660405194859460018060a01b03169785611fc4565b0390a290565b612099907fe2babfbac5889a709b63bb7f598b324e08bc5a4fb9ec647fb3cbc9ec07eb8712948760405195869560018060a01b03169886611f8a565b6040516331b75e4d60e01b815260048101869052606491612100906024830190610e1c565b60026044820152fd5b3d15612134573d9061211a82610704565b9161212860405193846106d4565b82523d6000602084013e565b606090565b600b546001600160a01b031633810361219557300361215457565b61215d36610704565b61216a60405191826106d4565b368152602081019036600083376000602036830101525190205b8061218d612fa7565b036121845750565b6040516347096e4760e01b8152336004820152602490fd5b600b546001600160a01b031630036107dc5763bc197c8160e01b90565b6040906121e66000939594606083019683526020830190610e1c565b0152565b6121f381613090565b906008821015610e17576010600160ff84161b1615612210575090565b612233606492604051926331b75e4d60e01b845260048401526024830190610e1c565b60106044820152fd5b61224581613090565b906008821015610e17576030600160ff84161b1615612262575090565b612285606492604051926331b75e4d60e01b845260048401526024830190610e1c565b60306044820152fd5b9060018201809211611e3557565b91908201809211611e3557565b6122c0909291926000526009602052604060002090565b91600383016122eb6122e483839060018060a01b0316600052602052604060002090565b5460ff1690565b6123735761231160ff939261231e929060018060a01b0316600052602052604060002090565b805460ff19166001179055565b1680612335575061233082825461229c565b905590565b6001810361234c575060010161233082825461229c565b6002036123615760020161233082825461229c565b6040516303599be160e11b8152600490fd5b6040516371c6af4960e01b81526001600160a01b0383166004820152602490fd5b6040513d6000823e3d90fd5b6040516324776b7d60e21b81526020816004817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa600091816123f7575b5061050c575061050c43612b60565b90916020823d821161242b575b81612411602093836106d4565b810103126105f1575051612424816111ae565b90386123e8565b3d9150612404565b6040519061244082610667565b601d82527f6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c740000006020830152565b604051634bf5d7e960e01b8152600080826004817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa909182826124c4575b505061050c575061050c612433565b909192503d8082843e6124d781846106d4565b820191602081840312612543578051906001600160401b038211612547570182601f820112156125435780519161250d83610704565b9361251b60405195866106d4565b838552602084840101116105f157509061253b91602080850191016104b3565b9038806124b5565b5080fd5b8280fd5b908160209103126103b4575190565b604051630748d63560e31b81526001600160a01b0391821660048201526024810192909252602090829060449082907f0000000000000000000000000000000000000000000000000000000000000000165afa908115610ba6576000916125bf575090565b61050c915060203d8111610bd157610bc281836106d4565b6125df612d36565b926000925065ffffffffffff9182168110612604575050505b6001600160d01b031690565b61261091929350612b60565b600a54908390826005811161266b575b5061262b9350612ee3565b8061263657506125f8565b612666915061264761265f91612b92565b600a600052600080516020613c158339815191520190565b5460301c90565b6125f8565b909261267682612bc1565b8203918211611e355761262b94600a87528083600080516020613c15833981519152015416908516106000146126af5750915b38612620565b9291506126bb9061228e565b906126a9565b90919061070257508051156126d857805190602001fd5b60405163d6bda27560e01b8152600490fd5b6042906126f5612710565b906040519161190160f01b8352600283015260228201522090565b307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614806127fb575b1561276b577f000000000000000000000000000000000000000000000000000000000000000090565b60405160208101907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82527f000000000000000000000000000000000000000000000000000000000000000060408201527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260a08152611de78161069d565b507f00000000000000000000000000000000000000000000000000000000000000004614612742565b60ff81146128625760ff811690601f8211612850576040519161284683610667565b8252602082015290565b604051632cd44ac360e21b8152600490fd5b5060405160008181549161287583611caa565b808352926001908181169081156128f9575060011461289c575b5061050c925003826106d4565b600080805291507f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5635b8483106128de575061050c93505081016020013861288f565b819350908160209254838589010152019101909184926128c5565b90506020925061050c94915060ff191682840152151560051b8201013861288f565b60ff811461293d5760ff811690601f8211612850576040519161284683610667565b5060405160008160019182549261295384611caa565b808452938181169081156128f95750600114612976575061050c925003826106d4565b600081815291507fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf65b8483106129b8575061050c93505081016020013861288f565b8193509081602092548385890101520191019091849261299f565b60041115610e1757565b9091813b612a18576129ef9192612aa0565b506129f9816129d3565b159182612a0557505090565b6001600160a01b03918216911614919050565b6000918291604051612a5c81612a4e6020820194630b135d3f60e11b998a875260248401526040604484015260648301906104d6565b03601f1981018352826106d4565b51915afa90612a69612109565b82612a92575b82612a7957505090565b612a8e9192506020808251830101910161254b565b1490565b915060208251101591612a6f565b8151919060418303612ad157612aca92506020820151906060604084015193015160001a90612adc565b9192909190565b505060009160029190565b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411612b5457926020929160ff608095604051948552168484015260408301526060820152600092839182805260015afa15610ba65780516001600160a01b03811615612b4b57918190565b50809160019190565b50505060009160039190565b65ffffffffffff90818111612b73571690565b604490604051906306dfcc6560e41b8252603060048301526024820152fd5b600019810191908211611e3557565b8115612bab570490565b634e487b7160e01b600052601260045260246000fd5b600181111561050c57600181600160801b811015612cda575b612c82612c78612c6e612c64612c5a612c50612c8e97600488600160401b612c899a1015612ccd575b640100000000811015612cc0575b62010000811015612cb3575b610100811015612ca7575b6010811015612c9b575b1015612c93575b60030260011c612c49818b612ba1565b0160011c90565b612c49818a612ba1565b612c498189612ba1565b612c498188612ba1565b612c498187612ba1565b612c498186612ba1565b8093612ba1565b821190565b900390565b60011b612c39565b811c9160021b91612c32565b60081c91811b91612c28565b60101c9160081b91612c1d565b60201c9160101b91612c11565b60401c9160201b91612c03565b50600160401b9050608082901c612bda565b600a5460009080612cfe575050600090565b80600019810111611e3557600a7fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a79252015460301c90565b600a5480612d4a5750600090600090600090565b80600019810111611e3557600a6000527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a7015460019165ffffffffffff82169160301c90565b600a5490600160401b821015610662576001820180600a55821015611e735761070291600a600052600080516020613c158339815191520190612df065ffffffffffff825116839065ffffffffffff1665ffffffffffff19825416179055565b60200151815465ffffffffffff1660309190911b65ffffffffffff1916179055565b600a549192918015612eb957612647612e2a91612b92565b9081549165ffffffffffff90818416918316808311612ea757869203612e6f57612e6892509065ffffffffffff82549181199060301b169116179055565b60301c9190565b5050612ea290612e8e612e806106f5565b65ffffffffffff9092168252565b6001600160d01b0385166020820152612d90565b612e68565b604051632520601d60e01b8152600490fd5b50612edd90612ec9612e806106f5565b6001600160d01b0384166020820152612d90565b60009190565b905b828110612ef157505090565b90918082169080831860011c8201809211611e3557600a60005265ffffffffffff8083600080516020613c1583398151915201541690851610600014612f3a5750915b90612ee5565b929150612f469061228e565b90612f34565b6005548060801c9160018301926001600160801b0380931683851614612f94576000526006602052604060002055600554916001600160801b03199060801b16911617600555565b634e487b7160005260416020526024601cfd5b600554906001600160801b038083169260801c8314612fec57826000526006602052600160406000209360008554955501166001600160801b03196005541617600555565b634e487b7160005260316020526024601cfd5b6000198282098282029182808310920391808303921461306e57816064111561305b577f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c29936064910990828211900360fe1b910360021c170290565b634e487b7160005260116020526024601cfd5b5050606491500490565b908160209103126103b4575180151581036103b45790565b613099816131a2565b906130a382610e0d565b6005820361319e576130c09150600052600c602052604060002090565b54600b546130d6906001600160a01b03166109e5565b604051632c258a9f60e11b81526004810183905260209291908381602481855afa908115610ba657600091613181575b501561311457505050600590565b604051632ab0f52960e01b815260048101929092528290829060249082905afa918215610ba657600092613154575b50501561314f57600790565b600290565b6131739250803d1061317a575b61316b81836106d4565b810190613078565b3880613143565b503d613161565b6131989150843d861161317a5761316b81836106d4565b38613106565b5090565b6131b6816000526004602052604060002090565b5460ff8160f01c166132bf5760f81c6132b9576131f26120396131e3836000526004602052604060002090565b5460a01c65ffffffffffff1690565b80156132a0576132036120396123a0565b809110156132995761321482611e03565b1061321f5750600190565b61322b610cec826132c6565b8015613274575b1561323d5750600390565b6120396001613259613266936000526004602052604060002090565b015465ffffffffffff1690565b61326f57600490565b600590565b50613294610cec8260005260096020526040600020600181015490541090565b613232565b5050600090565b604051636ad0607560e01b815260048101839052602490fd5b50600290565b5050600790565b60005260096020526040600020600460205265ffffffffffff60406000205460a01c16604051632394e7a360e21b815281600482015260208160248160018060a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa8015610ba65761335d9261334c92600092611c2d5750611c27906125d7565b91600260018201549101549061229c565b101590565b9193929093613371823361374e565b1561346757600754948561338d575b61050c9495503393613597565b65ffffffffffff600019816133a06123a0565b160190808211611e355760006040516133b881610682565b52604051630748d63560e31b8152336004820152911660248201526020816044817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa908115610ba657600091613449575b508681106134225750613380565b604051636121770b60e11b8152336004820152602481019190915260448101879052606490fd5b613461915060203d8111610bd157610bc281836106d4565b38613414565b60405163d9b3955760e01b8152336004820152602490fd5b90613489826107ee565b61349660405191826106d4565b82815280926134a7601f19916107ee565b019060005b8281106134b857505050565b8060606020809385010152016134ac565b95926134fc9061350a939b9a9899969592885260209b60018060a01b03168c8901526101208060408a0152880190611cf7565b90868203606088015261135c565b9784890360808601528251808a52818a019180808360051b8d01019501926000905b83821061356957505050505061050c969750906135509184820360a0860152611d34565b9360c083015260e08201526101008184039101526104d6565b909192939583806135888f93600194601f199082030186528a516104d6565b9801920192019093929161352c565b9194939092946135af86516020880120828686611d89565b958351855190818114801590613743575b801561373b575b61371257505065ffffffffffff94856135ed6131e38a6000526004602052604060002090565b166136eb577f7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e0956136e69363ffffffff6136366136286123a0565b60085494808616911661229c565b9260301c166136c46136528c6000526004602052604060002090565b80546001600160a01b0319166001600160a01b038a1617815561369b61367786612b60565b825465ffffffffffff60a01b191660a09190911b65ffffffffffff60a01b16178255565b6136a483613984565b815463ffffffff60d01b191660d09190911b63ffffffff60d01b16179055565b6136d86136d1895161347f565b918461229c565b936040519889988d8a6134c9565b0390a1565b876136f581613090565b6040516331b75e4d60e01b8152918291610f2a91600484016121ca565b8351604051630447b05d60e41b8152600481019290925260248201526044810191909152606490fd5b5080156135c7565b5083518114156135c0565b9080516034811061379b5760131981830101516001600160b01b03191669dc8f8d908f908c9a8dc360b01b0161379b5761378d916029198201906137cf565b9015918215612a0557505090565b505050600190565b908160011b9180830460021490151715611e3557565b908160041b9180830460101490151715611e3557565b9190825182118015613858575b61382f576137e98161228e565b82118061383a575b6137fc9015156137a3565b60280180602811611e3557818303838111611e35570361382f5761381f92613861565b90916001600160a01b0390911690565b505050600090600090565b50828101602001516001600160f01b03191661060f60f31b146137f1565b508181116137dc565b92909261386d8461228e565b8311806138f4575b6138809015156137a3565b936000948101809111611e35579192905b8183106138a15750505060019190565b9092919360ff6138c26138bd6020888601015160ff60f81b1690565b613912565b1690600f82116138e857906138d96138e0926137b9565b0194611e3a565b919290613891565b50600094508493505050565b50808401602001516001600160f01b03191661060f60f31b14613875565b60f81c602f81118061397a575b1561392e57602f190160ff1690565b6060811180613970575b15613947576056190160ff1690565b6040811180613966575b15613960576036190160ff1690565b5060ff90565b5060478110613951565b5060678110613938565b50603a811061391f565b63ffffffff90818111613995571690565b604490604051906306dfcc6560e41b8252602060048301526024820152fd5b906139c0939291611d89565b6139c981613090565b6008811015610e1757603b600160ff83161b1615613ac85750613a0e6139f9826000526004602052604060002090565b80546001600160f81b0316600160f81b179055565b6040518181527f789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c90602090a1613a4e81600052600c602052604060002090565b5480613a58575090565b600b54613a6d906001600160a01b03166109e5565b803b156103b45760405163c4d252f560e01b815260048101929092526000908290602490829084905af18015610ba657613ab5575b506000818152600c602052604081205590565b80610b9a613ac29261064f565b38613aa2565b90613aec606492604051926331b75e4d60e01b845260048401526024830190610e1c565b603b6044820152fd5b949392613b21608093613b13613b2f9460a08a5260a08a0190611cf7565b9088820360208a015261135c565b908682036040880152611d34565b93600060608201520152565b9192613b6a60a094613b5c613b78949998979960c0875260c0870190611cf7565b90858203602087015261135c565b908382036040850152611d34565b946000606083015260808201520152565b9290939160018060a01b03600b541690813b156103b457600093613bd86040519788958694859463e38335e560e01b86526bffffffffffffffffffffffff193060601b16189260048601613af5565b039134905af1908115610ba657600092613c0292613c05575b50600052600c602052604060002090565b55565b613c0e9061064f565b38613bf156fec65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8a264697066735822122096e6155403c0e85a4c4a6346f4c92d6c35195199ea8303e8c02eed5077b88d1b64736f6c63430008140033c65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80553476bf02ef2726e8ce5ced78d63e26e602e4a2257b1f559418e24b4633997","opcodes":"PUSH2 0x180 PUSH1 0x40 MSTORE CALLVALUE PUSH3 0xB7 JUMPI PUSH3 0x23 PUSH3 0x19 PUSH3 0x1C1 JUMP JUMPDEST SWAP1 SWAP5 SWAP2 SWAP4 PUSH3 0x295 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3C6A SWAP1 DUP2 PUSH3 0xCF0 DUP3 CODECOPY PUSH1 0x80 MLOAD DUP2 PUSH2 0x2749 ADD MSTORE PUSH1 0xA0 MLOAD DUP2 PUSH2 0x27FE ADD MSTORE PUSH1 0xC0 MLOAD DUP2 PUSH2 0x2713 ADD MSTORE PUSH1 0xE0 MLOAD DUP2 PUSH2 0x2798 ADD MSTORE PUSH2 0x100 MLOAD DUP2 PUSH2 0x27BE ADD MSTORE PUSH2 0x120 MLOAD DUP2 PUSH2 0x13A9 ADD MSTORE PUSH2 0x140 MLOAD DUP2 PUSH2 0x13D5 ADD MSTORE PUSH2 0x160 MLOAD DUP2 DUP2 DUP2 PUSH2 0x1627 ADD MSTORE DUP2 DUP2 PUSH2 0x1AA8 ADD MSTORE DUP2 DUP2 PUSH2 0x1BDD ADD MSTORE DUP2 DUP2 PUSH2 0x1C67 ADD MSTORE DUP2 DUP2 PUSH2 0x23B5 ADD MSTORE DUP2 DUP2 PUSH2 0x2482 ADD MSTORE DUP2 DUP2 PUSH2 0x258B ADD MSTORE DUP2 DUP2 PUSH2 0x330B ADD MSTORE PUSH2 0x33DB ADD MSTORE RETURN JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH3 0xEE JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH3 0xBC JUMP JUMPDEST PUSH1 0xC0 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH3 0xEE JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x1F SWAP1 SWAP2 ADD PUSH1 0x1F NOT AND DUP2 ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT SWAP1 DUP3 LT OR PUSH3 0xEE JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH3 0x143 DUP3 PUSH3 0xD2 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xEE JUMPI PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT PUSH3 0x175 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0x164 JUMP JUMPDEST MLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP3 SUB PUSH3 0xB7 JUMPI JUMP JUMPDEST MLOAD SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 AND DUP3 SUB PUSH3 0xB7 JUMPI JUMP JUMPDEST MLOAD SWAP1 PUSH4 0xFFFFFFFF DUP3 AND DUP3 SUB PUSH3 0xB7 JUMPI JUMP JUMPDEST PUSH3 0x499A DUP1 CODESIZE SUB DUP1 PUSH1 0x40 MLOAD SWAP3 PUSH3 0x1D9 DUP3 DUP6 PUSH3 0x110 JUMP JUMPDEST DUP4 CODECOPY DUP2 ADD PUSH1 0xE0 DUP3 DUP3 SUB SLT PUSH3 0xB7 JUMPI DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xB7 JUMPI DUP3 ADD DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH3 0xB7 JUMPI DUP1 MLOAD PUSH3 0x214 DUP2 PUSH3 0x145 JUMP JUMPDEST SWAP3 PUSH3 0x224 PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH3 0x110 JUMP JUMPDEST DUP2 DUP5 MSTORE PUSH1 0x20 DUP3 DUP5 ADD ADD GT PUSH3 0xB7 JUMPI PUSH3 0x245 SWAP2 PUSH1 0x20 DUP1 DUP6 ADD SWAP2 ADD PUSH3 0x161 JUMP JUMPDEST PUSH3 0x253 PUSH1 0x20 DUP4 ADD PUSH3 0x186 JUMP JUMPDEST SWAP3 PUSH3 0x262 PUSH1 0x40 DUP5 ADD PUSH3 0x186 JUMP JUMPDEST SWAP3 PUSH3 0x271 PUSH1 0x60 DUP3 ADD PUSH3 0x19B JUMP JUMPDEST SWAP3 PUSH3 0x280 PUSH1 0x80 DUP4 ADD PUSH3 0x1AF JUMP JUMPDEST SWAP3 PUSH1 0xC0 PUSH1 0xA0 DUP5 ADD MLOAD SWAP4 ADD MLOAD SWAP2 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 JUMP JUMPDEST SWAP5 PUSH3 0x372 PUSH3 0x38B SWAP6 PUSH3 0x36C PUSH3 0x378 SWAP5 SWAP7 PUSH3 0x366 PUSH3 0x143 SWAP12 PUSH1 0x40 MLOAD PUSH3 0x2C0 DUP2 PUSH3 0xD2 JUMP JUMPDEST PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 DUP2 ADD PUSH1 0x31 PUSH1 0xF8 SHL DUP2 MSTORE PUSH3 0x2DA DUP4 PUSH3 0x8B0 JUMP JUMPDEST PUSH2 0x120 MSTORE PUSH3 0x2E9 DUP3 PUSH3 0x9BE JUMP JUMPDEST PUSH2 0x140 MSTORE DUP3 MLOAD PUSH1 0x20 DUP5 ADD KECCAK256 SWAP2 DUP3 PUSH1 0xE0 MSTORE MLOAD SWAP1 KECCAK256 DUP1 PUSH2 0x100 MSTORE CHAINID PUSH1 0xA0 MSTORE PUSH1 0x40 MLOAD SWAP1 PUSH1 0x20 DUP3 ADD SWAP3 PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F DUP5 MSTORE PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xA0 DUP2 MSTORE PUSH3 0x356 DUP2 PUSH3 0xF4 JUMP JUMPDEST MLOAD SWAP1 KECCAK256 PUSH1 0x80 MSTORE ADDRESS PUSH1 0xC0 MSTORE PUSH3 0x4DB JUMP JUMPDEST PUSH3 0x5CE JUMP JUMPDEST PUSH3 0x61C JUMP JUMPDEST PUSH3 0x6A0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x160 MSTORE PUSH3 0x728 JUMP JUMPDEST PUSH3 0x6D9 JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH3 0x3C3 JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH3 0x3AD JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP2 PUSH1 0x7F AND SWAP2 PUSH3 0x3A1 JUMP JUMPDEST PUSH1 0x1F DUP2 GT PUSH3 0x3DB JUMPI POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 PUSH1 0x3 DUP3 MSTORE PUSH1 0x20 DUP3 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP4 ADD SWAP5 LT PUSH3 0x41C JUMPI JUMPDEST PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP2 JUMPDEST DUP3 DUP2 LT PUSH3 0x410 JUMPI POP POP POP JUMP JUMPDEST DUP2 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x403 JUMP JUMPDEST SWAP1 SWAP3 POP DUP3 SWAP1 PUSH3 0x3FA JUMP JUMPDEST PUSH1 0x1F DUP2 GT PUSH3 0x434 JUMPI POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 DUP1 MSTORE PUSH1 0x20 DUP3 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP4 ADD SWAP5 LT PUSH3 0x474 JUMPI JUMPDEST PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP2 JUMPDEST DUP3 DUP2 LT PUSH3 0x468 JUMPI POP POP POP JUMP JUMPDEST DUP2 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x45B JUMP JUMPDEST SWAP1 SWAP3 POP DUP3 SWAP1 PUSH3 0x452 JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP3 GT PUSH3 0x48D JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 SWAP2 PUSH1 0x0 SWAP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 KECCAK256 SWAP1 PUSH1 0x20 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP4 ADD SWAP5 LT PUSH3 0x4D0 JUMPI JUMPDEST PUSH1 0x1F ADD PUSH1 0x5 SHR ADD SWAP2 JUMPDEST DUP3 DUP2 LT PUSH3 0x4C5 JUMPI POP POP POP POP JUMP JUMPDEST DUP2 DUP2 SSTORE DUP4 ADD PUSH3 0x4B7 JUMP JUMPDEST SWAP1 SWAP3 POP DUP3 SWAP1 PUSH3 0x4AE JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xEE JUMPI PUSH3 0x507 DUP2 PUSH3 0x501 PUSH1 0x3 SLOAD PUSH3 0x391 JUMP JUMPDEST PUSH3 0x3CE JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0x546 JUMPI POP DUP2 SWAP3 SWAP4 PUSH1 0x0 SWAP3 PUSH3 0x53A JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR PUSH1 0x3 SSTORE JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x523 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP5 SWAP1 SWAP2 SWAP1 PUSH32 0xC2575A0E9E593C00F959F8C92F12DB2869C3395A3B0502D05E2516446F71F85B SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP8 DUP3 LT PUSH3 0x5B5 JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 LT PUSH3 0x59B JUMPI JUMPDEST POP POP POP DUP2 SHL ADD PUSH1 0x3 SSTORE JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0x590 JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0x57A JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH32 0xC565B045403DC03C2EEA82B81A0465EDAD9E2E7FC4D97E11421C209DA93D7A93 PUSH1 0x40 DUP1 MLOAD SWAP4 PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP6 AND DUP7 MSTORE AND SWAP4 DUP5 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH6 0xFFFFFFFFFFFF NOT AND OR PUSH1 0x8 SSTORE JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP1 DUP3 AND SWAP2 DUP3 ISZERO PUSH3 0x687 JUMPI PUSH32 0x7E3F7F0708A84DE9203036ABAA450DCCC85AD5FF52F78C170F3EDB55CF5E8828 PUSH1 0x40 PUSH10 0xFFFFFFFF000000000000 SWAP4 PUSH1 0x8 SLOAD SWAP6 DUP3 MLOAD SWAP2 DUP8 PUSH1 0x30 SHR AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x30 SHL AND SWAP1 PUSH10 0xFFFFFFFF000000000000 NOT AND OR PUSH1 0x8 SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xF1CFBF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP4 SWAP1 MSTORE PUSH32 0xCCB45DA8D5717E6C4544694297C4BA5CF151D455C9BB0ED4FC7A38411BC05461 SWAP2 LOG1 PUSH1 0x7 SSTORE JUMP JUMPDEST PUSH1 0xB SLOAD PUSH32 0x8F74EA46EF7894F65EABFB5E6E695DE773A000B47C529AB559178069B226401 PUSH1 0x40 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP1 SWAP5 AND SWAP4 DUP2 MLOAD SWAP1 DUP5 AND DUP2 MSTORE DUP5 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND OR PUSH1 0xB SSTORE JUMP JUMPDEST SWAP1 PUSH1 0x64 DUP3 GT PUSH3 0x7DC JUMPI PUSH1 0xA SLOAD PUSH1 0x0 SWAP3 SWAP1 DUP1 PUSH3 0x795 JUMPI POP PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x497A DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP2 SWAP3 POP PUSH1 0x0 JUMPDEST PUSH3 0x776 PUSH3 0x764 PUSH3 0x7FC JUMP JUMPDEST PUSH3 0x76F DUP5 PUSH3 0xB21 JUMP JUMPDEST SWAP1 PUSH3 0xBF3 JUMP JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE LOG1 JUMP JUMPDEST PUSH1 0x0 NOT SWAP1 DUP1 DUP3 DUP2 ADD GT PUSH3 0x7C8 JUMPI PUSH1 0x20 DUP6 PUSH1 0xA PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x497A DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP7 SWAP8 MSTORE KECCAK256 ADD ADD SLOAD PUSH1 0x30 SHR PUSH3 0x756 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL DUP6 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x243E5445 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST PUSH2 0x160 MLOAD PUSH1 0x40 MLOAD PUSH4 0x24776B7D PUSH1 0xE2 SHL DUP2 MSTORE SWAP1 PUSH1 0x20 SWAP1 DUP3 SWAP1 PUSH1 0x4 SWAP1 DUP3 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL PUSH1 0x0 SWAP2 DUP2 PUSH3 0x86A JUMPI JUMPDEST POP PUSH3 0x867 JUMPI POP PUSH6 0xFFFFFFFFFFFF DUP1 NUMBER GT PUSH3 0x848 JUMPI NUMBER AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x30 PUSH1 0x4 DUP3 ADD MSTORE NUMBER PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST SWAP1 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x20 DUP3 RETURNDATASIZE DUP3 GT PUSH3 0x8A7 JUMPI JUMPDEST DUP2 PUSH3 0x887 PUSH1 0x20 SWAP4 DUP4 PUSH3 0x110 JUMP JUMPDEST DUP2 ADD SUB SLT PUSH3 0x8A4 JUMPI POP PUSH3 0x89C SWAP1 PUSH3 0x19B JUMP JUMPDEST SWAP1 CODESIZE PUSH3 0x82D JUMP JUMPDEST DUP1 REVERT JUMPDEST RETURNDATASIZE SWAP2 POP PUSH3 0x878 JUMP JUMPDEST SWAP1 DUP2 MLOAD PUSH1 0x20 SWAP1 DUP2 DUP2 LT PUSH1 0x0 EQ PUSH3 0x8CF JUMPI POP POP SWAP1 PUSH3 0x867 SWAP1 PUSH3 0xAB2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xEE JUMPI PUSH1 0x0 SWAP2 PUSH3 0x8F8 DUP3 PUSH3 0x8F2 DUP6 SLOAD PUSH3 0x391 JUMP JUMPDEST PUSH3 0x427 JUMP JUMPDEST DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0x937 JUMPI POP DUP3 SWAP4 SWAP5 DUP3 SWAP4 SWAP3 PUSH3 0x92B JUMPI JUMPDEST POP POP DUP2 PUSH1 0x1 SHL SWAP2 PUSH1 0x0 NOT SWAP1 PUSH1 0x3 SHL SHR NOT AND OR SWAP1 SSTORE PUSH1 0xFF SWAP1 JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0x912 JUMP JUMPDEST PUSH1 0x0 DUP1 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP6 PUSH32 0x290DECD9548B62A8D60345A988386FC84BA6BC95484008F6362F93160EF3E563 SWAP3 SWAP2 DUP6 SWAP1 JUMPDEST DUP9 DUP3 LT PUSH3 0x9A5 JUMPI POP POP DUP4 PUSH1 0x1 SWAP6 SWAP7 SWAP8 LT PUSH3 0x98B JUMPI JUMPDEST POP POP POP DUP2 SHL ADD SWAP1 SSTORE PUSH1 0xFF SWAP1 JUMP JUMPDEST ADD MLOAD PUSH1 0x0 NOT PUSH1 0xF8 DUP5 PUSH1 0x3 SHL AND SHR NOT AND SWAP1 SSTORE CODESIZE DUP1 DUP1 PUSH3 0x97E JUMP JUMPDEST DUP1 PUSH1 0x1 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0x967 JUMP JUMPDEST SWAP1 DUP2 MLOAD PUSH1 0x20 SWAP1 DUP2 DUP2 LT PUSH1 0x0 EQ PUSH3 0x9DD JUMPI POP POP SWAP1 PUSH3 0x867 SWAP1 PUSH3 0xAB2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH3 0xEE JUMPI PUSH1 0x1 SWAP2 PUSH3 0xA06 DUP3 PUSH3 0xA00 DUP6 SLOAD PUSH3 0x391 JUMP JUMPDEST PUSH3 0x47F JUMP JUMPDEST DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 EQ PUSH3 0xA45 JUMPI POP DUP2 SWAP3 SWAP4 SWAP5 PUSH1 0x0 SWAP3 PUSH3 0xA39 JUMPI JUMPDEST POP POP PUSH1 0x0 NOT PUSH1 0x3 DUP4 SWAP1 SHL SHR NOT AND SWAP1 DUP3 SHL OR SWAP1 SSTORE PUSH1 0xFF SWAP1 JUMP JUMPDEST ADD MLOAD SWAP1 POP CODESIZE DUP1 PUSH3 0xA21 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 MSTORE PUSH1 0x1F NOT DUP4 AND SWAP6 SWAP1 SWAP2 SWAP1 PUSH32 0xB10E2D527612073B26EECDFD717E6A320CF44B4AFAC2B0732D9FCBE2B7FA0CF6 SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP9 DUP3 LT PUSH3 0xA9A JUMPI POP POP DUP4 DUP6 SWAP7 SWAP8 LT PUSH3 0x98B JUMPI POP POP POP DUP2 SHL ADD SWAP1 SSTORE PUSH1 0xFF SWAP1 JUMP JUMPDEST DUP1 DUP8 DUP6 SWAP7 DUP3 SWAP5 SWAP7 DUP7 ADD MLOAD DUP2 SSTORE ADD SWAP6 ADD SWAP4 ADD SWAP1 PUSH3 0xA79 JUMP JUMPDEST PUSH1 0x1F DUP2 MLOAD GT PUSH3 0xAE0 JUMPI PUSH1 0x20 DUP2 MLOAD SWAP2 ADD MLOAD PUSH1 0x20 DUP3 LT PUSH3 0xAD0 JUMPI OR SWAP1 JUMP JUMPDEST PUSH1 0x0 NOT DUP3 PUSH1 0x20 SUB PUSH1 0x3 SHL SHL AND OR SWAP1 JUMP JUMPDEST PUSH1 0x44 PUSH1 0x40 MLOAD DUP1 SWAP3 PUSH4 0x305A27A9 PUSH1 0xE0 SHL DUP3 MSTORE PUSH1 0x20 PUSH1 0x4 DUP4 ADD MSTORE PUSH3 0xB13 DUP2 MLOAD DUP1 SWAP3 DUP2 PUSH1 0x24 DUP7 ADD MSTORE PUSH1 0x20 DUP7 DUP7 ADD SWAP2 ADD PUSH3 0x161 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND DUP2 ADD SUB ADD SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 DUP2 GT PUSH3 0xB36 JUMPI AND SWAP1 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP3 MSTORE PUSH1 0xD0 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x0 NOT DUP2 ADD SWAP2 SWAP1 DUP3 GT PUSH3 0xB65 JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0xA SLOAD SWAP1 PUSH9 0x10000000000000000 DUP3 LT ISZERO PUSH3 0xEE JUMPI PUSH1 0x1 DUP3 ADD DUP1 PUSH1 0xA SSTORE DUP3 LT ISZERO PUSH3 0xBDD JUMPI PUSH1 0xA PUSH1 0x0 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD MLOAD PUSH1 0x30 SHL PUSH6 0xFFFFFFFFFFFF NOT AND PUSH6 0xFFFFFFFFFFFF SWAP2 SWAP1 SWAP2 AND OR PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x495A DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 SWAP2 ADD SSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0xA SLOAD SWAP2 SWAP3 SWAP2 DUP1 ISZERO PUSH3 0xCC0 JUMPI PUSH3 0xC0F PUSH3 0xC28 SWAP2 PUSH3 0xB55 JUMP JUMPDEST PUSH1 0xA PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x495A DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 JUMP JUMPDEST SWAP1 DUP2 SLOAD SWAP2 PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP5 AND SWAP2 DUP4 AND DUP1 DUP4 GT PUSH3 0xCAE JUMPI DUP7 SWAP3 SUB PUSH3 0xC70 JUMPI PUSH3 0xC69 SWAP3 POP SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 SLOAD SWAP2 DUP2 NOT SWAP1 PUSH1 0x30 SHL AND SWAP2 AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x30 SHR SWAP2 SWAP1 JUMP JUMPDEST POP POP PUSH3 0xCA8 SWAP1 PUSH3 0xC93 PUSH3 0xC85 PUSH3 0x134 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP3 AND DUP3 MSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH3 0xB7B JUMP JUMPDEST PUSH3 0xC69 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2520601D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST POP PUSH3 0xCE9 SWAP1 PUSH3 0xCD4 PUSH3 0xC85 PUSH3 0x134 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH3 0xB7B JUMP JUMPDEST PUSH1 0x0 SWAP2 SWAP1 JUMP INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT ISZERO PUSH2 0x23 JUMPI JUMPDEST CALLDATASIZE ISZERO PUSH2 0x19 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x21 PUSH2 0x1C96 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x32E JUMPI DUP1 PUSH4 0x2A251A3 EQ PUSH2 0x329 JUMPI DUP1 PUSH4 0x6F3F9E6 EQ PUSH2 0x324 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x31F JUMPI DUP1 PUSH4 0x143489D0 EQ PUSH2 0x31A JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x315 JUMPI DUP1 PUSH4 0x160CBED7 EQ PUSH2 0x310 JUMPI DUP1 PUSH4 0x2656227D EQ PUSH2 0x30B JUMPI DUP1 PUSH4 0x2D63F693 EQ PUSH2 0x306 JUMPI DUP1 PUSH4 0x2FE3E261 EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0x3932ABB1 EQ PUSH2 0x2FC JUMPI DUP1 PUSH4 0x3E4F49E6 EQ PUSH2 0x2F7 JUMPI DUP1 PUSH4 0x43859632 EQ PUSH2 0x2F2 JUMPI DUP1 PUSH4 0x452115D6 EQ PUSH2 0x2ED JUMPI DUP1 PUSH4 0x4BF5D7E9 EQ PUSH2 0x2E8 JUMPI DUP1 PUSH4 0x544FFC9C EQ PUSH2 0x2E3 JUMPI DUP1 PUSH4 0x54FD4D50 EQ PUSH2 0x2DE JUMPI DUP1 PUSH4 0x56781388 EQ PUSH2 0x2D9 JUMPI DUP1 PUSH4 0x5B8D0E0D EQ PUSH2 0x2D4 JUMPI DUP1 PUSH4 0x5F398A14 EQ PUSH2 0x2CF JUMPI DUP1 PUSH4 0x60C4247F EQ PUSH2 0x2CA JUMPI DUP1 PUSH4 0x79051887 EQ PUSH2 0x2C5 JUMPI DUP1 PUSH4 0x7B3C71D3 EQ PUSH2 0x2C0 JUMPI DUP1 PUSH4 0x7D5E81E2 EQ PUSH2 0x2BB JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x2B6 JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0x8FF262E3 EQ PUSH2 0x2AC JUMPI DUP1 PUSH4 0x91DDADF4 EQ PUSH2 0x2A7 JUMPI DUP1 PUSH4 0x97C3D334 EQ PUSH2 0x2A2 JUMPI DUP1 PUSH4 0x9A802A6D EQ PUSH2 0x29D JUMPI DUP1 PUSH4 0xA7713A70 EQ PUSH2 0x298 JUMPI DUP1 PUSH4 0xA890C910 EQ PUSH2 0x293 JUMPI DUP1 PUSH4 0xA8F8A668 EQ PUSH2 0x270 JUMPI DUP1 PUSH4 0xA9A95294 EQ PUSH2 0x28E JUMPI DUP1 PUSH4 0xAB58FB8E EQ PUSH2 0x289 JUMPI DUP1 PUSH4 0xB58131B0 EQ PUSH2 0x284 JUMPI DUP1 PUSH4 0xBC197C81 EQ PUSH2 0x27F JUMPI DUP1 PUSH4 0xC01F9E37 EQ PUSH2 0x27A JUMPI DUP1 PUSH4 0xC28BC2FA EQ PUSH2 0x275 JUMPI DUP1 PUSH4 0xC59057E4 EQ PUSH2 0x270 JUMPI DUP1 PUSH4 0xD33219B4 EQ PUSH2 0x26B JUMPI DUP1 PUSH4 0xDD4E2BA5 EQ PUSH2 0x266 JUMPI DUP1 PUSH4 0xDEAAA7CC EQ PUSH2 0x261 JUMPI DUP1 PUSH4 0xE540D01D EQ PUSH2 0x25C JUMPI DUP1 PUSH4 0xEB9019D4 EQ PUSH2 0x257 JUMPI DUP1 PUSH4 0xECE40CC1 EQ PUSH2 0x252 JUMPI DUP1 PUSH4 0xF23A6E61 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0xF8CE560A EQ PUSH2 0x248 JUMPI PUSH4 0xFC0C546A SUB PUSH2 0xE JUMPI PUSH2 0x1C51 JUMP JUMPDEST PUSH2 0x1BAC JUMP JUMPDEST PUSH2 0x1B41 JUMP JUMPDEST PUSH2 0x1AEC JUMP JUMPDEST PUSH2 0x1A4C JUMP JUMPDEST PUSH2 0x19A3 JUMP JUMPDEST PUSH2 0x1968 JUMP JUMPDEST PUSH2 0x190A JUMP JUMPDEST PUSH2 0x18E1 JUMP JUMPDEST PUSH2 0x172A JUMP JUMPDEST PUSH2 0x1875 JUMP JUMPDEST PUSH2 0x1857 JUMP JUMPDEST PUSH2 0x17B7 JUMP JUMPDEST PUSH2 0x1799 JUMP JUMPDEST PUSH2 0x1762 JUMP JUMPDEST PUSH2 0x1746 JUMP JUMPDEST PUSH2 0x16B6 JUMP JUMPDEST PUSH2 0x168A JUMP JUMPDEST PUSH2 0x15B9 JUMP JUMPDEST PUSH2 0x159D JUMP JUMPDEST PUSH2 0x1572 JUMP JUMPDEST PUSH2 0x145A JUMP JUMPDEST PUSH2 0x1390 JUMP JUMPDEST PUSH2 0x131F JUMP JUMPDEST PUSH2 0x1286 JUMP JUMPDEST PUSH2 0x1231 JUMP JUMPDEST PUSH2 0x11BE JUMP JUMPDEST PUSH2 0x1190 JUMP JUMPDEST PUSH2 0x1121 JUMP JUMPDEST PUSH2 0x1099 JUMP JUMPDEST PUSH2 0x101C JUMP JUMPDEST PUSH2 0xFCA JUMP JUMPDEST PUSH2 0xF7D JUMP JUMPDEST PUSH2 0xF4D JUMP JUMPDEST PUSH2 0xEAF JUMP JUMPDEST PUSH2 0xE56 JUMP JUMPDEST PUSH2 0xE29 JUMP JUMPDEST PUSH2 0xDD1 JUMP JUMPDEST PUSH2 0xD96 JUMP JUMPDEST PUSH2 0xD5F JUMP JUMPDEST PUSH2 0xBF7 JUMP JUMPDEST PUSH2 0x9AD JUMP JUMPDEST PUSH2 0x771 JUMP JUMPDEST PUSH2 0x5F4 JUMP JUMPDEST PUSH2 0x50F JUMP JUMPDEST PUSH2 0x3EB JUMP JUMPDEST PUSH2 0x3C4 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH4 0xFFFFFFFF PUSH1 0xE0 SHL DUP2 AND DUP1 SWAP2 SUB PUSH2 0x3B4 JUMPI PUSH1 0x20 SWAP1 PUSH4 0x66DEFE77 PUSH1 0xE1 SHL DUP2 EQ SWAP1 DUP2 ISZERO PUSH2 0x3A3 JUMPI JUMPDEST DUP2 ISZERO PUSH2 0x392 JUMPI JUMPDEST DUP2 ISZERO PUSH2 0x381 JUMPI JUMPDEST POP PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ SWAP1 POP CODESIZE PUSH2 0x376 JUMP JUMPDEST PUSH4 0x2711897 PUSH1 0xE5 SHL DUP2 EQ SWAP2 POP PUSH2 0x36F JUMP JUMPDEST PUSH4 0x32A2AD43 PUSH1 0xE1 SHL DUP2 EQ SWAP2 POP PUSH2 0x368 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 SUB SLT PUSH2 0x3B4 JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH4 0xFFFFFFFF PUSH1 0x8 SLOAD PUSH1 0x30 SHR AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x407 PUSH2 0x2139 JUMP JUMPDEST PUSH1 0x64 DUP2 GT PUSH2 0x494 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 PUSH2 0x421 PUSH2 0x2CEC JUMP JUMPDEST AND PUSH2 0x42A PUSH2 0x23A0 JUMP JUMPDEST SWAP3 DUP1 DUP4 GT PUSH2 0x474 JUMPI PUSH32 0x553476BF02EF2726E8CE5CED78D63E26E602E4A2257B1F559418E24B4633997 SWAP4 PUSH2 0x460 SWAP2 DUP5 AND SWAP1 PUSH2 0x2E12 JUMP JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE LOG1 STOP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0xD0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x243E5445 PUSH1 0xE0 SHL DUP3 MSTORE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x64 PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT PUSH2 0x4C6 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x4B6 JUMP JUMPDEST SWAP1 PUSH1 0x20 SWAP2 PUSH2 0x4EF DUP2 MLOAD DUP1 SWAP3 DUP2 DUP6 MSTORE DUP6 DUP1 DUP7 ADD SWAP2 ADD PUSH2 0x4B3 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND ADD ADD SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x20 PUSH2 0x50C SWAP3 DUP2 DUP2 MSTORE ADD SWAP1 PUSH2 0x4D6 JUMP JUMPDEST SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x5F1 JUMPI PUSH1 0x40 MLOAD SWAP1 DUP1 PUSH1 0x3 SLOAD PUSH2 0x532 DUP2 PUSH2 0x1CAA JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0x5C7 JUMPI POP PUSH1 0x1 EQ PUSH2 0x56C JUMPI JUMPDEST PUSH2 0x568 DUP6 PUSH2 0x55C DUP2 DUP8 SUB DUP3 PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP3 PUSH2 0x4FB JUMP JUMPDEST SUB SWAP1 RETURN JUMPDEST SWAP3 POP PUSH1 0x3 DUP4 MSTORE PUSH32 0xC2575A0E9E593C00F959F8C92F12DB2869C3395A3B0502D05E2516446F71F85B JUMPDEST DUP3 DUP5 LT PUSH2 0x5AF JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0x55C DUP3 PUSH2 0x568 PUSH2 0x54C JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x594 JUMP JUMPDEST DUP7 SWAP6 POP PUSH2 0x568 SWAP7 SWAP4 POP PUSH1 0x20 SWAP3 POP PUSH2 0x55C SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 SWAP4 PUSH2 0x54C JUMP JUMPDEST DUP1 REVERT JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND SUB PUSH2 0x3B4 JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x662 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH2 0x639 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x662 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x662 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0xC0 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x662 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH2 0x100 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x662 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP1 NOT SWAP2 ADD AND DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x662 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x702 DUP3 PUSH2 0x667 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x662 JUMPI PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST SWAP3 SWAP2 SWAP3 PUSH2 0x72B DUP3 PUSH2 0x704 JUMP JUMPDEST SWAP2 PUSH2 0x739 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0x6D4 JUMP JUMPDEST DUP3 SWAP5 DUP2 DUP5 MSTORE DUP2 DUP4 ADD GT PUSH2 0x3B4 JUMPI DUP3 DUP2 PUSH1 0x20 SWAP4 DUP5 PUSH1 0x0 SWAP7 ADD CALLDATACOPY ADD ADD MSTORE JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH2 0x3B4 JUMPI DUP2 PUSH1 0x20 PUSH2 0x50C SWAP4 CALLDATALOAD SWAP2 ADD PUSH2 0x71F JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x78D PUSH1 0x4 CALLDATALOAD PUSH2 0x628 JUMP JUMPDEST PUSH2 0x798 PUSH1 0x24 CALLDATALOAD PUSH2 0x628 JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x7B7 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x756 JUMP JUMPDEST POP PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0x7DC JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x7485328F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x662 JUMPI PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0x3B4 JUMPI DUP1 CALLDATALOAD SWAP2 PUSH2 0x81C DUP4 PUSH2 0x7EE JUMP JUMPDEST SWAP3 PUSH2 0x82A PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0x6D4 JUMP JUMPDEST DUP1 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0x3B4 JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0x854 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 DUP1 SWAP2 DUP4 CALLDATALOAD PUSH2 0x862 DUP2 PUSH2 0x628 JUMP JUMPDEST DUP2 MSTORE ADD SWAP2 ADD SWAP1 PUSH2 0x846 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0x3B4 JUMPI DUP1 CALLDATALOAD SWAP2 PUSH2 0x884 DUP4 PUSH2 0x7EE JUMP JUMPDEST SWAP3 PUSH2 0x892 PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0x6D4 JUMP JUMPDEST DUP1 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0x3B4 JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0x8BC JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP2 CALLDATALOAD DUP2 MSTORE SWAP1 DUP4 ADD SWAP1 DUP4 ADD PUSH2 0x8AE JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH2 0x3B4 JUMPI DUP2 CALLDATALOAD SWAP1 PUSH2 0x8E3 DUP3 PUSH2 0x7EE JUMP JUMPDEST SWAP3 PUSH2 0x8F1 PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0x6D4 JUMP JUMPDEST DUP3 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP2 PUSH1 0x5 SHL DUP4 ADD ADD SWAP3 DUP1 DUP5 GT PUSH2 0x3B4 JUMPI DUP5 DUP4 ADD SWAP2 JUMPDEST DUP5 DUP4 LT PUSH2 0x91F JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x3B4 JUMPI DUP7 SWAP2 PUSH2 0x940 DUP5 DUP5 DUP1 SWAP5 DUP10 ADD ADD PUSH2 0x756 JUMP JUMPDEST DUP2 MSTORE ADD SWAP3 ADD SWAP2 PUSH2 0x90F JUMP JUMPDEST PUSH1 0x80 PUSH1 0x3 NOT DUP3 ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP2 PUSH1 0x4 CALLDATALOAD DUP4 DUP2 GT PUSH2 0x3B4 JUMPI DUP3 PUSH2 0x977 SWAP2 PUSH1 0x4 ADD PUSH2 0x805 JUMP JUMPDEST SWAP3 PUSH1 0x24 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x3B4 JUMPI DUP4 PUSH2 0x98F SWAP2 PUSH1 0x4 ADD PUSH2 0x86D JUMP JUMPDEST SWAP3 PUSH1 0x44 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0x3B4 JUMPI PUSH2 0x9A6 SWAP2 PUSH1 0x4 ADD PUSH2 0x8CB JUMP JUMPDEST SWAP1 PUSH1 0x64 CALLDATALOAD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH2 0x9BB CALLDATASIZE PUSH2 0x94B JUMP JUMPDEST PUSH2 0x9C9 DUP2 DUP4 DUP6 DUP8 SWAP7 SWAP8 PUSH2 0x1D89 JUMP JUMPDEST SWAP3 PUSH2 0x9D3 DUP5 PUSH2 0x21EA JUMP JUMPDEST POP PUSH1 0xB SLOAD PUSH2 0x9F1 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP3 PUSH1 0x40 SWAP6 DUP7 MLOAD SWAP4 PUSH4 0x793D0649 PUSH1 0xE1 SHL DUP6 MSTORE PUSH1 0x20 SWAP1 DUP2 DUP7 PUSH1 0x4 DUP2 DUP11 GAS STATICCALL SWAP6 DUP7 ISZERO PUSH2 0xBA6 JUMPI PUSH1 0x0 SWAP7 PUSH2 0xBD8 JUMPI JUMPDEST POP PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT ADDRESS PUSH1 0x60 SHL AND XOR SWAP6 DUP2 DUP10 MLOAD DUP1 SWAP3 PUSH4 0xB1C5F427 PUSH1 0xE0 SHL DUP3 MSTORE DUP2 DUP1 PUSH2 0xA53 DUP13 DUP11 DUP11 DUP14 PUSH1 0x4 DUP7 ADD PUSH2 0x3AF5 JUMP JUMPDEST SUB SWAP2 GAS STATICCALL SWAP2 DUP3 ISZERO PUSH2 0xBA6 JUMPI PUSH1 0x0 SWAP3 PUSH2 0xBAB JUMPI JUMPDEST POP POP PUSH2 0xA7C DUP8 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE PUSH1 0xB SLOAD PUSH2 0xA92 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9E5 JUMP JUMPDEST SWAP1 DUP2 EXTCODESIZE ISZERO PUSH2 0x3B4 JUMPI PUSH1 0x0 DUP1 SWAP5 PUSH2 0xABE DUP8 DUP12 MLOAD SWAP10 DUP11 SWAP8 DUP9 SWAP7 DUP8 SWAP6 PUSH4 0x8F2A0BB PUSH1 0xE4 SHL DUP8 MSTORE PUSH1 0x4 DUP8 ADD PUSH2 0x3B3B JUMP JUMPDEST SUB SWAP3 GAS CALL SWAP1 DUP2 ISZERO PUSH2 0xBA6 JUMPI PUSH2 0xAE2 SWAP3 PUSH2 0xADD SWAP3 PUSH2 0xB8D JUMPI JUMPDEST POP TIMESTAMP PUSH2 0x229C JUMP JUMPDEST PUSH2 0x2B60 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 AND ISZERO PUSH2 0xB7C JUMPI SWAP2 PUSH32 0x9A2E42FD6722813D69113E7D0079D3D940171428DF7373DF9C7F7617CFDA2892 PUSH2 0xB6B DUP5 PUSH2 0xB4D PUSH2 0x568 SWAP7 PUSH1 0x1 PUSH2 0xB33 DUP9 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST ADD SWAP1 PUSH6 0xFFFFFFFFFFFF AND PUSH6 0xFFFFFFFFFFFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE JUMP JUMPDEST DUP4 MLOAD DUP6 DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x40 DUP3 ADD SWAP1 JUMP JUMPDEST SUB SWAP1 LOG1 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST DUP3 MLOAD PUSH4 0x48442523 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST DUP1 PUSH2 0xB9A PUSH2 0xBA0 SWAP3 PUSH2 0x64F JUMP JUMPDEST DUP1 PUSH2 0x3B9 JUMP JUMPDEST CODESIZE PUSH2 0xAD6 JUMP JUMPDEST PUSH2 0x2394 JUMP JUMPDEST PUSH2 0xBCA SWAP3 POP DUP1 RETURNDATASIZE LT PUSH2 0xBD1 JUMPI JUMPDEST PUSH2 0xBC2 DUP2 DUP4 PUSH2 0x6D4 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x254B JUMP JUMPDEST CODESIZE DUP1 PUSH2 0xA66 JUMP JUMPDEST POP RETURNDATASIZE PUSH2 0xBB8 JUMP JUMPDEST PUSH2 0xBF0 SWAP2 SWAP7 POP DUP3 RETURNDATASIZE DUP5 GT PUSH2 0xBD1 JUMPI PUSH2 0xBC2 DUP2 DUP4 PUSH2 0x6D4 JUMP JUMPDEST SWAP5 CODESIZE PUSH2 0xA1C JUMP JUMPDEST PUSH2 0xC00 CALLDATASIZE PUSH2 0x94B JUMP JUMPDEST PUSH2 0xC0E DUP2 DUP4 DUP6 DUP8 SWAP6 SWAP8 PUSH2 0x1D89 JUMP JUMPDEST SWAP3 PUSH2 0xC18 DUP5 PUSH2 0x223C JUMP JUMPDEST POP PUSH2 0xC43 PUSH2 0xC30 DUP6 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0xFF PUSH1 0xF0 SHL NOT AND PUSH1 0x1 PUSH1 0xF0 SHL OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 DUP5 AND ADDRESS SUB PUSH2 0xCF5 JUMPI JUMPDEST SWAP5 PUSH2 0xC69 SWAP3 SWAP2 PUSH2 0x568 SWAP7 DUP7 PUSH2 0x3B89 JUMP JUMPDEST PUSH1 0xB SLOAD ADDRESS SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO DUP1 PUSH2 0xCD0 JUMPI JUMPDEST PUSH2 0xCC1 JUMPI JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x712AE1383F79AC853F8D882153778E0260EF8F03B504E2866E0593E04D2B291F SWAP1 PUSH1 0x20 SWAP1 LOG1 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST PUSH2 0xCCB PUSH1 0x0 PUSH1 0x5 SSTORE JUMP JUMPDEST PUSH2 0xC85 JUMP JUMPDEST POP PUSH2 0xCF0 PUSH2 0xCEC PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND SWAP1 PUSH1 0x80 SHR EQ SWAP1 JUMP JUMPDEST ISZERO SWAP1 JUMP JUMPDEST PUSH2 0xC80 JUMP JUMPDEST SWAP3 SWAP1 SWAP4 SWAP2 PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0xD55 JUMPI PUSH2 0xD31 SWAP1 ADDRESS PUSH2 0xD27 PUSH2 0x9E5 PUSH2 0xD1A DUP5 DUP11 PUSH2 0x1E5F JUMP JUMPDEST MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST EQ PUSH2 0xD36 JUMPI PUSH2 0x1E3A JUMP JUMPDEST PUSH2 0xCFC JUMP JUMPDEST PUSH2 0xD50 PUSH2 0xD43 DUP3 DUP11 PUSH2 0x1E5F JUMP JUMPDEST MLOAD PUSH1 0x20 DUP2 MLOAD SWAP2 ADD KECCAK256 PUSH2 0x2F4C JUMP JUMPDEST PUSH2 0x1E3A JUMP JUMPDEST POP SWAP2 SWAP4 SWAP1 SWAP3 PUSH2 0xC59 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0xA0 SHR AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH32 0x3E83946653575F9A39005E1545185629E92736B7528AB20CA3816F315424A811 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH6 0xFFFFFFFFFFFF PUSH1 0x8 SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x8 GT ISZERO PUSH2 0xE17 JUMPI JUMP JUMPDEST PUSH2 0xDF7 JUMP JUMPDEST SWAP1 PUSH1 0x8 DUP3 LT ISZERO PUSH2 0xE17 JUMPI MSTORE JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH2 0xE47 PUSH1 0x4 CALLDATALOAD PUSH2 0x3090 JUMP JUMPDEST PUSH2 0xE54 PUSH1 0x40 MLOAD DUP1 SWAP3 PUSH2 0xE1C JUMP JUMPDEST RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH1 0xFF PUSH2 0xEA3 PUSH1 0x24 CALLDATALOAD PUSH2 0xE7A DUP2 PUSH2 0x628 JUMP JUMPDEST PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x9 DUP5 MSTORE PUSH1 0x3 PUSH1 0x40 PUSH1 0x0 KECCAK256 ADD SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH2 0xEBD CALLDATASIZE PUSH2 0x94B JUMP JUMPDEST SWAP3 PUSH2 0xECD DUP5 DUP4 DUP6 DUP5 SWAP7 SWAP6 SWAP7 PUSH2 0x1D89 JUMP JUMPDEST PUSH2 0xED6 DUP2 PUSH2 0x3090 JUMP JUMPDEST PUSH1 0x8 DUP2 LT ISZERO PUSH2 0xE17 JUMPI ISZERO DUP1 PUSH2 0xF2E JUMPI JUMPDEST ISZERO PUSH2 0xF0A JUMPI PUSH2 0x568 PUSH2 0xEFA DUP7 DUP7 DUP7 DUP7 PUSH2 0x39B4 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x8FE5D8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE CALLER PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST SUB SWAP1 REVERT JUMPDEST POP DUP1 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND CALLER EQ PUSH2 0xEE6 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x568 PUSH2 0xF69 PUSH2 0x246C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 PUSH1 0x20 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x4D6 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH2 0x568 PUSH1 0x2 PUSH1 0x1 DUP5 ADD SLOAD SWAP4 ADD SLOAD PUSH1 0x40 MLOAD SWAP4 DUP5 SWAP4 DUP5 PUSH1 0x40 SWAP2 SWAP5 SWAP4 SWAP3 PUSH1 0x60 DUP3 ADD SWAP6 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x568 PUSH1 0x40 MLOAD PUSH2 0xFEA DUP2 PUSH2 0x667 JUMP JUMPDEST PUSH1 0x1 DUP2 MSTORE PUSH1 0x31 PUSH1 0xF8 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 PUSH1 0x20 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x4D6 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH1 0xFF DUP3 AND DUP3 SUB PUSH2 0x3B4 JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH2 0x1064 PUSH2 0x103A PUSH2 0x100C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1046 DUP2 PUSH2 0x682 JUMP JUMPDEST PUSH1 0x0 DUP2 MSTORE PUSH1 0x40 MLOAD SWAP2 PUSH2 0x1057 DUP4 PUSH2 0x682 JUMP JUMPDEST PUSH1 0x0 DUP4 MSTORE CALLER PUSH1 0x4 CALLDATALOAD PUSH2 0x1FEA JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST SWAP2 DUP2 PUSH1 0x1F DUP5 ADD SLT ISZERO PUSH2 0x3B4 JUMPI DUP3 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0x3B4 JUMPI PUSH1 0x20 DUP4 DUP2 DUP7 ADD SWAP6 ADD ADD GT PUSH2 0x3B4 JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x10B2 PUSH2 0x100C JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH2 0x10BF DUP3 PUSH2 0x628 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 PUSH1 0x64 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x10E0 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x106C JUMP JUMPDEST PUSH1 0x84 CALLDATALOAD DUP5 DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x10F8 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x756 JUMP JUMPDEST SWAP2 PUSH1 0xA4 CALLDATALOAD SWAP5 DUP6 GT PUSH2 0x3B4 JUMPI PUSH2 0x568 SWAP6 PUSH2 0x1118 PUSH2 0xEFA SWAP7 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x756 JUMP JUMPDEST SWAP5 PUSH1 0x4 CALLDATALOAD PUSH2 0x1E78 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x113A PUSH2 0x100C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 PUSH1 0x44 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x115B SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x106C JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x64 CALLDATALOAD SWAP4 DUP5 GT PUSH2 0x3B4 JUMPI PUSH2 0x1186 PUSH2 0x1064 SWAP4 PUSH2 0x117E PUSH1 0x20 SWAP7 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x756 JUMP JUMPDEST SWAP4 CALLDATASIZE SWAP2 PUSH2 0x71F JUMP JUMPDEST SWAP1 CALLER PUSH1 0x4 CALLDATALOAD PUSH2 0x1FEA JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH2 0x1064 PUSH1 0x4 CALLDATALOAD PUSH2 0x25D7 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 AND SUB PUSH2 0x3B4 JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x11DB DUP2 PUSH2 0x11AE JUMP JUMPDEST PUSH2 0x11E3 PUSH2 0x2139 JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH32 0xC565B045403DC03C2EEA82B81A0465EDAD9E2E7FC4D97E11421C209DA93D7A93 PUSH1 0x40 DUP1 MLOAD SWAP4 PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP6 AND DUP7 MSTORE AND SWAP4 DUP5 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH6 0xFFFFFFFFFFFF NOT AND OR PUSH1 0x8 SSTORE STOP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x124A PUSH2 0x100C JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x3B4 JUMPI PUSH1 0x20 SWAP2 PUSH2 0x1279 PUSH2 0x1272 PUSH2 0x1064 SWAP4 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x106C JUMP JUMPDEST CALLDATASIZE SWAP2 PUSH2 0x71F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 PUSH2 0x1057 DUP4 PUSH2 0x682 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x12B7 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x805 JUMP JUMPDEST SWAP1 PUSH1 0x24 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x12D0 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x86D JUMP JUMPDEST SWAP2 PUSH1 0x44 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x12E9 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x8CB JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD SWAP3 DUP4 GT PUSH2 0x3B4 JUMPI CALLDATASIZE PUSH1 0x23 DUP5 ADD SLT ISZERO PUSH2 0x3B4 JUMPI PUSH2 0x568 SWAP4 PUSH2 0x1319 PUSH2 0xEFA SWAP5 CALLDATASIZE SWAP1 PUSH1 0x24 DUP2 PUSH1 0x4 ADD CALLDATALOAD SWAP2 ADD PUSH2 0x71F JUMP JUMPDEST SWAP3 PUSH2 0x3362 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x133C DUP2 PUSH2 0x628 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST SWAP1 DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP1 SWAP4 ADD SWAP4 ADD SWAP2 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0x137C JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 MLOAD DUP6 MSTORE SWAP4 DUP2 ADD SWAP4 SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x136E JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x142B PUSH2 0x13CD PUSH32 0x0 PUSH2 0x2824 JUMP JUMPDEST PUSH2 0x568 PUSH2 0x13F9 PUSH32 0x0 PUSH2 0x291B JUMP JUMPDEST PUSH2 0x1439 PUSH1 0x40 MLOAD SWAP2 PUSH2 0x1409 DUP4 PUSH2 0x682 JUMP JUMPDEST PUSH1 0x0 DUP4 MSTORE PUSH1 0x40 MLOAD SWAP6 DUP7 SWAP6 PUSH1 0xF PUSH1 0xF8 SHL DUP8 MSTORE PUSH1 0xE0 PUSH1 0x20 DUP9 ADD MSTORE PUSH1 0xE0 DUP8 ADD SWAP1 PUSH2 0x4D6 JUMP JUMPDEST SWAP1 DUP6 DUP3 SUB PUSH1 0x40 DUP8 ADD MSTORE PUSH2 0x4D6 JUMP JUMPDEST SWAP1 CHAINID PUSH1 0x60 DUP6 ADD MSTORE ADDRESS PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0x0 PUSH1 0xA0 DUP6 ADD MSTORE DUP4 DUP3 SUB PUSH1 0xC0 DUP6 ADD MSTORE PUSH2 0x135C JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x1476 PUSH2 0x100C JUMP JUMPDEST SWAP1 PUSH1 0x44 CALLDATALOAD SWAP2 PUSH2 0x1484 DUP4 PUSH2 0x628 JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0xCEC PUSH2 0x14A9 PUSH2 0x1536 SWAP3 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x756 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE PUSH2 0x1530 SWAP1 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 ADD SWAP2 PUSH32 0xF2AAD550CF55F045CB27E9C559F9889FDFB6E6CDAA032301D6EA397784AE51D7 DUP4 MSTORE DUP9 PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0xFF DUP9 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP11 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xA0 DUP2 MSTORE PUSH2 0x1528 DUP2 PUSH2 0x69D JUMP JUMPDEST MLOAD SWAP1 KECCAK256 PUSH2 0x26EA JUMP JUMPDEST DUP7 PUSH2 0x29DD JUMP JUMPDEST PUSH2 0x1551 JUMPI SWAP1 PUSH2 0xEFA SWAP2 PUSH2 0x568 SWAP4 PUSH2 0x154B PUSH2 0x1CE4 JUMP JUMPDEST SWAP3 PUSH2 0x1F6E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x94AB6C07 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH2 0x158D PUSH2 0x23A0 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 MLOAD SWAP2 AND DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x64 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x15D6 DUP2 PUSH2 0x628 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x3B4 JUMPI PUSH1 0x44 SWAP2 PUSH2 0x15FA PUSH1 0x20 SWAP3 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x756 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP3 DUP4 SWAP2 DUP3 SWAP1 PUSH32 0x0 AND GAS STATICCALL DUP1 ISZERO PUSH2 0xBA6 JUMPI PUSH2 0x568 SWAP2 PUSH1 0x0 SWAP2 PUSH2 0x166C JUMPI JUMPDEST POP PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST PUSH2 0x1684 SWAP2 POP PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0xBD1 JUMPI PUSH2 0xBC2 DUP2 DUP4 PUSH2 0x6D4 JUMP JUMPDEST CODESIZE PUSH2 0x165B JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB PUSH2 0x16AD PUSH2 0x2CEC JUMP JUMPDEST AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x16D3 DUP2 PUSH2 0x628 JUMP JUMPDEST PUSH2 0x16DB PUSH2 0x2139 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH32 0x8F74EA46EF7894F65EABFB5E6E695DE773A000B47C529AB559178069B226401 PUSH1 0x40 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP1 SWAP5 AND SWAP4 DUP2 MLOAD SWAP1 DUP5 AND DUP2 MSTORE DUP5 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND OR PUSH1 0xB SSTORE STOP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH2 0x1064 PUSH2 0x173D CALLDATASIZE PUSH2 0x94B JUMP JUMPDEST SWAP3 SWAP2 SWAP1 SWAP2 PUSH2 0x1D89 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH6 0xFFFFFFFFFFFF PUSH1 0x1 PUSH1 0x40 PUSH1 0x0 KECCAK256 ADD SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH1 0x7 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x17D3 PUSH1 0x4 CALLDATALOAD PUSH2 0x628 JUMP JUMPDEST PUSH2 0x17DE PUSH1 0x24 CALLDATALOAD PUSH2 0x628 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x44 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x17FE SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x86D JUMP JUMPDEST POP PUSH1 0x64 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x1817 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x86D JUMP JUMPDEST POP PUSH1 0x84 CALLDATALOAD SWAP1 DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x1830 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x756 JUMP JUMPDEST POP PUSH2 0x568 PUSH2 0x183C PUSH2 0x21AD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH2 0x1064 PUSH1 0x4 CALLDATALOAD PUSH2 0x1E03 JUMP JUMPDEST PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x188D DUP2 PUSH2 0x628 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x3B4 JUMPI PUSH1 0x0 DUP1 SWAP2 PUSH2 0x18B4 PUSH2 0x21 SWAP5 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x106C JUMP JUMPDEST SWAP1 PUSH2 0x18BD PUSH2 0x2139 JUMP JUMPDEST DUP2 PUSH1 0x40 MLOAD SWAP3 DUP4 SWAP3 DUP4 CALLDATACOPY DUP2 ADD DUP5 DUP2 MSTORE SUB SWAP2 PUSH1 0x24 CALLDATALOAD SWAP1 GAS CALL PUSH2 0x18DB PUSH2 0x2109 JUMP JUMPDEST SWAP1 PUSH2 0x26C1 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0xB SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x568 PUSH1 0x40 MLOAD PUSH2 0x192A DUP2 PUSH2 0x667 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH32 0x737570706F72743D627261766F2671756F72756D3D666F722C6162737461696E PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 PUSH1 0x20 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x4D6 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH32 0xF2AAD550CF55F045CB27E9C559F9889FDFB6E6CDAA032301D6EA397784AE51D7 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND SWAP2 DUP3 DUP2 SUB PUSH2 0x3B4 JUMPI PUSH2 0x19CF PUSH2 0x2139 JUMP JUMPDEST DUP3 ISZERO PUSH2 0x1A33 JUMPI PUSH32 0x7E3F7F0708A84DE9203036ABAA450DCCC85AD5FF52F78C170F3EDB55CF5E8828 PUSH1 0x40 PUSH10 0xFFFFFFFF000000000000 SWAP4 PUSH1 0x8 SLOAD SWAP6 DUP3 MLOAD SWAP2 DUP8 PUSH1 0x30 SHR AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x30 SHL AND SWAP1 PUSH10 0xFFFFFFFF000000000000 NOT AND OR PUSH1 0x8 SSTORE PUSH1 0x0 DUP1 RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xF1CFBF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x44 PUSH1 0x20 PUSH1 0x4 CALLDATALOAD PUSH2 0x1A6D DUP2 PUSH2 0x628 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD PUSH2 0x1A7B DUP2 PUSH2 0x682 JUMP JUMPDEST MSTORE PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP3 DUP4 SWAP2 DUP3 SWAP1 PUSH32 0x0 AND GAS STATICCALL DUP1 ISZERO PUSH2 0xBA6 JUMPI PUSH2 0x568 SWAP2 PUSH1 0x0 SWAP2 PUSH2 0x166C JUMPI POP PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x1B08 PUSH2 0x2139 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP4 SWAP1 MSTORE PUSH32 0xCCB45DA8D5717E6C4544694297C4BA5CF151D455C9BB0ED4FC7A38411BC05461 SWAP2 LOG1 PUSH1 0x7 SSTORE STOP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x1B5D PUSH1 0x4 CALLDATALOAD PUSH2 0x628 JUMP JUMPDEST PUSH2 0x1B68 PUSH1 0x24 CALLDATALOAD PUSH2 0x628 JUMP JUMPDEST PUSH1 0x84 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x1B87 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x756 JUMP JUMPDEST POP PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0x7DC JUMPI PUSH1 0x40 MLOAD PUSH4 0xF23A6E61 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2394E7A3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP1 CALLDATALOAD SWAP1 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH1 0x20 DUP2 PUSH1 0x24 DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL DUP1 ISZERO PUSH2 0xBA6 JUMPI PUSH2 0x568 SWAP3 PUSH2 0xEFA SWAP3 PUSH1 0x0 SWAP3 PUSH2 0x1C2D JUMPI JUMPDEST POP PUSH2 0x1C27 SWAP1 PUSH2 0x25D7 JUMP JUMPDEST SWAP1 PUSH2 0x2FFF JUMP JUMPDEST PUSH2 0x1C27 SWAP2 SWAP3 POP PUSH2 0x1C4A SWAP1 PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0xBD1 JUMPI PUSH2 0xBC2 DUP2 DUP4 PUSH2 0x6D4 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x1C1D JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0x7DC JUMPI JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH2 0x1CDA JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH2 0x1CC4 JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP2 PUSH1 0x7F AND SWAP2 PUSH2 0x1CB9 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x1CF1 DUP3 PUSH2 0x682 JUMP JUMPDEST PUSH1 0x0 DUP3 MSTORE JUMP JUMPDEST SWAP1 DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP1 SWAP4 ADD SWAP4 ADD SWAP2 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0x1D17 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 MSTORE SWAP4 DUP2 ADD SWAP4 SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x1D09 JUMP JUMPDEST SWAP1 DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 SWAP3 ADD SWAP2 DUP3 DUP2 DUP4 PUSH1 0x5 SHL DUP6 ADD SWAP6 ADD SWAP4 PUSH1 0x0 SWAP2 JUMPDEST DUP5 DUP4 LT PUSH2 0x1D5F JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 SWAP6 DUP5 DUP1 PUSH2 0x1D79 DUP4 DUP6 PUSH1 0x1 SWAP6 SUB DUP8 MSTORE DUP11 MLOAD PUSH2 0x4D6 JUMP JUMPDEST SWAP9 ADD SWAP4 ADD SWAP4 ADD SWAP2 SWAP5 SWAP4 SWAP3 SWAP1 PUSH2 0x1D4F JUMP JUMPDEST SWAP3 SWAP1 PUSH2 0x1DD5 SWAP3 PUSH2 0x1DE7 SWAP3 PUSH1 0x40 MLOAD SWAP5 DUP6 SWAP3 PUSH2 0x1DC5 PUSH2 0x1DB2 PUSH1 0x20 DUP7 ADD SWAP10 PUSH1 0x80 DUP12 MSTORE PUSH1 0xA0 DUP8 ADD SWAP1 PUSH2 0x1CF7 JUMP JUMPDEST PUSH1 0x1F NOT SWAP7 DUP8 DUP8 DUP4 SUB ADD PUSH1 0x40 DUP9 ADD MSTORE PUSH2 0x135C JUMP JUMPDEST SWAP1 DUP6 DUP6 DUP4 SUB ADD PUSH1 0x60 DUP7 ADD MSTORE PUSH2 0x1D34 JUMP JUMPDEST SWAP1 PUSH1 0x80 DUP4 ADD MSTORE SUB SWAP1 DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0x6D4 JUMP JUMPDEST MLOAD SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 PUSH4 0xFFFFFFFF DUP3 PUSH1 0xD0 SHR AND SWAP2 PUSH1 0xA0 SHR AND ADD DUP2 DUP2 GT PUSH2 0x1E35 JUMPI AND SWAP1 JUMP JUMPDEST PUSH2 0x1DED JUMP JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH2 0x1E35 JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 MLOAD DUP3 LT ISZERO PUSH2 0x1E73 JUMPI PUSH1 0x20 SWAP2 PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST PUSH2 0x1E49 JUMP JUMPDEST SWAP4 SWAP1 SWAP3 SWAP2 SWAP7 SWAP6 PUSH2 0xCEC PUSH2 0x1F32 SWAP2 PUSH2 0x1F2C DUP11 PUSH2 0x1EAE DUP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 PUSH1 0x1 DUP3 ADD SWAP1 SSTORE SWAP1 JUMP JUMPDEST PUSH2 0x1EB9 CALLDATASIZE DUP9 DUP11 PUSH2 0x71F JUMP JUMPDEST PUSH1 0x20 DUP2 MLOAD SWAP2 ADD KECCAK256 DUP12 MLOAD PUSH1 0x20 DUP14 ADD KECCAK256 SWAP1 PUSH1 0x40 MLOAD SWAP3 PUSH1 0x20 DUP5 ADD SWAP5 PUSH32 0x3E83946653575F9A39005E1545185629E92736B7528AB20CA3816F315424A811 DUP7 MSTORE DUP14 PUSH1 0x40 DUP7 ADD MSTORE PUSH1 0xFF DUP14 AND PUSH1 0x60 DUP7 ADD MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD MSTORE PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP3 ADD MSTORE PUSH1 0xE0 DUP2 MSTORE PUSH2 0x1528 DUP2 PUSH2 0x6B8 JUMP JUMPDEST DUP11 PUSH2 0x29DD JUMP JUMPDEST PUSH2 0x1F4D JUMPI PUSH2 0x50C SWAP6 SWAP7 SWAP2 PUSH2 0x1F47 SWAP2 CALLDATASIZE SWAP2 PUSH2 0x71F JUMP JUMPDEST SWAP3 PUSH2 0x1FEA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x94AB6C07 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP2 PUSH2 0x50C SWAP4 SWAP2 PUSH1 0x40 MLOAD SWAP4 PUSH2 0x1F81 DUP6 PUSH2 0x682 JUMP JUMPDEST PUSH1 0x0 DUP6 MSTORE PUSH2 0x1FEA JUMP JUMPDEST SWAP4 SWAP1 SWAP3 PUSH1 0xFF PUSH2 0x1FB6 SWAP4 PUSH2 0x50C SWAP8 SWAP6 DUP8 MSTORE AND PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x40 DUP6 ADD MSTORE PUSH1 0xA0 PUSH1 0x60 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD SWAP1 PUSH2 0x4D6 JUMP JUMPDEST SWAP2 PUSH1 0x80 DUP2 DUP5 SUB SWAP2 ADD MSTORE PUSH2 0x4D6 JUMP JUMPDEST SWAP1 SWAP3 PUSH1 0xFF PUSH1 0x80 SWAP4 PUSH2 0x50C SWAP7 SWAP6 DUP5 MSTORE AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD MSTORE DUP2 PUSH1 0x60 DUP3 ADD MSTORE ADD SWAP1 PUSH2 0x4D6 JUMP JUMPDEST SWAP3 SWAP2 SWAP1 PUSH2 0x1FF6 DUP5 PUSH2 0x3090 JUMP JUMPDEST PUSH1 0x8 DUP2 LT ISZERO PUSH2 0xE17 JUMPI PUSH1 0x2 PUSH1 0x1 PUSH1 0xFF DUP4 AND SHL AND ISZERO PUSH2 0x20DB JUMPI POP DUP4 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH2 0x2052 PUSH2 0x204A PUSH2 0x2044 PUSH2 0x2039 PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH6 0xFFFFFFFFFFFF SWAP1 SLOAD PUSH1 0xA0 SHR AND SWAP1 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST DUP4 PUSH2 0x255A JUMP JUMPDEST DUP4 DUP4 DUP8 PUSH2 0x22A9 JUMP JUMPDEST SWAP5 DUP1 MLOAD ISZERO PUSH1 0x0 EQ PUSH2 0x209F JUMPI POP PUSH2 0x2099 PUSH32 0xB8E138887D0AA13BAB447E82DE9D5C1777041ECD21CA36BA824FF1E6C07DDDA4 SWAP4 DUP7 PUSH1 0x40 MLOAD SWAP5 DUP6 SWAP5 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP8 DUP6 PUSH2 0x1FC4 JUMP JUMPDEST SUB SWAP1 LOG2 SWAP1 JUMP JUMPDEST PUSH2 0x2099 SWAP1 PUSH32 0xE2BABFBAC5889A709B63BB7F598B324E08BC5A4FB9EC647FB3CBC9EC07EB8712 SWAP5 DUP8 PUSH1 0x40 MLOAD SWAP6 DUP7 SWAP6 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP9 DUP7 PUSH2 0x1F8A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x64 SWAP2 PUSH2 0x2100 SWAP1 PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0xE1C JUMP JUMPDEST PUSH1 0x2 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x2134 JUMPI RETURNDATASIZE SWAP1 PUSH2 0x211A DUP3 PUSH2 0x704 JUMP JUMPDEST SWAP2 PUSH2 0x2128 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0x6D4 JUMP JUMPDEST DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY JUMP JUMPDEST PUSH1 0x60 SWAP1 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 SUB PUSH2 0x2195 JUMPI ADDRESS SUB PUSH2 0x2154 JUMPI JUMP JUMPDEST PUSH2 0x215D CALLDATASIZE PUSH2 0x704 JUMP JUMPDEST PUSH2 0x216A PUSH1 0x40 MLOAD SWAP2 DUP3 PUSH2 0x6D4 JUMP JUMPDEST CALLDATASIZE DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP1 CALLDATASIZE PUSH1 0x0 DUP4 CALLDATACOPY PUSH1 0x0 PUSH1 0x20 CALLDATASIZE DUP4 ADD ADD MSTORE MLOAD SWAP1 KECCAK256 JUMPDEST DUP1 PUSH2 0x218D PUSH2 0x2FA7 JUMP JUMPDEST SUB PUSH2 0x2184 JUMPI POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x47096E47 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0x7DC JUMPI PUSH4 0xBC197C81 PUSH1 0xE0 SHL SWAP1 JUMP JUMPDEST PUSH1 0x40 SWAP1 PUSH2 0x21E6 PUSH1 0x0 SWAP4 SWAP6 SWAP5 PUSH1 0x60 DUP4 ADD SWAP7 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0xE1C JUMP JUMPDEST ADD MSTORE JUMP JUMPDEST PUSH2 0x21F3 DUP2 PUSH2 0x3090 JUMP JUMPDEST SWAP1 PUSH1 0x8 DUP3 LT ISZERO PUSH2 0xE17 JUMPI PUSH1 0x10 PUSH1 0x1 PUSH1 0xFF DUP5 AND SHL AND ISZERO PUSH2 0x2210 JUMPI POP SWAP1 JUMP JUMPDEST PUSH2 0x2233 PUSH1 0x64 SWAP3 PUSH1 0x40 MLOAD SWAP3 PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP5 MSTORE PUSH1 0x4 DUP5 ADD MSTORE PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0xE1C JUMP JUMPDEST PUSH1 0x10 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST PUSH2 0x2245 DUP2 PUSH2 0x3090 JUMP JUMPDEST SWAP1 PUSH1 0x8 DUP3 LT ISZERO PUSH2 0xE17 JUMPI PUSH1 0x30 PUSH1 0x1 PUSH1 0xFF DUP5 AND SHL AND ISZERO PUSH2 0x2262 JUMPI POP SWAP1 JUMP JUMPDEST PUSH2 0x2285 PUSH1 0x64 SWAP3 PUSH1 0x40 MLOAD SWAP3 PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP5 MSTORE PUSH1 0x4 DUP5 ADD MSTORE PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0xE1C JUMP JUMPDEST PUSH1 0x30 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST SWAP1 PUSH1 0x1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x1E35 JUMPI JUMP JUMPDEST SWAP2 SWAP1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x1E35 JUMPI JUMP JUMPDEST PUSH2 0x22C0 SWAP1 SWAP3 SWAP2 SWAP3 PUSH1 0x0 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP2 PUSH1 0x3 DUP4 ADD PUSH2 0x22EB PUSH2 0x22E4 DUP4 DUP4 SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x2373 JUMPI PUSH2 0x2311 PUSH1 0xFF SWAP4 SWAP3 PUSH2 0x231E SWAP3 SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE JUMP JUMPDEST AND DUP1 PUSH2 0x2335 JUMPI POP PUSH2 0x2330 DUP3 DUP3 SLOAD PUSH2 0x229C JUMP JUMPDEST SWAP1 SSTORE SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 SUB PUSH2 0x234C JUMPI POP PUSH1 0x1 ADD PUSH2 0x2330 DUP3 DUP3 SLOAD PUSH2 0x229C JUMP JUMPDEST PUSH1 0x2 SUB PUSH2 0x2361 JUMPI PUSH1 0x2 ADD PUSH2 0x2330 DUP3 DUP3 SLOAD PUSH2 0x229C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3599BE1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x71C6AF49 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY RETURNDATASIZE SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x24776B7D PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x20 DUP2 PUSH1 0x4 DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL PUSH1 0x0 SWAP2 DUP2 PUSH2 0x23F7 JUMPI JUMPDEST POP PUSH2 0x50C JUMPI POP PUSH2 0x50C NUMBER PUSH2 0x2B60 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x20 DUP3 RETURNDATASIZE DUP3 GT PUSH2 0x242B JUMPI JUMPDEST DUP2 PUSH2 0x2411 PUSH1 0x20 SWAP4 DUP4 PUSH2 0x6D4 JUMP JUMPDEST DUP2 ADD SUB SLT PUSH2 0x5F1 JUMPI POP MLOAD PUSH2 0x2424 DUP2 PUSH2 0x11AE JUMP JUMPDEST SWAP1 CODESIZE PUSH2 0x23E8 JUMP JUMPDEST RETURNDATASIZE SWAP2 POP PUSH2 0x2404 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x2440 DUP3 PUSH2 0x667 JUMP JUMPDEST PUSH1 0x1D DUP3 MSTORE PUSH32 0x6D6F64653D626C6F636B6E756D6265722666726F6D3D64656661756C74000000 PUSH1 0x20 DUP4 ADD MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x4BF5D7E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 DUP1 DUP3 PUSH1 0x4 DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL SWAP1 SWAP2 DUP3 DUP3 PUSH2 0x24C4 JUMPI JUMPDEST POP POP PUSH2 0x50C JUMPI POP PUSH2 0x50C PUSH2 0x2433 JUMP JUMPDEST SWAP1 SWAP2 SWAP3 POP RETURNDATASIZE DUP1 DUP3 DUP5 RETURNDATACOPY PUSH2 0x24D7 DUP2 DUP5 PUSH2 0x6D4 JUMP JUMPDEST DUP3 ADD SWAP2 PUSH1 0x20 DUP2 DUP5 SUB SLT PUSH2 0x2543 JUMPI DUP1 MLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x2547 JUMPI ADD DUP3 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0x2543 JUMPI DUP1 MLOAD SWAP2 PUSH2 0x250D DUP4 PUSH2 0x704 JUMP JUMPDEST SWAP4 PUSH2 0x251B PUSH1 0x40 MLOAD SWAP6 DUP7 PUSH2 0x6D4 JUMP JUMPDEST DUP4 DUP6 MSTORE PUSH1 0x20 DUP5 DUP5 ADD ADD GT PUSH2 0x5F1 JUMPI POP SWAP1 PUSH2 0x253B SWAP2 PUSH1 0x20 DUP1 DUP6 ADD SWAP2 ADD PUSH2 0x4B3 JUMP JUMPDEST SWAP1 CODESIZE DUP1 PUSH2 0x24B5 JUMP JUMPDEST POP DUP1 REVERT JUMPDEST DUP3 DUP1 REVERT JUMPDEST SWAP1 DUP2 PUSH1 0x20 SWAP2 SUB SLT PUSH2 0x3B4 JUMPI MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x20 SWAP1 DUP3 SWAP1 PUSH1 0x44 SWAP1 DUP3 SWAP1 PUSH32 0x0 AND GAS STATICCALL SWAP1 DUP2 ISZERO PUSH2 0xBA6 JUMPI PUSH1 0x0 SWAP2 PUSH2 0x25BF JUMPI POP SWAP1 JUMP JUMPDEST PUSH2 0x50C SWAP2 POP PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0xBD1 JUMPI PUSH2 0xBC2 DUP2 DUP4 PUSH2 0x6D4 JUMP JUMPDEST PUSH2 0x25DF PUSH2 0x2D36 JUMP JUMPDEST SWAP3 PUSH1 0x0 SWAP3 POP PUSH6 0xFFFFFFFFFFFF SWAP2 DUP3 AND DUP2 LT PUSH2 0x2604 JUMPI POP POP POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x2610 SWAP2 SWAP3 SWAP4 POP PUSH2 0x2B60 JUMP JUMPDEST PUSH1 0xA SLOAD SWAP1 DUP4 SWAP1 DUP3 PUSH1 0x5 DUP2 GT PUSH2 0x266B JUMPI JUMPDEST POP PUSH2 0x262B SWAP4 POP PUSH2 0x2EE3 JUMP JUMPDEST DUP1 PUSH2 0x2636 JUMPI POP PUSH2 0x25F8 JUMP JUMPDEST PUSH2 0x2666 SWAP2 POP PUSH2 0x2647 PUSH2 0x265F SWAP2 PUSH2 0x2B92 JUMP JUMPDEST PUSH1 0xA PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x3C15 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 JUMP JUMPDEST SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH2 0x25F8 JUMP JUMPDEST SWAP1 SWAP3 PUSH2 0x2676 DUP3 PUSH2 0x2BC1 JUMP JUMPDEST DUP3 SUB SWAP2 DUP3 GT PUSH2 0x1E35 JUMPI PUSH2 0x262B SWAP5 PUSH1 0xA DUP8 MSTORE DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x3C15 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x26AF JUMPI POP SWAP2 JUMPDEST CODESIZE PUSH2 0x2620 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x26BB SWAP1 PUSH2 0x228E JUMP JUMPDEST SWAP1 PUSH2 0x26A9 JUMP JUMPDEST SWAP1 SWAP2 SWAP1 PUSH2 0x702 JUMPI POP DUP1 MLOAD ISZERO PUSH2 0x26D8 JUMPI DUP1 MLOAD SWAP1 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST PUSH1 0x42 SWAP1 PUSH2 0x26F5 PUSH2 0x2710 JUMP JUMPDEST SWAP1 PUSH1 0x40 MLOAD SWAP2 PUSH2 0x1901 PUSH1 0xF0 SHL DUP4 MSTORE PUSH1 0x2 DUP4 ADD MSTORE PUSH1 0x22 DUP3 ADD MSTORE KECCAK256 SWAP1 JUMP JUMPDEST ADDRESS PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x27FB JUMPI JUMPDEST ISZERO PUSH2 0x276B JUMPI PUSH32 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F DUP3 MSTORE PUSH32 0x0 PUSH1 0x40 DUP3 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xA0 DUP2 MSTORE PUSH2 0x1DE7 DUP2 PUSH2 0x69D JUMP JUMPDEST POP PUSH32 0x0 CHAINID EQ PUSH2 0x2742 JUMP JUMPDEST PUSH1 0xFF DUP2 EQ PUSH2 0x2862 JUMPI PUSH1 0xFF DUP2 AND SWAP1 PUSH1 0x1F DUP3 GT PUSH2 0x2850 JUMPI PUSH1 0x40 MLOAD SWAP2 PUSH2 0x2846 DUP4 PUSH2 0x667 JUMP JUMPDEST DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2CD44AC3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x0 DUP2 DUP2 SLOAD SWAP2 PUSH2 0x2875 DUP4 PUSH2 0x1CAA JUMP JUMPDEST DUP1 DUP4 MSTORE SWAP3 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x28F9 JUMPI POP PUSH1 0x1 EQ PUSH2 0x289C JUMPI JUMPDEST POP PUSH2 0x50C SWAP3 POP SUB DUP3 PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 MSTORE SWAP2 POP PUSH32 0x290DECD9548B62A8D60345A988386FC84BA6BC95484008F6362F93160EF3E563 JUMPDEST DUP5 DUP4 LT PUSH2 0x28DE JUMPI POP PUSH2 0x50C SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE PUSH2 0x288F JUMP JUMPDEST DUP2 SWAP4 POP SWAP1 DUP2 PUSH1 0x20 SWAP3 SLOAD DUP4 DUP6 DUP10 ADD ADD MSTORE ADD SWAP2 ADD SWAP1 SWAP2 DUP5 SWAP3 PUSH2 0x28C5 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 SWAP3 POP PUSH2 0x50C SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD CODESIZE PUSH2 0x288F JUMP JUMPDEST PUSH1 0xFF DUP2 EQ PUSH2 0x293D JUMPI PUSH1 0xFF DUP2 AND SWAP1 PUSH1 0x1F DUP3 GT PUSH2 0x2850 JUMPI PUSH1 0x40 MLOAD SWAP2 PUSH2 0x2846 DUP4 PUSH2 0x667 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x0 DUP2 PUSH1 0x1 SWAP2 DUP3 SLOAD SWAP3 PUSH2 0x2953 DUP5 PUSH2 0x1CAA JUMP JUMPDEST DUP1 DUP5 MSTORE SWAP4 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x28F9 JUMPI POP PUSH1 0x1 EQ PUSH2 0x2976 JUMPI POP PUSH2 0x50C SWAP3 POP SUB DUP3 PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE SWAP2 POP PUSH32 0xB10E2D527612073B26EECDFD717E6A320CF44B4AFAC2B0732D9FCBE2B7FA0CF6 JUMPDEST DUP5 DUP4 LT PUSH2 0x29B8 JUMPI POP PUSH2 0x50C SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE PUSH2 0x288F JUMP JUMPDEST DUP2 SWAP4 POP SWAP1 DUP2 PUSH1 0x20 SWAP3 SLOAD DUP4 DUP6 DUP10 ADD ADD MSTORE ADD SWAP2 ADD SWAP1 SWAP2 DUP5 SWAP3 PUSH2 0x299F JUMP JUMPDEST PUSH1 0x4 GT ISZERO PUSH2 0xE17 JUMPI JUMP JUMPDEST SWAP1 SWAP2 DUP2 EXTCODESIZE PUSH2 0x2A18 JUMPI PUSH2 0x29EF SWAP2 SWAP3 PUSH2 0x2AA0 JUMP JUMPDEST POP PUSH2 0x29F9 DUP2 PUSH2 0x29D3 JUMP JUMPDEST ISZERO SWAP2 DUP3 PUSH2 0x2A05 JUMPI POP POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND SWAP2 AND EQ SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 SWAP2 PUSH1 0x40 MLOAD PUSH2 0x2A5C DUP2 PUSH2 0x2A4E PUSH1 0x20 DUP3 ADD SWAP5 PUSH4 0xB135D3F PUSH1 0xE1 SHL SWAP10 DUP11 DUP8 MSTORE PUSH1 0x24 DUP5 ADD MSTORE PUSH1 0x40 PUSH1 0x44 DUP5 ADD MSTORE PUSH1 0x64 DUP4 ADD SWAP1 PUSH2 0x4D6 JUMP JUMPDEST SUB PUSH1 0x1F NOT DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0x6D4 JUMP JUMPDEST MLOAD SWAP2 GAS STATICCALL SWAP1 PUSH2 0x2A69 PUSH2 0x2109 JUMP JUMPDEST DUP3 PUSH2 0x2A92 JUMPI JUMPDEST DUP3 PUSH2 0x2A79 JUMPI POP POP SWAP1 JUMP JUMPDEST PUSH2 0x2A8E SWAP2 SWAP3 POP PUSH1 0x20 DUP1 DUP3 MLOAD DUP4 ADD ADD SWAP2 ADD PUSH2 0x254B JUMP JUMPDEST EQ SWAP1 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP3 MLOAD LT ISZERO SWAP2 PUSH2 0x2A6F JUMP JUMPDEST DUP2 MLOAD SWAP2 SWAP1 PUSH1 0x41 DUP4 SUB PUSH2 0x2AD1 JUMPI PUSH2 0x2ACA SWAP3 POP PUSH1 0x20 DUP3 ADD MLOAD SWAP1 PUSH1 0x60 PUSH1 0x40 DUP5 ADD MLOAD SWAP4 ADD MLOAD PUSH1 0x0 BYTE SWAP1 PUSH2 0x2ADC JUMP JUMPDEST SWAP2 SWAP3 SWAP1 SWAP2 SWAP1 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 PUSH1 0x2 SWAP2 SWAP1 JUMP JUMPDEST SWAP2 SWAP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT PUSH2 0x2B54 JUMPI SWAP3 PUSH1 0x20 SWAP3 SWAP2 PUSH1 0xFF PUSH1 0x80 SWAP6 PUSH1 0x40 MLOAD SWAP5 DUP6 MSTORE AND DUP5 DUP5 ADD MSTORE PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x0 SWAP3 DUP4 SWAP2 DUP3 DUP1 MSTORE PUSH1 0x1 GAS STATICCALL ISZERO PUSH2 0xBA6 JUMPI DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x2B4B JUMPI SWAP2 DUP2 SWAP1 JUMP JUMPDEST POP DUP1 SWAP2 PUSH1 0x1 SWAP2 SWAP1 JUMP JUMPDEST POP POP POP PUSH1 0x0 SWAP2 PUSH1 0x3 SWAP2 SWAP1 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP2 GT PUSH2 0x2B73 JUMPI AND SWAP1 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP3 MSTORE PUSH1 0x30 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x0 NOT DUP2 ADD SWAP2 SWAP1 DUP3 GT PUSH2 0x1E35 JUMPI JUMP JUMPDEST DUP2 ISZERO PUSH2 0x2BAB JUMPI DIV SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x50C JUMPI PUSH1 0x1 DUP2 PUSH1 0x1 PUSH1 0x80 SHL DUP2 LT ISZERO PUSH2 0x2CDA JUMPI JUMPDEST PUSH2 0x2C82 PUSH2 0x2C78 PUSH2 0x2C6E PUSH2 0x2C64 PUSH2 0x2C5A PUSH2 0x2C50 PUSH2 0x2C8E SWAP8 PUSH1 0x4 DUP9 PUSH1 0x1 PUSH1 0x40 SHL PUSH2 0x2C89 SWAP11 LT ISZERO PUSH2 0x2CCD JUMPI JUMPDEST PUSH5 0x100000000 DUP2 LT ISZERO PUSH2 0x2CC0 JUMPI JUMPDEST PUSH3 0x10000 DUP2 LT ISZERO PUSH2 0x2CB3 JUMPI JUMPDEST PUSH2 0x100 DUP2 LT ISZERO PUSH2 0x2CA7 JUMPI JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x2C9B JUMPI JUMPDEST LT ISZERO PUSH2 0x2C93 JUMPI JUMPDEST PUSH1 0x3 MUL PUSH1 0x1 SHR PUSH2 0x2C49 DUP2 DUP12 PUSH2 0x2BA1 JUMP JUMPDEST ADD PUSH1 0x1 SHR SWAP1 JUMP JUMPDEST PUSH2 0x2C49 DUP2 DUP11 PUSH2 0x2BA1 JUMP JUMPDEST PUSH2 0x2C49 DUP2 DUP10 PUSH2 0x2BA1 JUMP JUMPDEST PUSH2 0x2C49 DUP2 DUP9 PUSH2 0x2BA1 JUMP JUMPDEST PUSH2 0x2C49 DUP2 DUP8 PUSH2 0x2BA1 JUMP JUMPDEST PUSH2 0x2C49 DUP2 DUP7 PUSH2 0x2BA1 JUMP JUMPDEST DUP1 SWAP4 PUSH2 0x2BA1 JUMP JUMPDEST DUP3 GT SWAP1 JUMP JUMPDEST SWAP1 SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 SHL PUSH2 0x2C39 JUMP JUMPDEST DUP2 SHR SWAP2 PUSH1 0x2 SHL SWAP2 PUSH2 0x2C32 JUMP JUMPDEST PUSH1 0x8 SHR SWAP2 DUP2 SHL SWAP2 PUSH2 0x2C28 JUMP JUMPDEST PUSH1 0x10 SHR SWAP2 PUSH1 0x8 SHL SWAP2 PUSH2 0x2C1D JUMP JUMPDEST PUSH1 0x20 SHR SWAP2 PUSH1 0x10 SHL SWAP2 PUSH2 0x2C11 JUMP JUMPDEST PUSH1 0x40 SHR SWAP2 PUSH1 0x20 SHL SWAP2 PUSH2 0x2C03 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x40 SHL SWAP1 POP PUSH1 0x80 DUP3 SWAP1 SHR PUSH2 0x2BDA JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x0 SWAP1 DUP1 PUSH2 0x2CFE JUMPI POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DUP2 ADD GT PUSH2 0x1E35 JUMPI PUSH1 0xA PUSH32 0xC65A7BB8D6351C1CF70C95A316CC6A92839C986682D98BC35F958F4883F9D2A7 SWAP3 MSTORE ADD SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD DUP1 PUSH2 0x2D4A JUMPI POP PUSH1 0x0 SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x0 SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DUP2 ADD GT PUSH2 0x1E35 JUMPI PUSH1 0xA PUSH1 0x0 MSTORE PUSH32 0xC65A7BB8D6351C1CF70C95A316CC6A92839C986682D98BC35F958F4883F9D2A7 ADD SLOAD PUSH1 0x1 SWAP2 PUSH6 0xFFFFFFFFFFFF DUP3 AND SWAP2 PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD SWAP1 PUSH1 0x1 PUSH1 0x40 SHL DUP3 LT ISZERO PUSH2 0x662 JUMPI PUSH1 0x1 DUP3 ADD DUP1 PUSH1 0xA SSTORE DUP3 LT ISZERO PUSH2 0x1E73 JUMPI PUSH2 0x702 SWAP2 PUSH1 0xA PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x3C15 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 PUSH2 0x2DF0 PUSH6 0xFFFFFFFFFFFF DUP3 MLOAD AND DUP4 SWAP1 PUSH6 0xFFFFFFFFFFFF AND PUSH6 0xFFFFFFFFFFFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x20 ADD MLOAD DUP2 SLOAD PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x30 SWAP2 SWAP1 SWAP2 SHL PUSH6 0xFFFFFFFFFFFF NOT AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0xA SLOAD SWAP2 SWAP3 SWAP2 DUP1 ISZERO PUSH2 0x2EB9 JUMPI PUSH2 0x2647 PUSH2 0x2E2A SWAP2 PUSH2 0x2B92 JUMP JUMPDEST SWAP1 DUP2 SLOAD SWAP2 PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP5 AND SWAP2 DUP4 AND DUP1 DUP4 GT PUSH2 0x2EA7 JUMPI DUP7 SWAP3 SUB PUSH2 0x2E6F JUMPI PUSH2 0x2E68 SWAP3 POP SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 SLOAD SWAP2 DUP2 NOT SWAP1 PUSH1 0x30 SHL AND SWAP2 AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x30 SHR SWAP2 SWAP1 JUMP JUMPDEST POP POP PUSH2 0x2EA2 SWAP1 PUSH2 0x2E8E PUSH2 0x2E80 PUSH2 0x6F5 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP3 AND DUP3 MSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x2D90 JUMP JUMPDEST PUSH2 0x2E68 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2520601D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST POP PUSH2 0x2EDD SWAP1 PUSH2 0x2EC9 PUSH2 0x2E80 PUSH2 0x6F5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x2D90 JUMP JUMPDEST PUSH1 0x0 SWAP2 SWAP1 JUMP JUMPDEST SWAP1 JUMPDEST DUP3 DUP2 LT PUSH2 0x2EF1 JUMPI POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 DUP1 DUP3 AND SWAP1 DUP1 DUP4 XOR PUSH1 0x1 SHR DUP3 ADD DUP1 SWAP3 GT PUSH2 0x1E35 JUMPI PUSH1 0xA PUSH1 0x0 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x3C15 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x2F3A JUMPI POP SWAP2 JUMPDEST SWAP1 PUSH2 0x2EE5 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x2F46 SWAP1 PUSH2 0x228E JUMP JUMPDEST SWAP1 PUSH2 0x2F34 JUMP JUMPDEST PUSH1 0x5 SLOAD DUP1 PUSH1 0x80 SHR SWAP2 PUSH1 0x1 DUP4 ADD SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 SWAP4 AND DUP4 DUP6 AND EQ PUSH2 0x2F94 JUMPI PUSH1 0x0 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE PUSH1 0x5 SLOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB NOT SWAP1 PUSH1 0x80 SHL AND SWAP2 AND OR PUSH1 0x5 SSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH1 0x5 SLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP4 AND SWAP3 PUSH1 0x80 SHR DUP4 EQ PUSH2 0x2FEC JUMPI DUP3 PUSH1 0x0 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP4 PUSH1 0x0 DUP6 SLOAD SWAP6 SSTORE ADD AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB NOT PUSH1 0x5 SLOAD AND OR PUSH1 0x5 SSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH1 0x0 NOT DUP3 DUP3 MULMOD DUP3 DUP3 MUL SWAP2 DUP3 DUP1 DUP4 LT SWAP3 SUB SWAP2 DUP1 DUP4 SUB SWAP3 EQ PUSH2 0x306E JUMPI DUP2 PUSH1 0x64 GT ISZERO PUSH2 0x305B JUMPI PUSH32 0x5C28F5C28F5C28F5C28F5C28F5C28F5C28F5C28F5C28F5C28F5C28F5C28F5C29 SWAP4 PUSH1 0x64 SWAP2 MULMOD SWAP1 DUP3 DUP3 GT SWAP1 SUB PUSH1 0xFE SHL SWAP2 SUB PUSH1 0x2 SHR OR MUL SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST POP POP PUSH1 0x64 SWAP2 POP DIV SWAP1 JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x20 SWAP2 SUB SLT PUSH2 0x3B4 JUMPI MLOAD DUP1 ISZERO ISZERO DUP2 SUB PUSH2 0x3B4 JUMPI SWAP1 JUMP JUMPDEST PUSH2 0x3099 DUP2 PUSH2 0x31A2 JUMP JUMPDEST SWAP1 PUSH2 0x30A3 DUP3 PUSH2 0xE0D JUMP JUMPDEST PUSH1 0x5 DUP3 SUB PUSH2 0x319E JUMPI PUSH2 0x30C0 SWAP2 POP PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0xB SLOAD PUSH2 0x30D6 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9E5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2C258A9F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP4 DUP2 PUSH1 0x24 DUP2 DUP6 GAS STATICCALL SWAP1 DUP2 ISZERO PUSH2 0xBA6 JUMPI PUSH1 0x0 SWAP2 PUSH2 0x3181 JUMPI JUMPDEST POP ISZERO PUSH2 0x3114 JUMPI POP POP POP PUSH1 0x5 SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2AB0F529 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE DUP3 SWAP1 DUP3 SWAP1 PUSH1 0x24 SWAP1 DUP3 SWAP1 GAS STATICCALL SWAP2 DUP3 ISZERO PUSH2 0xBA6 JUMPI PUSH1 0x0 SWAP3 PUSH2 0x3154 JUMPI JUMPDEST POP POP ISZERO PUSH2 0x314F JUMPI PUSH1 0x7 SWAP1 JUMP JUMPDEST PUSH1 0x2 SWAP1 JUMP JUMPDEST PUSH2 0x3173 SWAP3 POP DUP1 RETURNDATASIZE LT PUSH2 0x317A JUMPI JUMPDEST PUSH2 0x316B DUP2 DUP4 PUSH2 0x6D4 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x3078 JUMP JUMPDEST CODESIZE DUP1 PUSH2 0x3143 JUMP JUMPDEST POP RETURNDATASIZE PUSH2 0x3161 JUMP JUMPDEST PUSH2 0x3198 SWAP2 POP DUP5 RETURNDATASIZE DUP7 GT PUSH2 0x317A JUMPI PUSH2 0x316B DUP2 DUP4 PUSH2 0x6D4 JUMP JUMPDEST CODESIZE PUSH2 0x3106 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x31B6 DUP2 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0xFF DUP2 PUSH1 0xF0 SHR AND PUSH2 0x32BF JUMPI PUSH1 0xF8 SHR PUSH2 0x32B9 JUMPI PUSH2 0x31F2 PUSH2 0x2039 PUSH2 0x31E3 DUP4 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0xA0 SHR PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x32A0 JUMPI PUSH2 0x3203 PUSH2 0x2039 PUSH2 0x23A0 JUMP JUMPDEST DUP1 SWAP2 LT ISZERO PUSH2 0x3299 JUMPI PUSH2 0x3214 DUP3 PUSH2 0x1E03 JUMP JUMPDEST LT PUSH2 0x321F JUMPI POP PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x322B PUSH2 0xCEC DUP3 PUSH2 0x32C6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3274 JUMPI JUMPDEST ISZERO PUSH2 0x323D JUMPI POP PUSH1 0x3 SWAP1 JUMP JUMPDEST PUSH2 0x2039 PUSH1 0x1 PUSH2 0x3259 PUSH2 0x3266 SWAP4 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST ADD SLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH2 0x326F JUMPI PUSH1 0x4 SWAP1 JUMP JUMPDEST PUSH1 0x5 SWAP1 JUMP JUMPDEST POP PUSH2 0x3294 PUSH2 0xCEC DUP3 PUSH1 0x0 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD SWAP1 SLOAD LT SWAP1 JUMP JUMPDEST PUSH2 0x3232 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6AD06075 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST POP PUSH1 0x2 SWAP1 JUMP JUMPDEST POP POP PUSH1 0x7 SWAP1 JUMP JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x4 PUSH1 0x20 MSTORE PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0xA0 SHR AND PUSH1 0x40 MLOAD PUSH4 0x2394E7A3 PUSH1 0xE2 SHL DUP2 MSTORE DUP2 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x20 DUP2 PUSH1 0x24 DUP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND GAS STATICCALL DUP1 ISZERO PUSH2 0xBA6 JUMPI PUSH2 0x335D SWAP3 PUSH2 0x334C SWAP3 PUSH1 0x0 SWAP3 PUSH2 0x1C2D JUMPI POP PUSH2 0x1C27 SWAP1 PUSH2 0x25D7 JUMP JUMPDEST SWAP2 PUSH1 0x2 PUSH1 0x1 DUP3 ADD SLOAD SWAP2 ADD SLOAD SWAP1 PUSH2 0x229C JUMP JUMPDEST LT ISZERO SWAP1 JUMP JUMPDEST SWAP2 SWAP4 SWAP3 SWAP1 SWAP4 PUSH2 0x3371 DUP3 CALLER PUSH2 0x374E JUMP JUMPDEST ISZERO PUSH2 0x3467 JUMPI PUSH1 0x7 SLOAD SWAP5 DUP6 PUSH2 0x338D JUMPI JUMPDEST PUSH2 0x50C SWAP5 SWAP6 POP CALLER SWAP4 PUSH2 0x3597 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF PUSH1 0x0 NOT DUP2 PUSH2 0x33A0 PUSH2 0x23A0 JUMP JUMPDEST AND ADD SWAP1 DUP1 DUP3 GT PUSH2 0x1E35 JUMPI PUSH1 0x0 PUSH1 0x40 MLOAD PUSH2 0x33B8 DUP2 PUSH2 0x682 JUMP JUMPDEST MSTORE PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x20 DUP2 PUSH1 0x44 DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL SWAP1 DUP2 ISZERO PUSH2 0xBA6 JUMPI PUSH1 0x0 SWAP2 PUSH2 0x3449 JUMPI JUMPDEST POP DUP7 DUP2 LT PUSH2 0x3422 JUMPI POP PUSH2 0x3380 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6121770B PUSH1 0xE1 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH2 0x3461 SWAP2 POP PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0xBD1 JUMPI PUSH2 0xBC2 DUP2 DUP4 PUSH2 0x6D4 JUMP JUMPDEST CODESIZE PUSH2 0x3414 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD9B39557 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP1 PUSH2 0x3489 DUP3 PUSH2 0x7EE JUMP JUMPDEST PUSH2 0x3496 PUSH1 0x40 MLOAD SWAP2 DUP3 PUSH2 0x6D4 JUMP JUMPDEST DUP3 DUP2 MSTORE DUP1 SWAP3 PUSH2 0x34A7 PUSH1 0x1F NOT SWAP2 PUSH2 0x7EE JUMP JUMPDEST ADD SWAP1 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0x34B8 JUMPI POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x60 PUSH1 0x20 DUP1 SWAP4 DUP6 ADD ADD MSTORE ADD PUSH2 0x34AC JUMP JUMPDEST SWAP6 SWAP3 PUSH2 0x34FC SWAP1 PUSH2 0x350A SWAP4 SWAP12 SWAP11 SWAP9 SWAP10 SWAP7 SWAP6 SWAP3 DUP9 MSTORE PUSH1 0x20 SWAP12 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP13 DUP10 ADD MSTORE PUSH2 0x120 DUP1 PUSH1 0x40 DUP11 ADD MSTORE DUP9 ADD SWAP1 PUSH2 0x1CF7 JUMP JUMPDEST SWAP1 DUP7 DUP3 SUB PUSH1 0x60 DUP9 ADD MSTORE PUSH2 0x135C JUMP JUMPDEST SWAP8 DUP5 DUP10 SUB PUSH1 0x80 DUP7 ADD MSTORE DUP3 MLOAD DUP1 DUP11 MSTORE DUP2 DUP11 ADD SWAP2 DUP1 DUP1 DUP4 PUSH1 0x5 SHL DUP14 ADD ADD SWAP6 ADD SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP4 DUP3 LT PUSH2 0x3569 JUMPI POP POP POP POP POP PUSH2 0x50C SWAP7 SWAP8 POP SWAP1 PUSH2 0x3550 SWAP2 DUP5 DUP3 SUB PUSH1 0xA0 DUP7 ADD MSTORE PUSH2 0x1D34 JUMP JUMPDEST SWAP4 PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP3 ADD MSTORE PUSH2 0x100 DUP2 DUP5 SUB SWAP2 ADD MSTORE PUSH2 0x4D6 JUMP JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP6 DUP4 DUP1 PUSH2 0x3588 DUP16 SWAP4 PUSH1 0x1 SWAP5 PUSH1 0x1F NOT SWAP1 DUP3 SUB ADD DUP7 MSTORE DUP11 MLOAD PUSH2 0x4D6 JUMP JUMPDEST SWAP9 ADD SWAP3 ADD SWAP3 ADD SWAP1 SWAP4 SWAP3 SWAP2 PUSH2 0x352C JUMP JUMPDEST SWAP2 SWAP5 SWAP4 SWAP1 SWAP3 SWAP5 PUSH2 0x35AF DUP7 MLOAD PUSH1 0x20 DUP9 ADD KECCAK256 DUP3 DUP7 DUP7 PUSH2 0x1D89 JUMP JUMPDEST SWAP6 DUP4 MLOAD DUP6 MLOAD SWAP1 DUP2 DUP2 EQ DUP1 ISZERO SWAP1 PUSH2 0x3743 JUMPI JUMPDEST DUP1 ISZERO PUSH2 0x373B JUMPI JUMPDEST PUSH2 0x3712 JUMPI POP POP PUSH6 0xFFFFFFFFFFFF SWAP5 DUP6 PUSH2 0x35ED PUSH2 0x31E3 DUP11 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST AND PUSH2 0x36EB JUMPI PUSH32 0x7D84A6263AE0D98D3329BD7B46BB4E8D6F98CD35A7ADB45C274C8B7FD5EBD5E0 SWAP6 PUSH2 0x36E6 SWAP4 PUSH4 0xFFFFFFFF PUSH2 0x3636 PUSH2 0x3628 PUSH2 0x23A0 JUMP JUMPDEST PUSH1 0x8 SLOAD SWAP5 DUP1 DUP7 AND SWAP2 AND PUSH2 0x229C JUMP JUMPDEST SWAP3 PUSH1 0x30 SHR AND PUSH2 0x36C4 PUSH2 0x3652 DUP13 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND OR DUP2 SSTORE PUSH2 0x369B PUSH2 0x3677 DUP7 PUSH2 0x2B60 JUMP JUMPDEST DUP3 SLOAD PUSH6 0xFFFFFFFFFFFF PUSH1 0xA0 SHL NOT AND PUSH1 0xA0 SWAP2 SWAP1 SWAP2 SHL PUSH6 0xFFFFFFFFFFFF PUSH1 0xA0 SHL AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x36A4 DUP4 PUSH2 0x3984 JUMP JUMPDEST DUP2 SLOAD PUSH4 0xFFFFFFFF PUSH1 0xD0 SHL NOT AND PUSH1 0xD0 SWAP2 SWAP1 SWAP2 SHL PUSH4 0xFFFFFFFF PUSH1 0xD0 SHL AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x36D8 PUSH2 0x36D1 DUP10 MLOAD PUSH2 0x347F JUMP JUMPDEST SWAP2 DUP5 PUSH2 0x229C JUMP JUMPDEST SWAP4 PUSH1 0x40 MLOAD SWAP9 DUP10 SWAP9 DUP14 DUP11 PUSH2 0x34C9 JUMP JUMPDEST SUB SWAP1 LOG1 JUMP JUMPDEST DUP8 PUSH2 0x36F5 DUP2 PUSH2 0x3090 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP2 MSTORE SWAP2 DUP3 SWAP2 PUSH2 0xF2A SWAP2 PUSH1 0x4 DUP5 ADD PUSH2 0x21CA JUMP JUMPDEST DUP4 MLOAD PUSH1 0x40 MLOAD PUSH4 0x447B05D PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST POP DUP1 ISZERO PUSH2 0x35C7 JUMP JUMPDEST POP DUP4 MLOAD DUP2 EQ ISZERO PUSH2 0x35C0 JUMP JUMPDEST SWAP1 DUP1 MLOAD PUSH1 0x34 DUP2 LT PUSH2 0x379B JUMPI PUSH1 0x13 NOT DUP2 DUP4 ADD ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xB0 SHL SUB NOT AND PUSH10 0xDC8F8D908F908C9A8DC3 PUSH1 0xB0 SHL ADD PUSH2 0x379B JUMPI PUSH2 0x378D SWAP2 PUSH1 0x29 NOT DUP3 ADD SWAP1 PUSH2 0x37CF JUMP JUMPDEST SWAP1 ISZERO SWAP2 DUP3 ISZERO PUSH2 0x2A05 JUMPI POP POP SWAP1 JUMP JUMPDEST POP POP POP PUSH1 0x1 SWAP1 JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x1 SHL SWAP2 DUP1 DUP4 DIV PUSH1 0x2 EQ SWAP1 ISZERO OR ISZERO PUSH2 0x1E35 JUMPI JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x4 SHL SWAP2 DUP1 DUP4 DIV PUSH1 0x10 EQ SWAP1 ISZERO OR ISZERO PUSH2 0x1E35 JUMPI JUMP JUMPDEST SWAP2 SWAP1 DUP3 MLOAD DUP3 GT DUP1 ISZERO PUSH2 0x3858 JUMPI JUMPDEST PUSH2 0x382F JUMPI PUSH2 0x37E9 DUP2 PUSH2 0x228E JUMP JUMPDEST DUP3 GT DUP1 PUSH2 0x383A JUMPI JUMPDEST PUSH2 0x37FC SWAP1 ISZERO ISZERO PUSH2 0x37A3 JUMP JUMPDEST PUSH1 0x28 ADD DUP1 PUSH1 0x28 GT PUSH2 0x1E35 JUMPI DUP2 DUP4 SUB DUP4 DUP2 GT PUSH2 0x1E35 JUMPI SUB PUSH2 0x382F JUMPI PUSH2 0x381F SWAP3 PUSH2 0x3861 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 JUMP JUMPDEST POP POP POP PUSH1 0x0 SWAP1 PUSH1 0x0 SWAP1 JUMP JUMPDEST POP DUP3 DUP2 ADD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF0 SHL SUB NOT AND PUSH2 0x60F PUSH1 0xF3 SHL EQ PUSH2 0x37F1 JUMP JUMPDEST POP DUP2 DUP2 GT PUSH2 0x37DC JUMP JUMPDEST SWAP3 SWAP1 SWAP3 PUSH2 0x386D DUP5 PUSH2 0x228E JUMP JUMPDEST DUP4 GT DUP1 PUSH2 0x38F4 JUMPI JUMPDEST PUSH2 0x3880 SWAP1 ISZERO ISZERO PUSH2 0x37A3 JUMP JUMPDEST SWAP4 PUSH1 0x0 SWAP5 DUP2 ADD DUP1 SWAP2 GT PUSH2 0x1E35 JUMPI SWAP2 SWAP3 SWAP1 JUMPDEST DUP2 DUP4 LT PUSH2 0x38A1 JUMPI POP POP POP PUSH1 0x1 SWAP2 SWAP1 JUMP JUMPDEST SWAP1 SWAP3 SWAP2 SWAP4 PUSH1 0xFF PUSH2 0x38C2 PUSH2 0x38BD PUSH1 0x20 DUP9 DUP7 ADD ADD MLOAD PUSH1 0xFF PUSH1 0xF8 SHL AND SWAP1 JUMP JUMPDEST PUSH2 0x3912 JUMP JUMPDEST AND SWAP1 PUSH1 0xF DUP3 GT PUSH2 0x38E8 JUMPI SWAP1 PUSH2 0x38D9 PUSH2 0x38E0 SWAP3 PUSH2 0x37B9 JUMP JUMPDEST ADD SWAP5 PUSH2 0x1E3A JUMP JUMPDEST SWAP2 SWAP3 SWAP1 PUSH2 0x3891 JUMP JUMPDEST POP PUSH1 0x0 SWAP5 POP DUP5 SWAP4 POP POP POP JUMP JUMPDEST POP DUP1 DUP5 ADD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF0 SHL SUB NOT AND PUSH2 0x60F PUSH1 0xF3 SHL EQ PUSH2 0x3875 JUMP JUMPDEST PUSH1 0xF8 SHR PUSH1 0x2F DUP2 GT DUP1 PUSH2 0x397A JUMPI JUMPDEST ISZERO PUSH2 0x392E JUMPI PUSH1 0x2F NOT ADD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP2 GT DUP1 PUSH2 0x3970 JUMPI JUMPDEST ISZERO PUSH2 0x3947 JUMPI PUSH1 0x56 NOT ADD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP2 GT DUP1 PUSH2 0x3966 JUMPI JUMPDEST ISZERO PUSH2 0x3960 JUMPI PUSH1 0x36 NOT ADD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST POP PUSH1 0xFF SWAP1 JUMP JUMPDEST POP PUSH1 0x47 DUP2 LT PUSH2 0x3951 JUMP JUMPDEST POP PUSH1 0x67 DUP2 LT PUSH2 0x3938 JUMP JUMPDEST POP PUSH1 0x3A DUP2 LT PUSH2 0x391F JUMP JUMPDEST PUSH4 0xFFFFFFFF SWAP1 DUP2 DUP2 GT PUSH2 0x3995 JUMPI AND SWAP1 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP3 MSTORE PUSH1 0x20 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST SWAP1 PUSH2 0x39C0 SWAP4 SWAP3 SWAP2 PUSH2 0x1D89 JUMP JUMPDEST PUSH2 0x39C9 DUP2 PUSH2 0x3090 JUMP JUMPDEST PUSH1 0x8 DUP2 LT ISZERO PUSH2 0xE17 JUMPI PUSH1 0x3B PUSH1 0x1 PUSH1 0xFF DUP4 AND SHL AND ISZERO PUSH2 0x3AC8 JUMPI POP PUSH2 0x3A0E PUSH2 0x39F9 DUP3 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB AND PUSH1 0x1 PUSH1 0xF8 SHL OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x789CF55BE980739DAD1D0699B93B58E806B51C9D96619BFA8FE0A28ABAA7B30C SWAP1 PUSH1 0x20 SWAP1 LOG1 PUSH2 0x3A4E DUP2 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD DUP1 PUSH2 0x3A58 JUMPI POP SWAP1 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH2 0x3A6D SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9E5 JUMP JUMPDEST DUP1 EXTCODESIZE ISZERO PUSH2 0x3B4 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC4D252F5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP1 DUP3 SWAP1 PUSH1 0x24 SWAP1 DUP3 SWAP1 DUP5 SWAP1 GAS CALL DUP1 ISZERO PUSH2 0xBA6 JUMPI PUSH2 0x3AB5 JUMPI JUMPDEST POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE SWAP1 JUMP JUMPDEST DUP1 PUSH2 0xB9A PUSH2 0x3AC2 SWAP3 PUSH2 0x64F JUMP JUMPDEST CODESIZE PUSH2 0x3AA2 JUMP JUMPDEST SWAP1 PUSH2 0x3AEC PUSH1 0x64 SWAP3 PUSH1 0x40 MLOAD SWAP3 PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP5 MSTORE PUSH1 0x4 DUP5 ADD MSTORE PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0xE1C JUMP JUMPDEST PUSH1 0x3B PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST SWAP5 SWAP4 SWAP3 PUSH2 0x3B21 PUSH1 0x80 SWAP4 PUSH2 0x3B13 PUSH2 0x3B2F SWAP5 PUSH1 0xA0 DUP11 MSTORE PUSH1 0xA0 DUP11 ADD SWAP1 PUSH2 0x1CF7 JUMP JUMPDEST SWAP1 DUP9 DUP3 SUB PUSH1 0x20 DUP11 ADD MSTORE PUSH2 0x135C JUMP JUMPDEST SWAP1 DUP7 DUP3 SUB PUSH1 0x40 DUP9 ADD MSTORE PUSH2 0x1D34 JUMP JUMPDEST SWAP4 PUSH1 0x0 PUSH1 0x60 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST SWAP2 SWAP3 PUSH2 0x3B6A PUSH1 0xA0 SWAP5 PUSH2 0x3B5C PUSH2 0x3B78 SWAP5 SWAP10 SWAP9 SWAP8 SWAP10 PUSH1 0xC0 DUP8 MSTORE PUSH1 0xC0 DUP8 ADD SWAP1 PUSH2 0x1CF7 JUMP JUMPDEST SWAP1 DUP6 DUP3 SUB PUSH1 0x20 DUP8 ADD MSTORE PUSH2 0x135C JUMP JUMPDEST SWAP1 DUP4 DUP3 SUB PUSH1 0x40 DUP6 ADD MSTORE PUSH2 0x1D34 JUMP JUMPDEST SWAP5 PUSH1 0x0 PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST SWAP3 SWAP1 SWAP4 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0xB SLOAD AND SWAP1 DUP2 EXTCODESIZE ISZERO PUSH2 0x3B4 JUMPI PUSH1 0x0 SWAP4 PUSH2 0x3BD8 PUSH1 0x40 MLOAD SWAP8 DUP9 SWAP6 DUP7 SWAP5 DUP6 SWAP5 PUSH4 0xE38335E5 PUSH1 0xE0 SHL DUP7 MSTORE PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT ADDRESS PUSH1 0x60 SHL AND XOR SWAP3 PUSH1 0x4 DUP7 ADD PUSH2 0x3AF5 JUMP JUMPDEST SUB SWAP2 CALLVALUE SWAP1 GAS CALL SWAP1 DUP2 ISZERO PUSH2 0xBA6 JUMPI PUSH1 0x0 SWAP3 PUSH2 0x3C02 SWAP3 PUSH2 0x3C05 JUMPI JUMPDEST POP PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE JUMP JUMPDEST PUSH2 0x3C0E SWAP1 PUSH2 0x64F JUMP JUMPDEST CODESIZE PUSH2 0x3BF1 JUMP INVALID 0xC6 GAS PUSH28 0xB8D6351C1CF70C95A316CC6A92839C986682D98BC35F958F4883F9D2 0xA8 LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP7 0xE6 ISZERO SLOAD SUB 0xC0 0xE8 GAS 0x4C 0x4A PUSH4 0x46F4C92D PUSH13 0x35195199EA8303E8C02EED5077 0xB8 DUP14 SHL PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER 0xC6 GAS PUSH28 0xB8D6351C1CF70C95A316CC6A92839C986682D98BC35F958F4883F9D2 0xA8 SDIV MSTORE8 SELFBALANCE PUSH12 0xF02EF2726E8CE5CED78D63E2 PUSH15 0x602E4A2257B1F559418E24B4633997 ","sourceMap":"658:4307:51:-:0;;;;;;837:698;658:4307;;:::i;:::-;837:698;;;;;:::i;:::-;658:4307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;658:4307:51;;;;;;;:::o;:::-;;:::i;:::-;2079:95:38;658:4307:51;;;;;-1:-1:-1;;;;;658:4307:51;;;;;;;:::o;:::-;;;;;-1:-1:-1;;658:4307:51;;;;-1:-1:-1;;;;;658:4307:51;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;:::o;:::-;-1:-1:-1;;;;;658:4307:51;;;;;;-1:-1:-1;;658:4307:51;;;;:::o;:::-;;;;;;;;-1:-1:-1;;658:4307:51;;;;:::o;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;658:4307:51;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;658:4307:51;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::o;1887:97:8:-;;1055:19:7;1427:20:10;1887:97:8;1009:18:7;1107:24;1887:97:8;;658:4307:51;1961:15:8;1887:97;658:4307:51;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;658:4307:51;;3501:45:38;;;:::i;:::-;3493:53;;3567:51;;;:::i;:::-;3556:62;;658:4307:51;;;;;3642:22:38;3628:36;;;;658:4307:51;3691:25:38;;3674:42;;;3744:13;3727:30;;658:4307:51;;4304:80:38;658:4307:51;4304:80:38;;658:4307:51;2079:95:38;658:4307:51;;;2079:95:38;;658:4307:51;2079:95:38;;;658:4307:51;3744:13:38;2079:95;;;658:4307:51;4378:4:38;3727:30;2079:95;;658:4307:51;3727:30:38;4304:80;;;;;:::i;:::-;658:4307:51;4294:91:38;;2079:95;3767:48;4378:4;2079:95;3825:27;658:4307:51;:::i;:::-;1009:18:7;:::i;:::-;1055:19;:::i;:::-;1107:24;:::i;:::-;-1:-1:-1;;;;;658:4307:51;668:40:9;;1427:20:10;:::i;:::-;1961:15:8;:::i;658:4307:51:-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;-1:-1:-1;658:4307:51;3634:13:3;658:4307:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;658:4307:51;;;;;;;;;;;;:::o;:::-;3532:13:38;658:4307:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;658:4307:51;;;;;;;;;;;;;:::o;:::-;;-1:-1:-1;;658:4307:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;658:4307:51;;;;;;;;;;-1:-1:-1;;;;;658:4307:51;;;;;;;3634:13:3;658:4307:51;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;3634:13:3;658:4307:51;;;;;3634:13:3;658:4307:51;:::o;:::-;;;;-1:-1:-1;658:4307:51;;;;;3634:13:3;658:4307:51;;-1:-1:-1;;658:4307:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3634:13:3;658:4307:51;:::o;:::-;;;;;;;3634:13:3;658:4307:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2721:170:7;2816:12;658:4307:51;2801:44:7;658:4307:51;;;;;;;;;;;;;;;;;;2801:44:7;-1:-1:-1;;658:4307:51;;2816:12:7;658:4307:51;2721:170:7:o;3011:274::-;658:4307:51;;;;3092:20:7;;;3088:88;;3190:47;658:4307:51;;;3206:13:7;658:4307:51;;;;;;;;;;;;;;;3190:47:7;658:4307:51;;;;;;;;3206:13:7;658:4307:51;3011:274:7:o;3088:88::-;658:4307:51;;-1:-1:-1;;;3135:30:7;;3111:1;3135:30;;;658:4307:51;;;3135:30:7;3415:213;3529:18;658:4307:51;;;;;;;;;;;;;3508:62:7;;;3529:18;658:4307:51;3415:213:7:o;6164:176:8:-;6267:9;658:4307:51;6244:56:8;658:4307:51;;;;;;;;;;;;;;;;;;;;;;6244:56:8;-1:-1:-1;;;;;;658:4307:51;;6267:9:8;658:4307:51;6164:176:8:o;3143:498:10:-;;2146:3;3285:32;;3281:132;;1634:23;658:4307:51;-1:-1:-1;;10447:63:46;:8;;;:63;-1:-1:-1;;;;;;;;;;;10447:63:46;;;-1:-1:-1;10447:63:46;8311:38;3508:7:10;;:::i;:::-;3517:38;;;:::i;:::-;8311::46;;:::i;:::-;-1:-1:-1;;658:4307:51;;;-1:-1:-1;;;;;658:4307:51;;;;;;;;;;;;;3572:62:10;3143:498::o;10447:63:46:-;658:4307:51;;;;;;;;;;14441:109:46;;1634:23:10;-1:-1:-1;;;;;;;;;;;14441:109:46;;;;;;658:4307:51;;;10447:63:46;;658:4307:51;-1:-1:-1;;;658:4307:51;;;;;;;;3281:132:10;658:4307:51;;-1:-1:-1;;;3340:62:10;;;;;658:4307:51;;;2146:3:10;658:4307:51;;;;;;3340:62:10;1057:224:9;867:6;658:4307:51;;;-1:-1:-1;;;1134:15:9;;658:4307:51;1134:15:9;;658:4307:51;;1134:15:9;;658:4307:51;;-1:-1:-1;;;;;658:4307:51;1134:15:9;;-1:-1:-1;;1134:15:9;;;1057:224;-1:-1:-1;1130:145:9;;658:4307:51;;1020:12:48;;14374:24:44;14370:103;;1020:12:48;658:4307:51;1239:25:9;:::o;14370:103:44:-;658:4307:51;;-1:-1:-1;;;14421:41:44;;14452:2;1134:15:9;14421:41:44;;658:4307:51;1020:12:48;658:4307:51;;;;;;14421:41:44;1130:145:9;1191:16;:::o;1134:15::-;;;;;;;;;;;;;;;;;:::i;:::-;;;658:4307:51;;;;;;;;:::i;:::-;1134:15:9;;;;658:4307:51;;;1134:15:9;;;-1:-1:-1;1134:15:9;;2887:340:34;;658:4307:51;;3032:2:34;3010:24;;;;3006:215;3032:2;;;3057:20;;;;;;:::i;3006:215::-;-1:-1:-1;;;;;658:4307:51;;;;3532:13:38;658:4307:51;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1390:66:34;3168:42;:::o;658:4307:51:-;;;;-1:-1:-1;658:4307:51;;;;;3532:13:38;658:4307:51;;-1:-1:-1;;658:4307:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1390:66:34;3168:42;:::o;658:4307:51:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2887:340:34;;658:4307:51;;3032:2:34;3010:24;;;;3006:215;3032:2;;;3057:20;;;;;;:::i;3006:215::-;-1:-1:-1;;;;;658:4307:51;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;658:4307:51;;;;;;;;;;;;;1390:66:34;;3168:42::o;658:4307:51:-;;;;-1:-1:-1;658:4307:51;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1390:66:34;3168:42;:::o;658:4307:51:-;;;;;;;;;;;;;;;;;;;;;1708:286:34;1854:2;658:4307:51;;1840:16:34;1836:72;;658:4307:51;;;;;;;;;;;1949:36:34;1708:286;:::o;658:4307:51:-;;;;;;;;;;1949:36:34;1708:286;:::o;1836:72::-;658:4307:51;;;1879:18:34;;;;;;;658:4307:51;1879:18:34;;;658:4307:51;;;;;;;;;;;;;;;;;;:::i;:::-;1854:2:34;658:4307:51;-1:-1:-1;;658:4307:51;;;1879:18:34;;;;4174:218:44;-1:-1:-1;;;;;658:4307:51;4254:25:44;;;4250:105;;658:4307:51;4174:218:44;:::o;4250:105::-;658:4307:51;;;;14421:41:44;;;;4302:42;;658:4307:51;4302:42:44;;;658:4307:51;;;;;4302:42:44;658:4307:51;-1:-1:-1;;658:4307:51;;;;;;;;:::o;:::-;;;;;;;;;;;;;1634:23:10;658:4307:51;;;;;;;;;;;;1634:23:10;658:4307:51;;;;;;1634:23:10;-1:-1:-1;658:4307:51;;;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;;-1:-1:-1;;;;;;;;;;;658:4307:51;;;;:::o;:::-;;;;-1:-1:-1;658:4307:51;;;;;-1:-1:-1;658:4307:51;11659:922:46;1634:23:10;658:4307:51;11659:922:46;;;11866:7;;;;11938;11918:28;11938:7;;:::i;:::-;1634:23:10;14441:109:46;;-1:-1:-1;;;;;;;;;;;14441:109:46;;14291:265;11918:28;658:4307:51;;;;;;;;;;;;12105:13:46;;;12101:89;;12253:14;;;;;12287:19;;;658:4307:51;;;;;;;;;;;;;;;;;12287:19:46;658:4307:51;;12425:25:46;;:::o;12249:163::-;658:4307:51;;12345:52:46;658:4307:51;12355:41:46;658:4307:51;;:::i;:::-;;;;;;;;12355:41:46;-1:-1:-1;;;;;658:4307:51;;12355:41:46;;;658:4307:51;12345:52:46;:::i;:::-;12249:163;;12101:89;658:4307:51;;-1:-1:-1;;;12145:30:46;;;;;11862:713;658:4307:51;12481:52:46;658:4307:51;12491:41:46;658:4307:51;;:::i;12491:41:46:-;-1:-1:-1;;;;;658:4307:51;;12491:41:46;;;658:4307:51;12345:52:46;:::i;12481:::-;11872:1;12547:17;;:::o"},"deployedBytecode":{"functionDebugData":{"abi_decode":{"entryPoint":953,"id":null,"parameterSlots":2,"returnSlots":0},"abi_decode_array_address_dyn":{"entryPoint":2053,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_array_address_dynt_array_uint256_dynt_array_bytes_dynt_bytes32":{"entryPoint":2379,"id":null,"parameterSlots":1,"returnSlots":4},"abi_decode_array_bytes_dyn":{"entryPoint":2251,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_array_uint256_dyn":{"entryPoint":2157,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_available_length_bytes":{"entryPoint":1823,"id":null,"parameterSlots":3,"returnSlots":1},"abi_decode_bool_fromMemory":{"entryPoint":12408,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_bytes":{"entryPoint":1878,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_string_calldata":{"entryPoint":4204,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_uint256_fromMemory":{"entryPoint":9547,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint8":{"entryPoint":4108,"id":null,"parameterSlots":0,"returnSlots":1},"abi_encode_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_address_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_array_address_dyn":{"entryPoint":7415,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_array_address_dyn_array_uint256_dyn_array_bytes_dyn_rational_by_bytes32":{"entryPoint":15093,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_array_address_dyn_array_uint256_dyn_array_bytes_dyn_rational_by_bytes32_uint256":{"entryPoint":15163,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_array_bytes_dyn":{"entryPoint":7476,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_array_uint256_dyn":{"entryPoint":4956,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_bytes4":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_bytes4_19107":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_bytes4_19163":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_enum_ProposalState":{"entryPoint":3612,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_string":{"entryPoint":1275,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string_memory_ptr":{"entryPoint":1238,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_uint256":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_uint256_address":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_uint256_address_array_address_dyn_array_uint256_dyn_array_string_dyn_array_bytes_dyn_uint256_uint256_string":{"entryPoint":13513,"id":null,"parameterSlots":10,"returnSlots":1},"abi_encode_uint256_enum_ProposalState_bytes32":{"entryPoint":8650,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_uint256_uint256_uint256":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_uint256_uint48":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_uint256_uint8_uint256_string":{"entryPoint":8132,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_uint256_uint8_uint256_string_bytes":{"entryPoint":8074,"id":null,"parameterSlots":6,"returnSlots":1},"allocate_and_zero_memory_array_array_string_dyn":{"entryPoint":13439,"id":null,"parameterSlots":1,"returnSlots":1},"allocate_memory":{"entryPoint":1781,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory_array_string":{"entryPoint":7396,"id":null,"parameterSlots":0,"returnSlots":1},"array_allocation_size_array_address_dyn":{"entryPoint":2030,"id":null,"parameterSlots":1,"returnSlots":1},"array_allocation_size_bytes":{"entryPoint":1796,"id":null,"parameterSlots":1,"returnSlots":1},"array_push_from_struct_Checkpoint208_to_array_struct_Checkpoint208_storage_dyn_ptr":{"entryPoint":11664,"id":null,"parameterSlots":1,"returnSlots":0},"checked_add_uint256":{"entryPoint":8860,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_uint256_19221":{"entryPoint":8846,"id":null,"parameterSlots":1,"returnSlots":1},"checked_mul_uint256":{"entryPoint":14265,"id":null,"parameterSlots":1,"returnSlots":1},"checked_mul_uint256_19281":{"entryPoint":14243,"id":null,"parameterSlots":1,"returnSlots":1},"checked_sub_uint256":{"entryPoint":11154,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_address":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"cleanup_uint48":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"convert_bytes32_to_bytes1":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"copy_literal_to_memory_9f79d44e499ce83a99049e0b7ebf2d6f56e249303be3c14798235137af5ea536":{"entryPoint":9267,"id":null,"parameterSlots":0,"returnSlots":1},"copy_memory_to_memory_with_cleanup":{"entryPoint":1203,"id":null,"parameterSlots":3,"returnSlots":0},"external_fun_BALLOT_TYPEHASH":{"entryPoint":6504,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_CLOCK_MODE":{"entryPoint":3917,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_COUNTING_MODE":{"entryPoint":6410,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_EXTENDED_BALLOT_TYPEHASH":{"entryPoint":3478,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_cancel":{"entryPoint":3759,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_castVote":{"entryPoint":4124,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_castVoteBySig":{"entryPoint":5210,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_castVoteWithReason":{"entryPoint":4657,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_castVoteWithReasonAndParams":{"entryPoint":4385,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_castVoteWithReasonAndParamsBySig":{"entryPoint":4249,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_clock":{"entryPoint":5490,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_eip712Domain":{"entryPoint":5008,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_execute":{"entryPoint":3063,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_getProposalId":{"entryPoint":5930,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_getVotes":{"entryPoint":6732,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_getVotesWithParams":{"entryPoint":5561,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_hasVoted":{"entryPoint":3670,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_name":{"entryPoint":1295,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_nonces":{"entryPoint":4895,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_onERC1155BatchReceived":{"entryPoint":6071,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_onERC1155Received":{"entryPoint":6977,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_onERC721Received":{"entryPoint":1905,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalDeadline":{"entryPoint":6231,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalEta":{"entryPoint":5986,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalNeedsQueuing":{"entryPoint":5958,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalProposer":{"entryPoint":1524,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalSnapshot":{"entryPoint":3423,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalThreshold":{"entryPoint":6041,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_proposalVotes":{"entryPoint":3965,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_propose":{"entryPoint":4742,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_queue":{"entryPoint":2477,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_quorum":{"entryPoint":7084,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_quorumDenominator":{"entryPoint":5533,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_quorumNumerator":{"entryPoint":4496,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_quorumNumerator_4760":{"entryPoint":5770,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_relay":{"entryPoint":6261,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_setProposalThreshold":{"entryPoint":6892,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_setVotingDelay":{"entryPoint":4542,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_setVotingPeriod":{"entryPoint":6563,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_state":{"entryPoint":3625,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_supportsInterface":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_timelock":{"entryPoint":6369,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_token":{"entryPoint":7249,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_updateQuorumNumerator":{"entryPoint":1003,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_updateTimelock":{"entryPoint":5814,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_version":{"entryPoint":4042,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_votingDelay":{"entryPoint":3537,"id":null,"parameterSlots":0,"returnSlots":0},"external_fun_votingPeriod":{"entryPoint":964,"id":null,"parameterSlots":0,"returnSlots":0},"extract_byte_array_length":{"entryPoint":7338,"id":null,"parameterSlots":1,"returnSlots":1},"extract_returndata":{"entryPoint":8457,"id":null,"parameterSlots":0,"returnSlots":1},"finalize_allocation":{"entryPoint":1748,"id":null,"parameterSlots":2,"returnSlots":0},"finalize_allocation_19113":{"entryPoint":1615,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_32027":{"entryPoint":1639,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_32031":{"entryPoint":1666,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_32033":{"entryPoint":1693,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_32038":{"entryPoint":1720,"id":null,"parameterSlots":1,"returnSlots":0},"fun":{"entryPoint":7318,"id":667,"parameterSlots":0,"returnSlots":0},"fun_CLOCK_MODE":{"entryPoint":9324,"id":4683,"parameterSlots":0,"returnSlots":1},"fun__castVote":{"entryPoint":8046,"id":1921,"parameterSlots":4,"returnSlots":1},"fun__propose":{"entryPoint":13719,"id":1289,"parameterSlots":5,"returnSlots":1},"fun_cancel":{"entryPoint":14772,"id":4520,"parameterSlots":4,"returnSlots":1},"fun_castVote":{"entryPoint":8170,"id":1996,"parameterSlots":5,"returnSlots":1},"fun_castVoteWithReasonAndParamsBySig":{"entryPoint":7800,"id":1897,"parameterSlots":7,"returnSlots":1},"fun_checkGovernance":{"entryPoint":8505,"id":1013,"parameterSlots":0,"returnSlots":0},"fun_clear":{"entryPoint":null,"id":15247,"parameterSlots":0,"returnSlots":0},"fun_clock":{"entryPoint":9120,"id":4659,"parameterSlots":0,"returnSlots":1},"fun_countVote":{"entryPoint":8873,"id":4062,"parameterSlots":4,"returnSlots":1},"fun_domainSeparatorV4":{"entryPoint":10000,"id":9484,"parameterSlots":0,"returnSlots":1},"fun_empty":{"entryPoint":null,"id":15283,"parameterSlots":0,"returnSlots":1},"fun_executeOperations":{"entryPoint":15241,"id":4467,"parameterSlots":5,"returnSlots":0},"fun_getVotes":{"entryPoint":9562,"id":4704,"parameterSlots":2,"returnSlots":1},"fun_hashProposal":{"entryPoint":7561,"id":758,"parameterSlots":4,"returnSlots":1},"fun_hashTypedDataV4":{"entryPoint":9962,"id":9521,"parameterSlots":1,"returnSlots":1},"fun_insert":{"entryPoint":11794,"id":14285,"parameterSlots":2,"returnSlots":2},"fun_isValidDescriptionForProposer":{"entryPoint":14158,"id":2268,"parameterSlots":2,"returnSlots":1},"fun_isValidSignatureNow":{"entryPoint":10717,"id":9729,"parameterSlots":3,"returnSlots":1},"fun_latest":{"entryPoint":11500,"id":14110,"parameterSlots":0,"returnSlots":1},"fun_latestCheckpoint":{"entryPoint":11574,"id":14159,"parameterSlots":0,"returnSlots":3},"fun_mulDiv":{"entryPoint":12287,"id":10345,"parameterSlots":2,"returnSlots":1},"fun_onERC1155BatchReceived":{"entryPoint":8621,"id":2138,"parameterSlots":0,"returnSlots":1},"fun_optimisticUpperLookupRecent":{"entryPoint":9687,"id":4896,"parameterSlots":1,"returnSlots":1},"fun_popFront":{"entryPoint":12199,"id":15133,"parameterSlots":0,"returnSlots":1},"fun_proposalDeadline":{"entryPoint":7683,"id":934,"parameterSlots":1,"returnSlots":1},"fun_propose":{"entryPoint":13154,"id":1146,"parameterSlots":4,"returnSlots":1},"fun_pushBack":{"entryPoint":12108,"id":14990,"parameterSlots":1,"returnSlots":0},"fun_quorumReached":{"entryPoint":12998,"id":3945,"parameterSlots":1,"returnSlots":1},"fun_sqrt":{"entryPoint":11201,"id":10983,"parameterSlots":1,"returnSlots":1},"fun_state":{"entryPoint":12432,"id":4339,"parameterSlots":1,"returnSlots":1},"fun_state_892":{"entryPoint":12706,"id":892,"parameterSlots":1,"returnSlots":1},"fun_toStringWithFallback":{"entryPoint":10523,"id":7455,"parameterSlots":1,"returnSlots":1},"fun_toStringWithFallback_19142":{"entryPoint":10276,"id":7455,"parameterSlots":1,"returnSlots":1},"fun_toUint32":{"entryPoint":14724,"id":12250,"parameterSlots":1,"returnSlots":1},"fun_toUint48":{"entryPoint":11104,"id":12194,"parameterSlots":1,"returnSlots":1},"fun_tryParseAddress":{"entryPoint":14287,"id":8774,"parameterSlots":3,"returnSlots":2},"fun_tryParseChr":{"entryPoint":14610,"id":8834,"parameterSlots":1,"returnSlots":1},"fun_tryParseHexUintUncheckedBounds":{"entryPoint":14433,"id":8599,"parameterSlots":3,"returnSlots":2},"fun_tryRecover":{"entryPoint":10972,"id":9275,"parameterSlots":4,"returnSlots":3},"fun_tryRecover_9087":{"entryPoint":10912,"id":9087,"parameterSlots":2,"returnSlots":3},"fun_unsafeAccess":{"entryPoint":null,"id":14404,"parameterSlots":1,"returnSlots":1},"fun_upperBinaryLookup":{"entryPoint":12003,"id":14337,"parameterSlots":3,"returnSlots":1},"fun_useNonce":{"entryPoint":null,"id":7192,"parameterSlots":1,"returnSlots":1},"fun_validateStateBitmap":{"entryPoint":8682,"id":2197,"parameterSlots":1,"returnSlots":1},"fun_validateStateBitmap_32029":{"entryPoint":8764,"id":2197,"parameterSlots":1,"returnSlots":1},"fun_verifyCallResult":{"entryPoint":9921,"id":7077,"parameterSlots":2,"returnSlots":1},"fun_voteSucceeded":{"entryPoint":null,"id":3968,"parameterSlots":1,"returnSlots":1},"increment_uint256":{"entryPoint":7738,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_address_bool_of_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"mapping_index_access_mapping_uint256_struct_ProposalCore_storage_of_uint256":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_uint256_struct_ProposalCore_storage_of_uint256_19114":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"mapping_index_access_mapping_uint256_struct_ProposalCore_storage_of_uint256_19195":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"memory_array_index_access_address_dyn":{"entryPoint":7775,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":7661,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":3575,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":7753,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":1593,"id":null,"parameterSlots":0,"returnSlots":0},"read_from_memoryt_address":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"read_from_storage_split_offset_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"read_from_storage_split_offset_t_uint48":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"read_from_storage_split_offset_uint208":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"read_from_storage_split_offset_uint48":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"revert_forward":{"entryPoint":9108,"id":null,"parameterSlots":0,"returnSlots":0},"shift_right_uint256_uint8":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"update_storage_value_offsett_bool_to_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"update_storage_value_offsett_bool_to_bool_19196":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"update_storage_value_offsett_bool_to_t_bool":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":0},"update_storage_value_offsett_contract_TimelockController_to_contract_TimelockController":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"update_storage_value_offsett_uint208_to_uint208":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"update_storage_value_offsett_uint32_to_uint32":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"update_storage_value_offsett_uint48_to_t_uint48":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"update_storage_value_offsett_uint48_to_uint48":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"validator_assert_enum_ProposalState":{"entryPoint":3597,"id":null,"parameterSlots":1,"returnSlots":0},"validator_assert_enum_RecoverError":{"entryPoint":10707,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_address":{"entryPoint":1576,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_uint48":{"entryPoint":4526,"id":null,"parameterSlots":1,"returnSlots":0},"wrapping_div_uint256":{"entryPoint":11169,"id":null,"parameterSlots":2,"returnSlots":1},"write_to_memory_uint208":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"write_to_memory_uint48":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0}},"generatedSources":[],"immutableReferences":{"4607":[{"length":32,"start":5671},{"length":32,"start":6824},{"length":32,"start":7133},{"length":32,"start":7271},{"length":32,"start":9141},{"length":32,"start":9346},{"length":32,"start":9611},{"length":32,"start":13067},{"length":32,"start":13275}],"9382":[{"length":32,"start":10057}],"9384":[{"length":32,"start":10238}],"9386":[{"length":32,"start":10003}],"9388":[{"length":32,"start":10136}],"9390":[{"length":32,"start":10174}],"9393":[{"length":32,"start":5033}],"9396":[{"length":32,"start":5077}]},"linkReferences":{},"object":"60806040526004361015610023575b361561001957600080fd5b610021611c96565b005b60003560e01c806301ffc9a71461032e57806302a251a31461032957806306f3f9e61461032457806306fdde031461031f578063143489d01461031a578063150b7a0214610315578063160cbed7146103105780632656227d1461030b5780632d63f693146103065780632fe3e261146103015780633932abb1146102fc5780633e4f49e6146102f757806343859632146102f2578063452115d6146102ed5780634bf5d7e9146102e8578063544ffc9c146102e357806354fd4d50146102de57806356781388146102d95780635b8d0e0d146102d45780635f398a14146102cf57806360c4247f146102ca57806379051887146102c55780637b3c71d3146102c05780637d5e81e2146102bb5780637ecebe00146102b657806384b0196e146102b15780638ff262e3146102ac57806391ddadf4146102a757806397c3d334146102a25780639a802a6d1461029d578063a7713a7014610298578063a890c91014610293578063a8f8a66814610270578063a9a952941461028e578063ab58fb8e14610289578063b58131b014610284578063bc197c811461027f578063c01f9e371461027a578063c28bc2fa14610275578063c59057e414610270578063d33219b41461026b578063dd4e2ba514610266578063deaaa7cc14610261578063e540d01d1461025c578063eb9019d414610257578063ece40cc114610252578063f23a6e611461024d578063f8ce560a146102485763fc0c546a0361000e57611c51565b611bac565b611b41565b611aec565b611a4c565b6119a3565b611968565b61190a565b6118e1565b61172a565b611875565b611857565b6117b7565b611799565b611762565b611746565b6116b6565b61168a565b6115b9565b61159d565b611572565b61145a565b611390565b61131f565b611286565b611231565b6111be565b611190565b611121565b611099565b61101c565b610fca565b610f7d565b610f4d565b610eaf565b610e56565b610e29565b610dd1565b610d96565b610d5f565b610bf7565b6109ad565b610771565b6105f4565b61050f565b6103eb565b6103c4565b346103b45760203660031901126103b45760043563ffffffff60e01b81168091036103b4576020906366defe7760e11b81149081156103a3575b8115610392575b8115610381575b506040519015158152f35b6301ffc9a760e01b14905038610376565b630271189760e51b8114915061036f565b6332a2ad4360e11b81149150610368565b600080fd5b60009103126103b457565b346103b45760003660031901126103b457602063ffffffff60085460301c16604051908152f35b346103b45760203660031901126103b457600435610407612139565b60648111610494576001600160d01b039081610421612cec565b1661042a6123a0565b92808311610474577f0553476bf02ef2726e8ce5ced78d63e26e602e4a2257b1f559418e24b46339979361046091841690612e12565b5050604080519182526020820192909252a1005b6040516306dfcc6560e41b815260d0600482015260248101849052604490fd5b6044906040519063243e544560e01b8252600482015260646024820152fd5b60005b8381106104c65750506000910152565b81810151838201526020016104b6565b906020916104ef815180928185528580860191016104b3565b601f01601f1916010190565b90602061050c9281815201906104d6565b90565b346103b4576000806003193601126105f157604051908060035461053281611caa565b808552916001918083169081156105c7575060011461056c575b6105688561055c818703826106d4565b604051918291826104fb565b0390f35b9250600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8284106105af57505050810160200161055c8261056861054c565b80546020858701810191909152909301928101610594565b8695506105689693506020925061055c94915060ff191682840152151560051b820101929361054c565b80fd5b346103b45760203660031901126103b4576004356000526004602052602060018060a01b0360406000205416604051908152f35b6001600160a01b038116036103b457565b634e487b7160e01b600052604160045260246000fd5b6001600160401b03811161066257604052565b610639565b604081019081106001600160401b0382111761066257604052565b602081019081106001600160401b0382111761066257604052565b60c081019081106001600160401b0382111761066257604052565b61010081019081106001600160401b0382111761066257604052565b90601f801991011681019081106001600160401b0382111761066257604052565b6040519061070282610667565b565b6001600160401b03811161066257601f01601f191660200190565b92919261072b82610704565b9161073960405193846106d4565b8294818452818301116103b4578281602093846000960137010152565b9080601f830112156103b45781602061050c9335910161071f565b346103b45760803660031901126103b45761078d600435610628565b610798602435610628565b6064356001600160401b0381116103b4576107b7903690600401610756565b50600b546001600160a01b031630036107dc57604051630a85bd0160e11b8152602090f35b604051637485328f60e11b8152600490fd5b6001600160401b0381116106625760051b60200190565b81601f820112156103b45780359161081c836107ee565b9261082a60405194856106d4565b808452602092838086019260051b8201019283116103b4578301905b828210610854575050505090565b838091833561086281610628565b815201910190610846565b81601f820112156103b457803591610884836107ee565b9261089260405194856106d4565b808452602092838086019260051b8201019283116103b4578301905b8282106108bc575050505090565b813581529083019083016108ae565b9080601f830112156103b4578135906108e3826107ee565b926108f160405194856106d4565b828452602092838086019160051b830101928084116103b457848301915b84831061091f5750505050505090565b82356001600160401b0381116103b457869161094084848094890101610756565b81520192019161090f565b60806003198201126103b4576001600160401b03916004358381116103b4578261097791600401610805565b926024358181116103b4578361098f9160040161086d565b926044359182116103b4576109a6916004016108cb565b9060643590565b346103b4576109bb3661094b565b6109c9818385879697611d89565b926109d3846121ea565b50600b546109f1906001600160a01b03165b6001600160a01b031690565b9260409586519363793d064960e11b855260209081866004818a5afa958615610ba657600096610bd8575b506bffffffffffffffffffffffff193060601b161895818951809263b1c5f42760e01b82528180610a538c8a8a8d60048601613af5565b03915afa918215610ba657600092610bab575b5050610a7c87600052600c602052604060002090565b55600b54610a92906001600160a01b03166109e5565b90813b156103b45760008094610abe878b51998a97889687956308f2a0bb60e41b875260048701613b3b565b03925af1908115610ba657610ae292610add92610b8d575b504261229c565b612b60565b65ffffffffffff811615610b7c57917f9a2e42fd6722813d69113e7d0079d3d940171428df7373df9c7f7617cfda2892610b6b84610b4d610568966001610b33886000526004602052604060002090565b019065ffffffffffff1665ffffffffffff19825416179055565b835185815265ffffffffffff90911660208201529081906040820190565b0390a1519081529081906020820190565b8251634844252360e11b8152600490fd5b80610b9a610ba09261064f565b806103b9565b38610ad6565b612394565b610bca9250803d10610bd1575b610bc281836106d4565b81019061254b565b3880610a66565b503d610bb8565b610bf0919650823d8411610bd157610bc281836106d4565b9438610a1c565b610c003661094b565b610c0e818385879597611d89565b92610c188461223c565b50610c43610c30856000526004602052604060002090565b805460ff60f01b1916600160f01b179055565b600b546001600160a01b03939084163003610cf5575b94610c6992916105689686613b89565b600b543091166001600160a01b0316141580610cd0575b610cc1575b6040518181527f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f90602090a16040519081529081906020820190565b610ccb6000600555565b610c85565b50610cf0610cec6005546001600160801b0381169060801c1490565b1590565b610c80565b9290939160005b8451811015610d5557610d319030610d276109e5610d1a848a611e5f565b516001600160a01b031690565b14610d3657611e3a565b610cfc565b610d50610d43828a611e5f565b5160208151910120612f4c565b611e3a565b5091939092610c59565b346103b45760203660031901126103b4576004356000526004602052602065ffffffffffff60406000205460a01c16604051908152f35b346103b45760003660031901126103b45760206040517f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a8118152f35b346103b45760003660031901126103b457602065ffffffffffff60085416604051908152f35b634e487b7160e01b600052602160045260246000fd5b60081115610e1757565b610df7565b906008821015610e175752565b346103b45760203660031901126103b4576020610e47600435613090565b610e546040518092610e1c565bf35b346103b45760403660031901126103b457602060ff610ea3602435610e7a81610628565b6004356000526009845260036040600020019060018060a01b0316600052602052604060002090565b54166040519015158152f35b346103b457610ebd3661094b565b92610ecd84838584969596611d89565b610ed681613090565b6008811015610e17571580610f2e575b15610f0a57610568610efa868686866139b4565b6040519081529081906020820190565b604051638fe5d8a960e01b81526004810191909152336024820152604490fd5b0390fd5b5080600052600460205260018060a01b03604060002054163314610ee6565b346103b45760003660031901126103b457610568610f6961246c565b6040519182916020835260208301906104d6565b346103b45760203660031901126103b45760043560005260096020526040600020805461056860026001840154930154604051938493846040919493926060820195825260208201520152565b346103b45760003660031901126103b457610568604051610fea81610667565b60018152603160f81b60208201526040519182916020835260208301906104d6565b6024359060ff821682036103b457565b346103b45760403660031901126103b457602061106461103a61100c565b60405161104681610682565b600081526040519161105783610682565b6000835233600435611fea565b604051908152f35b9181601f840112156103b4578235916001600160401b0383116103b457602083818601950101116103b457565b346103b45760c03660031901126103b4576110b261100c565b604435906110bf82610628565b6001600160401b03906064358281116103b4576110e090369060040161106c565b6084358481116103b4576110f8903690600401610756565b9160a4359485116103b45761056895611118610efa963690600401610756565b94600435611e78565b346103b45760803660031901126103b45761113a61100c565b6001600160401b03906044358281116103b45761115b90369060040161106c565b90916064359384116103b4576111866110649361117e6020963690600401610756565b93369161071f565b9033600435611fea565b346103b45760203660031901126103b45760206110646004356125d7565b65ffffffffffff8116036103b457565b346103b45760203660031901126103b4576004356111db816111ae565b6111e3612139565b6008547fc565b045403dc03c2eea82b81a0465edad9e2e7fc4d97e11421c209da93d7a93604080519365ffffffffffff9081851686521693846020820152a165ffffffffffff191617600855005b346103b45760603660031901126103b45761124a61100c565b6044356001600160401b0381116103b45760209161127961127261106493369060040161106c565b369161071f565b6040519161105783610682565b346103b45760803660031901126103b4576001600160401b036004358181116103b4576112b7903690600401610805565b906024358181116103b4576112d090369060040161086d565b916044358281116103b4576112e99036906004016108cb565b6064359283116103b457366023840112156103b45761056893611319610efa94369060248160040135910161071f565b92613362565b346103b45760203660031901126103b45760043561133c81610628565b60018060a01b031660005260026020526020604060002054604051908152f35b90815180825260208080930193019160005b82811061137c575050505090565b83518552938101939281019260010161136e565b346103b45760003660031901126103b45761142b6113cd7f0000000000000000000000000000000000000000000000000000000000000000612824565b6105686113f97f000000000000000000000000000000000000000000000000000000000000000061291b565b6114396040519161140983610682565b60008352604051958695600f60f81b875260e0602088015260e08701906104d6565b9085820360408701526104d6565b90466060850152306080850152600060a085015283820360c085015261135c565b346103b45760803660031901126103b45760043561147661100c565b906044359161148483610628565b6064356001600160401b0381116103b457610cec6114a9611536923690600401610756565b6001600160a01b03861660009081526002602052604090208054600181019091556115309060405160208101917ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d7835288604083015260ff8816606083015260018060a01b038a16608083015260a082015260a081526115288161069d565b5190206126ea565b866129dd565b6115515790610efa916105689361154b611ce4565b92611f6e565b6040516394ab6c0760e01b81526001600160a01b0384166004820152602490fd5b346103b45760003660031901126103b457602061158d6123a0565b65ffffffffffff60405191168152f35b346103b45760003660031901126103b457602060405160648152f35b346103b45760603660031901126103b4576004356115d681610628565b6044356001600160401b0381116103b4576044916115fa6020923690600401610756565b50604051630748d63560e31b81526001600160a01b039182166004820152602480359082015292839182907f0000000000000000000000000000000000000000000000000000000000000000165afa8015610ba6576105689160009161166c575b506040519081529081906020820190565b611684915060203d8111610bd157610bc281836106d4565b3861165b565b346103b45760003660031901126103b45760206001600160d01b036116ad612cec565b16604051908152f35b346103b45760203660031901126103b4576004356116d381610628565b6116db612139565b600b547f08f74ea46ef7894f65eabfb5e6e695de773a000b47c529ab559178069b226401604060018060a01b038094169381519084168152846020820152a16001600160a01b03191617600b55005b346103b457602061106461173d3661094b565b92919091611d89565b346103b45760203660031901126103b457602060405160018152f35b346103b45760203660031901126103b4576004356000526004602052602065ffffffffffff60016040600020015416604051908152f35b346103b45760003660031901126103b4576020600754604051908152f35b346103b45760a03660031901126103b4576117d3600435610628565b6117de602435610628565b6001600160401b036044358181116103b4576117fe90369060040161086d565b506064358181116103b45761181790369060040161086d565b506084359081116103b457611830903690600401610756565b5061056861183c6121ad565b6040516001600160e01b031990911681529081906020820190565b346103b45760203660031901126103b4576020611064600435611e03565b60603660031901126103b45760043561188d81610628565b604435906001600160401b0382116103b457600080916118b461002194369060040161106c565b906118bd612139565b81604051928392833781018481520391602435905af16118db612109565b906126c1565b346103b45760003660031901126103b457600b546040516001600160a01b039091168152602090f35b346103b45760003660031901126103b45761056860405161192a81610667565b602081527f737570706f72743d627261766f2671756f72756d3d666f722c6162737461696e60208201526040519182916020835260208301906104d6565b346103b45760003660031901126103b45760206040517ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d78152f35b346103b45760203660031901126103b45760043563ffffffff808216918281036103b4576119cf612139565b8215611a33577f7e3f7f0708a84de9203036abaa450dccc85ad5ff52f78c170f3edb55cf5e8828604069ffffffff00000000000093600854958251918760301c1682526020820152a160301b169069ffffffff000000000000191617600855600080f35b60405163f1cfbf0560e01b815260006004820152602490fd5b346103b45760403660031901126103b45760446020600435611a6d81610628565b6000604051611a7b81610682565b52604051630748d63560e31b81526001600160a01b039182166004820152602480359082015292839182907f0000000000000000000000000000000000000000000000000000000000000000165afa8015610ba6576105689160009161166c57506040519081529081906020820190565b346103b45760203660031901126103b457600435611b08612139565b60075460408051918252602082018390527fccb45da8d5717e6c4544694297c4ba5cf151d455c9bb0ed4fc7a38411bc0546191a1600755005b346103b45760a03660031901126103b457611b5d600435610628565b611b68602435610628565b6084356001600160401b0381116103b457611b87903690600401610756565b50600b546001600160a01b031630036107dc5760405163f23a6e6160e01b8152602090f35b346103b45760203660031901126103b457604051632394e7a360e21b815260048035908201819052906020816024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa8015610ba65761056892610efa92600092611c2d575b50611c27906125d7565b90612fff565b611c27919250611c4a9060203d8111610bd157610bc281836106d4565b9190611c1d565b346103b45760003660031901126103b4576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b600b546001600160a01b031630036107dc57565b90600182811c92168015611cda575b6020831014611cc457565b634e487b7160e01b600052602260045260246000fd5b91607f1691611cb9565b60405190611cf182610682565b60008252565b90815180825260208080930193019160005b828110611d17575050505090565b83516001600160a01b031685529381019392810192600101611d09565b90815180825260208092019182818360051b85019501936000915b848310611d5f5750505050505090565b9091929394958480611d7983856001950387528a516104d6565b9801930193019194939290611d4f565b9290611dd592611de792604051948592611dc5611db2602086019960808b5260a0870190611cf7565b601f19968787830301604088015261135c565b9085858303016060860152611d34565b906080830152039081018352826106d4565b51902090565b634e487b7160e01b600052601160045260246000fd5b600052600460205260406000205465ffffffffffff908163ffffffff8260d01c169160a01c1601818111611e35571690565b611ded565b6000198114611e355760010190565b634e487b7160e01b600052603260045260246000fd5b8051821015611e735760209160051b010190565b611e49565b939092919695610cec611f3291611f2c8a611eae8160018060a01b03166000526002602052604060002080549060018201905590565b611eb936888a61071f565b602081519101208b5160208d0120906040519260208401947f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a81186528d604086015260ff8d16606086015260018060a01b0316608085015260a084015260c083015260e082015260e08152611528816106b8565b8a6129dd565b611f4d5761050c959691611f4791369161071f565b92611fea565b6040516394ab6c0760e01b81526001600160a01b0388166004820152602490fd5b9161050c939160405193611f8185610682565b60008552611fea565b93909260ff611fb69361050c97958752166020860152604085015260a0606085015260a08401906104d6565b9160808184039101526104d6565b909260ff60809361050c96958452166020830152604082015281606082015201906104d6565b929190611ff684613090565b6008811015610e17576002600160ff83161b16156120db575083600052600460205261205261204a612044612039604060002065ffffffffffff905460a01c1690565b65ffffffffffff1690565b8361255a565b8383876122a9565b9480511560001461209f57506120997fb8e138887d0aa13bab447e82de9d5c1777041ecd21ca36ba824ff1e6c07ddda4938660405194859460018060a01b03169785611fc4565b0390a290565b612099907fe2babfbac5889a709b63bb7f598b324e08bc5a4fb9ec647fb3cbc9ec07eb8712948760405195869560018060a01b03169886611f8a565b6040516331b75e4d60e01b815260048101869052606491612100906024830190610e1c565b60026044820152fd5b3d15612134573d9061211a82610704565b9161212860405193846106d4565b82523d6000602084013e565b606090565b600b546001600160a01b031633810361219557300361215457565b61215d36610704565b61216a60405191826106d4565b368152602081019036600083376000602036830101525190205b8061218d612fa7565b036121845750565b6040516347096e4760e01b8152336004820152602490fd5b600b546001600160a01b031630036107dc5763bc197c8160e01b90565b6040906121e66000939594606083019683526020830190610e1c565b0152565b6121f381613090565b906008821015610e17576010600160ff84161b1615612210575090565b612233606492604051926331b75e4d60e01b845260048401526024830190610e1c565b60106044820152fd5b61224581613090565b906008821015610e17576030600160ff84161b1615612262575090565b612285606492604051926331b75e4d60e01b845260048401526024830190610e1c565b60306044820152fd5b9060018201809211611e3557565b91908201809211611e3557565b6122c0909291926000526009602052604060002090565b91600383016122eb6122e483839060018060a01b0316600052602052604060002090565b5460ff1690565b6123735761231160ff939261231e929060018060a01b0316600052602052604060002090565b805460ff19166001179055565b1680612335575061233082825461229c565b905590565b6001810361234c575060010161233082825461229c565b6002036123615760020161233082825461229c565b6040516303599be160e11b8152600490fd5b6040516371c6af4960e01b81526001600160a01b0383166004820152602490fd5b6040513d6000823e3d90fd5b6040516324776b7d60e21b81526020816004817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa600091816123f7575b5061050c575061050c43612b60565b90916020823d821161242b575b81612411602093836106d4565b810103126105f1575051612424816111ae565b90386123e8565b3d9150612404565b6040519061244082610667565b601d82527f6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c740000006020830152565b604051634bf5d7e960e01b8152600080826004817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa909182826124c4575b505061050c575061050c612433565b909192503d8082843e6124d781846106d4565b820191602081840312612543578051906001600160401b038211612547570182601f820112156125435780519161250d83610704565b9361251b60405195866106d4565b838552602084840101116105f157509061253b91602080850191016104b3565b9038806124b5565b5080fd5b8280fd5b908160209103126103b4575190565b604051630748d63560e31b81526001600160a01b0391821660048201526024810192909252602090829060449082907f0000000000000000000000000000000000000000000000000000000000000000165afa908115610ba6576000916125bf575090565b61050c915060203d8111610bd157610bc281836106d4565b6125df612d36565b926000925065ffffffffffff9182168110612604575050505b6001600160d01b031690565b61261091929350612b60565b600a54908390826005811161266b575b5061262b9350612ee3565b8061263657506125f8565b612666915061264761265f91612b92565b600a600052600080516020613c158339815191520190565b5460301c90565b6125f8565b909261267682612bc1565b8203918211611e355761262b94600a87528083600080516020613c15833981519152015416908516106000146126af5750915b38612620565b9291506126bb9061228e565b906126a9565b90919061070257508051156126d857805190602001fd5b60405163d6bda27560e01b8152600490fd5b6042906126f5612710565b906040519161190160f01b8352600283015260228201522090565b307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614806127fb575b1561276b577f000000000000000000000000000000000000000000000000000000000000000090565b60405160208101907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82527f000000000000000000000000000000000000000000000000000000000000000060408201527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260a08152611de78161069d565b507f00000000000000000000000000000000000000000000000000000000000000004614612742565b60ff81146128625760ff811690601f8211612850576040519161284683610667565b8252602082015290565b604051632cd44ac360e21b8152600490fd5b5060405160008181549161287583611caa565b808352926001908181169081156128f9575060011461289c575b5061050c925003826106d4565b600080805291507f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5635b8483106128de575061050c93505081016020013861288f565b819350908160209254838589010152019101909184926128c5565b90506020925061050c94915060ff191682840152151560051b8201013861288f565b60ff811461293d5760ff811690601f8211612850576040519161284683610667565b5060405160008160019182549261295384611caa565b808452938181169081156128f95750600114612976575061050c925003826106d4565b600081815291507fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf65b8483106129b8575061050c93505081016020013861288f565b8193509081602092548385890101520191019091849261299f565b60041115610e1757565b9091813b612a18576129ef9192612aa0565b506129f9816129d3565b159182612a0557505090565b6001600160a01b03918216911614919050565b6000918291604051612a5c81612a4e6020820194630b135d3f60e11b998a875260248401526040604484015260648301906104d6565b03601f1981018352826106d4565b51915afa90612a69612109565b82612a92575b82612a7957505090565b612a8e9192506020808251830101910161254b565b1490565b915060208251101591612a6f565b8151919060418303612ad157612aca92506020820151906060604084015193015160001a90612adc565b9192909190565b505060009160029190565b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411612b5457926020929160ff608095604051948552168484015260408301526060820152600092839182805260015afa15610ba65780516001600160a01b03811615612b4b57918190565b50809160019190565b50505060009160039190565b65ffffffffffff90818111612b73571690565b604490604051906306dfcc6560e41b8252603060048301526024820152fd5b600019810191908211611e3557565b8115612bab570490565b634e487b7160e01b600052601260045260246000fd5b600181111561050c57600181600160801b811015612cda575b612c82612c78612c6e612c64612c5a612c50612c8e97600488600160401b612c899a1015612ccd575b640100000000811015612cc0575b62010000811015612cb3575b610100811015612ca7575b6010811015612c9b575b1015612c93575b60030260011c612c49818b612ba1565b0160011c90565b612c49818a612ba1565b612c498189612ba1565b612c498188612ba1565b612c498187612ba1565b612c498186612ba1565b8093612ba1565b821190565b900390565b60011b612c39565b811c9160021b91612c32565b60081c91811b91612c28565b60101c9160081b91612c1d565b60201c9160101b91612c11565b60401c9160201b91612c03565b50600160401b9050608082901c612bda565b600a5460009080612cfe575050600090565b80600019810111611e3557600a7fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a79252015460301c90565b600a5480612d4a5750600090600090600090565b80600019810111611e3557600a6000527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a7015460019165ffffffffffff82169160301c90565b600a5490600160401b821015610662576001820180600a55821015611e735761070291600a600052600080516020613c158339815191520190612df065ffffffffffff825116839065ffffffffffff1665ffffffffffff19825416179055565b60200151815465ffffffffffff1660309190911b65ffffffffffff1916179055565b600a549192918015612eb957612647612e2a91612b92565b9081549165ffffffffffff90818416918316808311612ea757869203612e6f57612e6892509065ffffffffffff82549181199060301b169116179055565b60301c9190565b5050612ea290612e8e612e806106f5565b65ffffffffffff9092168252565b6001600160d01b0385166020820152612d90565b612e68565b604051632520601d60e01b8152600490fd5b50612edd90612ec9612e806106f5565b6001600160d01b0384166020820152612d90565b60009190565b905b828110612ef157505090565b90918082169080831860011c8201809211611e3557600a60005265ffffffffffff8083600080516020613c1583398151915201541690851610600014612f3a5750915b90612ee5565b929150612f469061228e565b90612f34565b6005548060801c9160018301926001600160801b0380931683851614612f94576000526006602052604060002055600554916001600160801b03199060801b16911617600555565b634e487b7160005260416020526024601cfd5b600554906001600160801b038083169260801c8314612fec57826000526006602052600160406000209360008554955501166001600160801b03196005541617600555565b634e487b7160005260316020526024601cfd5b6000198282098282029182808310920391808303921461306e57816064111561305b577f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c29936064910990828211900360fe1b910360021c170290565b634e487b7160005260116020526024601cfd5b5050606491500490565b908160209103126103b4575180151581036103b45790565b613099816131a2565b906130a382610e0d565b6005820361319e576130c09150600052600c602052604060002090565b54600b546130d6906001600160a01b03166109e5565b604051632c258a9f60e11b81526004810183905260209291908381602481855afa908115610ba657600091613181575b501561311457505050600590565b604051632ab0f52960e01b815260048101929092528290829060249082905afa918215610ba657600092613154575b50501561314f57600790565b600290565b6131739250803d1061317a575b61316b81836106d4565b810190613078565b3880613143565b503d613161565b6131989150843d861161317a5761316b81836106d4565b38613106565b5090565b6131b6816000526004602052604060002090565b5460ff8160f01c166132bf5760f81c6132b9576131f26120396131e3836000526004602052604060002090565b5460a01c65ffffffffffff1690565b80156132a0576132036120396123a0565b809110156132995761321482611e03565b1061321f5750600190565b61322b610cec826132c6565b8015613274575b1561323d5750600390565b6120396001613259613266936000526004602052604060002090565b015465ffffffffffff1690565b61326f57600490565b600590565b50613294610cec8260005260096020526040600020600181015490541090565b613232565b5050600090565b604051636ad0607560e01b815260048101839052602490fd5b50600290565b5050600790565b60005260096020526040600020600460205265ffffffffffff60406000205460a01c16604051632394e7a360e21b815281600482015260208160248160018060a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa8015610ba65761335d9261334c92600092611c2d5750611c27906125d7565b91600260018201549101549061229c565b101590565b9193929093613371823361374e565b1561346757600754948561338d575b61050c9495503393613597565b65ffffffffffff600019816133a06123a0565b160190808211611e355760006040516133b881610682565b52604051630748d63560e31b8152336004820152911660248201526020816044817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa908115610ba657600091613449575b508681106134225750613380565b604051636121770b60e11b8152336004820152602481019190915260448101879052606490fd5b613461915060203d8111610bd157610bc281836106d4565b38613414565b60405163d9b3955760e01b8152336004820152602490fd5b90613489826107ee565b61349660405191826106d4565b82815280926134a7601f19916107ee565b019060005b8281106134b857505050565b8060606020809385010152016134ac565b95926134fc9061350a939b9a9899969592885260209b60018060a01b03168c8901526101208060408a0152880190611cf7565b90868203606088015261135c565b9784890360808601528251808a52818a019180808360051b8d01019501926000905b83821061356957505050505061050c969750906135509184820360a0860152611d34565b9360c083015260e08201526101008184039101526104d6565b909192939583806135888f93600194601f199082030186528a516104d6565b9801920192019093929161352c565b9194939092946135af86516020880120828686611d89565b958351855190818114801590613743575b801561373b575b61371257505065ffffffffffff94856135ed6131e38a6000526004602052604060002090565b166136eb577f7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e0956136e69363ffffffff6136366136286123a0565b60085494808616911661229c565b9260301c166136c46136528c6000526004602052604060002090565b80546001600160a01b0319166001600160a01b038a1617815561369b61367786612b60565b825465ffffffffffff60a01b191660a09190911b65ffffffffffff60a01b16178255565b6136a483613984565b815463ffffffff60d01b191660d09190911b63ffffffff60d01b16179055565b6136d86136d1895161347f565b918461229c565b936040519889988d8a6134c9565b0390a1565b876136f581613090565b6040516331b75e4d60e01b8152918291610f2a91600484016121ca565b8351604051630447b05d60e41b8152600481019290925260248201526044810191909152606490fd5b5080156135c7565b5083518114156135c0565b9080516034811061379b5760131981830101516001600160b01b03191669dc8f8d908f908c9a8dc360b01b0161379b5761378d916029198201906137cf565b9015918215612a0557505090565b505050600190565b908160011b9180830460021490151715611e3557565b908160041b9180830460101490151715611e3557565b9190825182118015613858575b61382f576137e98161228e565b82118061383a575b6137fc9015156137a3565b60280180602811611e3557818303838111611e35570361382f5761381f92613861565b90916001600160a01b0390911690565b505050600090600090565b50828101602001516001600160f01b03191661060f60f31b146137f1565b508181116137dc565b92909261386d8461228e565b8311806138f4575b6138809015156137a3565b936000948101809111611e35579192905b8183106138a15750505060019190565b9092919360ff6138c26138bd6020888601015160ff60f81b1690565b613912565b1690600f82116138e857906138d96138e0926137b9565b0194611e3a565b919290613891565b50600094508493505050565b50808401602001516001600160f01b03191661060f60f31b14613875565b60f81c602f81118061397a575b1561392e57602f190160ff1690565b6060811180613970575b15613947576056190160ff1690565b6040811180613966575b15613960576036190160ff1690565b5060ff90565b5060478110613951565b5060678110613938565b50603a811061391f565b63ffffffff90818111613995571690565b604490604051906306dfcc6560e41b8252602060048301526024820152fd5b906139c0939291611d89565b6139c981613090565b6008811015610e1757603b600160ff83161b1615613ac85750613a0e6139f9826000526004602052604060002090565b80546001600160f81b0316600160f81b179055565b6040518181527f789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c90602090a1613a4e81600052600c602052604060002090565b5480613a58575090565b600b54613a6d906001600160a01b03166109e5565b803b156103b45760405163c4d252f560e01b815260048101929092526000908290602490829084905af18015610ba657613ab5575b506000818152600c602052604081205590565b80610b9a613ac29261064f565b38613aa2565b90613aec606492604051926331b75e4d60e01b845260048401526024830190610e1c565b603b6044820152fd5b949392613b21608093613b13613b2f9460a08a5260a08a0190611cf7565b9088820360208a015261135c565b908682036040880152611d34565b93600060608201520152565b9192613b6a60a094613b5c613b78949998979960c0875260c0870190611cf7565b90858203602087015261135c565b908382036040850152611d34565b946000606083015260808201520152565b9290939160018060a01b03600b541690813b156103b457600093613bd86040519788958694859463e38335e560e01b86526bffffffffffffffffffffffff193060601b16189260048601613af5565b039134905af1908115610ba657600092613c0292613c05575b50600052600c602052604060002090565b55565b613c0e9061064f565b38613bf156fec65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8a264697066735822122096e6155403c0e85a4c4a6346f4c92d6c35195199ea8303e8c02eed5077b88d1b64736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT ISZERO PUSH2 0x23 JUMPI JUMPDEST CALLDATASIZE ISZERO PUSH2 0x19 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x21 PUSH2 0x1C96 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x32E JUMPI DUP1 PUSH4 0x2A251A3 EQ PUSH2 0x329 JUMPI DUP1 PUSH4 0x6F3F9E6 EQ PUSH2 0x324 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x31F JUMPI DUP1 PUSH4 0x143489D0 EQ PUSH2 0x31A JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x315 JUMPI DUP1 PUSH4 0x160CBED7 EQ PUSH2 0x310 JUMPI DUP1 PUSH4 0x2656227D EQ PUSH2 0x30B JUMPI DUP1 PUSH4 0x2D63F693 EQ PUSH2 0x306 JUMPI DUP1 PUSH4 0x2FE3E261 EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0x3932ABB1 EQ PUSH2 0x2FC JUMPI DUP1 PUSH4 0x3E4F49E6 EQ PUSH2 0x2F7 JUMPI DUP1 PUSH4 0x43859632 EQ PUSH2 0x2F2 JUMPI DUP1 PUSH4 0x452115D6 EQ PUSH2 0x2ED JUMPI DUP1 PUSH4 0x4BF5D7E9 EQ PUSH2 0x2E8 JUMPI DUP1 PUSH4 0x544FFC9C EQ PUSH2 0x2E3 JUMPI DUP1 PUSH4 0x54FD4D50 EQ PUSH2 0x2DE JUMPI DUP1 PUSH4 0x56781388 EQ PUSH2 0x2D9 JUMPI DUP1 PUSH4 0x5B8D0E0D EQ PUSH2 0x2D4 JUMPI DUP1 PUSH4 0x5F398A14 EQ PUSH2 0x2CF JUMPI DUP1 PUSH4 0x60C4247F EQ PUSH2 0x2CA JUMPI DUP1 PUSH4 0x79051887 EQ PUSH2 0x2C5 JUMPI DUP1 PUSH4 0x7B3C71D3 EQ PUSH2 0x2C0 JUMPI DUP1 PUSH4 0x7D5E81E2 EQ PUSH2 0x2BB JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x2B6 JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0x8FF262E3 EQ PUSH2 0x2AC JUMPI DUP1 PUSH4 0x91DDADF4 EQ PUSH2 0x2A7 JUMPI DUP1 PUSH4 0x97C3D334 EQ PUSH2 0x2A2 JUMPI DUP1 PUSH4 0x9A802A6D EQ PUSH2 0x29D JUMPI DUP1 PUSH4 0xA7713A70 EQ PUSH2 0x298 JUMPI DUP1 PUSH4 0xA890C910 EQ PUSH2 0x293 JUMPI DUP1 PUSH4 0xA8F8A668 EQ PUSH2 0x270 JUMPI DUP1 PUSH4 0xA9A95294 EQ PUSH2 0x28E JUMPI DUP1 PUSH4 0xAB58FB8E EQ PUSH2 0x289 JUMPI DUP1 PUSH4 0xB58131B0 EQ PUSH2 0x284 JUMPI DUP1 PUSH4 0xBC197C81 EQ PUSH2 0x27F JUMPI DUP1 PUSH4 0xC01F9E37 EQ PUSH2 0x27A JUMPI DUP1 PUSH4 0xC28BC2FA EQ PUSH2 0x275 JUMPI DUP1 PUSH4 0xC59057E4 EQ PUSH2 0x270 JUMPI DUP1 PUSH4 0xD33219B4 EQ PUSH2 0x26B JUMPI DUP1 PUSH4 0xDD4E2BA5 EQ PUSH2 0x266 JUMPI DUP1 PUSH4 0xDEAAA7CC EQ PUSH2 0x261 JUMPI DUP1 PUSH4 0xE540D01D EQ PUSH2 0x25C JUMPI DUP1 PUSH4 0xEB9019D4 EQ PUSH2 0x257 JUMPI DUP1 PUSH4 0xECE40CC1 EQ PUSH2 0x252 JUMPI DUP1 PUSH4 0xF23A6E61 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0xF8CE560A EQ PUSH2 0x248 JUMPI PUSH4 0xFC0C546A SUB PUSH2 0xE JUMPI PUSH2 0x1C51 JUMP JUMPDEST PUSH2 0x1BAC JUMP JUMPDEST PUSH2 0x1B41 JUMP JUMPDEST PUSH2 0x1AEC JUMP JUMPDEST PUSH2 0x1A4C JUMP JUMPDEST PUSH2 0x19A3 JUMP JUMPDEST PUSH2 0x1968 JUMP JUMPDEST PUSH2 0x190A JUMP JUMPDEST PUSH2 0x18E1 JUMP JUMPDEST PUSH2 0x172A JUMP JUMPDEST PUSH2 0x1875 JUMP JUMPDEST PUSH2 0x1857 JUMP JUMPDEST PUSH2 0x17B7 JUMP JUMPDEST PUSH2 0x1799 JUMP JUMPDEST PUSH2 0x1762 JUMP JUMPDEST PUSH2 0x1746 JUMP JUMPDEST PUSH2 0x16B6 JUMP JUMPDEST PUSH2 0x168A JUMP JUMPDEST PUSH2 0x15B9 JUMP JUMPDEST PUSH2 0x159D JUMP JUMPDEST PUSH2 0x1572 JUMP JUMPDEST PUSH2 0x145A JUMP JUMPDEST PUSH2 0x1390 JUMP JUMPDEST PUSH2 0x131F JUMP JUMPDEST PUSH2 0x1286 JUMP JUMPDEST PUSH2 0x1231 JUMP JUMPDEST PUSH2 0x11BE JUMP JUMPDEST PUSH2 0x1190 JUMP JUMPDEST PUSH2 0x1121 JUMP JUMPDEST PUSH2 0x1099 JUMP JUMPDEST PUSH2 0x101C JUMP JUMPDEST PUSH2 0xFCA JUMP JUMPDEST PUSH2 0xF7D JUMP JUMPDEST PUSH2 0xF4D JUMP JUMPDEST PUSH2 0xEAF JUMP JUMPDEST PUSH2 0xE56 JUMP JUMPDEST PUSH2 0xE29 JUMP JUMPDEST PUSH2 0xDD1 JUMP JUMPDEST PUSH2 0xD96 JUMP JUMPDEST PUSH2 0xD5F JUMP JUMPDEST PUSH2 0xBF7 JUMP JUMPDEST PUSH2 0x9AD JUMP JUMPDEST PUSH2 0x771 JUMP JUMPDEST PUSH2 0x5F4 JUMP JUMPDEST PUSH2 0x50F JUMP JUMPDEST PUSH2 0x3EB JUMP JUMPDEST PUSH2 0x3C4 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH4 0xFFFFFFFF PUSH1 0xE0 SHL DUP2 AND DUP1 SWAP2 SUB PUSH2 0x3B4 JUMPI PUSH1 0x20 SWAP1 PUSH4 0x66DEFE77 PUSH1 0xE1 SHL DUP2 EQ SWAP1 DUP2 ISZERO PUSH2 0x3A3 JUMPI JUMPDEST DUP2 ISZERO PUSH2 0x392 JUMPI JUMPDEST DUP2 ISZERO PUSH2 0x381 JUMPI JUMPDEST POP PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ SWAP1 POP CODESIZE PUSH2 0x376 JUMP JUMPDEST PUSH4 0x2711897 PUSH1 0xE5 SHL DUP2 EQ SWAP2 POP PUSH2 0x36F JUMP JUMPDEST PUSH4 0x32A2AD43 PUSH1 0xE1 SHL DUP2 EQ SWAP2 POP PUSH2 0x368 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 SUB SLT PUSH2 0x3B4 JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH4 0xFFFFFFFF PUSH1 0x8 SLOAD PUSH1 0x30 SHR AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x407 PUSH2 0x2139 JUMP JUMPDEST PUSH1 0x64 DUP2 GT PUSH2 0x494 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 DUP2 PUSH2 0x421 PUSH2 0x2CEC JUMP JUMPDEST AND PUSH2 0x42A PUSH2 0x23A0 JUMP JUMPDEST SWAP3 DUP1 DUP4 GT PUSH2 0x474 JUMPI PUSH32 0x553476BF02EF2726E8CE5CED78D63E26E602E4A2257B1F559418E24B4633997 SWAP4 PUSH2 0x460 SWAP2 DUP5 AND SWAP1 PUSH2 0x2E12 JUMP JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE LOG1 STOP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0xD0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x243E5445 PUSH1 0xE0 SHL DUP3 MSTORE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x64 PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT PUSH2 0x4C6 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x4B6 JUMP JUMPDEST SWAP1 PUSH1 0x20 SWAP2 PUSH2 0x4EF DUP2 MLOAD DUP1 SWAP3 DUP2 DUP6 MSTORE DUP6 DUP1 DUP7 ADD SWAP2 ADD PUSH2 0x4B3 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND ADD ADD SWAP1 JUMP JUMPDEST SWAP1 PUSH1 0x20 PUSH2 0x50C SWAP3 DUP2 DUP2 MSTORE ADD SWAP1 PUSH2 0x4D6 JUMP JUMPDEST SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 DUP1 PUSH1 0x3 NOT CALLDATASIZE ADD SLT PUSH2 0x5F1 JUMPI PUSH1 0x40 MLOAD SWAP1 DUP1 PUSH1 0x3 SLOAD PUSH2 0x532 DUP2 PUSH2 0x1CAA JUMP JUMPDEST DUP1 DUP6 MSTORE SWAP2 PUSH1 0x1 SWAP2 DUP1 DUP4 AND SWAP1 DUP2 ISZERO PUSH2 0x5C7 JUMPI POP PUSH1 0x1 EQ PUSH2 0x56C JUMPI JUMPDEST PUSH2 0x568 DUP6 PUSH2 0x55C DUP2 DUP8 SUB DUP3 PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 DUP3 PUSH2 0x4FB JUMP JUMPDEST SUB SWAP1 RETURN JUMPDEST SWAP3 POP PUSH1 0x3 DUP4 MSTORE PUSH32 0xC2575A0E9E593C00F959F8C92F12DB2869C3395A3B0502D05E2516446F71F85B JUMPDEST DUP3 DUP5 LT PUSH2 0x5AF JUMPI POP POP POP DUP2 ADD PUSH1 0x20 ADD PUSH2 0x55C DUP3 PUSH2 0x568 PUSH2 0x54C JUMP JUMPDEST DUP1 SLOAD PUSH1 0x20 DUP6 DUP8 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP4 ADD SWAP3 DUP2 ADD PUSH2 0x594 JUMP JUMPDEST DUP7 SWAP6 POP PUSH2 0x568 SWAP7 SWAP4 POP PUSH1 0x20 SWAP3 POP PUSH2 0x55C SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 SWAP4 PUSH2 0x54C JUMP JUMPDEST DUP1 REVERT JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND SUB PUSH2 0x3B4 JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x662 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH2 0x639 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x662 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x662 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0xC0 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x662 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH2 0x100 DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x662 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST SWAP1 PUSH1 0x1F DUP1 NOT SWAP2 ADD AND DUP2 ADD SWAP1 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR PUSH2 0x662 JUMPI PUSH1 0x40 MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x702 DUP3 PUSH2 0x667 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x662 JUMPI PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST SWAP3 SWAP2 SWAP3 PUSH2 0x72B DUP3 PUSH2 0x704 JUMP JUMPDEST SWAP2 PUSH2 0x739 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0x6D4 JUMP JUMPDEST DUP3 SWAP5 DUP2 DUP5 MSTORE DUP2 DUP4 ADD GT PUSH2 0x3B4 JUMPI DUP3 DUP2 PUSH1 0x20 SWAP4 DUP5 PUSH1 0x0 SWAP7 ADD CALLDATACOPY ADD ADD MSTORE JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH2 0x3B4 JUMPI DUP2 PUSH1 0x20 PUSH2 0x50C SWAP4 CALLDATALOAD SWAP2 ADD PUSH2 0x71F JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x78D PUSH1 0x4 CALLDATALOAD PUSH2 0x628 JUMP JUMPDEST PUSH2 0x798 PUSH1 0x24 CALLDATALOAD PUSH2 0x628 JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x7B7 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x756 JUMP JUMPDEST POP PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0x7DC JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x7485328F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x662 JUMPI PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0x3B4 JUMPI DUP1 CALLDATALOAD SWAP2 PUSH2 0x81C DUP4 PUSH2 0x7EE JUMP JUMPDEST SWAP3 PUSH2 0x82A PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0x6D4 JUMP JUMPDEST DUP1 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0x3B4 JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0x854 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 DUP1 SWAP2 DUP4 CALLDATALOAD PUSH2 0x862 DUP2 PUSH2 0x628 JUMP JUMPDEST DUP2 MSTORE ADD SWAP2 ADD SWAP1 PUSH2 0x846 JUMP JUMPDEST DUP2 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0x3B4 JUMPI DUP1 CALLDATALOAD SWAP2 PUSH2 0x884 DUP4 PUSH2 0x7EE JUMP JUMPDEST SWAP3 PUSH2 0x892 PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0x6D4 JUMP JUMPDEST DUP1 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP3 PUSH1 0x5 SHL DUP3 ADD ADD SWAP3 DUP4 GT PUSH2 0x3B4 JUMPI DUP4 ADD SWAP1 JUMPDEST DUP3 DUP3 LT PUSH2 0x8BC JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP2 CALLDATALOAD DUP2 MSTORE SWAP1 DUP4 ADD SWAP1 DUP4 ADD PUSH2 0x8AE JUMP JUMPDEST SWAP1 DUP1 PUSH1 0x1F DUP4 ADD SLT ISZERO PUSH2 0x3B4 JUMPI DUP2 CALLDATALOAD SWAP1 PUSH2 0x8E3 DUP3 PUSH2 0x7EE JUMP JUMPDEST SWAP3 PUSH2 0x8F1 PUSH1 0x40 MLOAD SWAP5 DUP6 PUSH2 0x6D4 JUMP JUMPDEST DUP3 DUP5 MSTORE PUSH1 0x20 SWAP3 DUP4 DUP1 DUP7 ADD SWAP2 PUSH1 0x5 SHL DUP4 ADD ADD SWAP3 DUP1 DUP5 GT PUSH2 0x3B4 JUMPI DUP5 DUP4 ADD SWAP2 JUMPDEST DUP5 DUP4 LT PUSH2 0x91F JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x3B4 JUMPI DUP7 SWAP2 PUSH2 0x940 DUP5 DUP5 DUP1 SWAP5 DUP10 ADD ADD PUSH2 0x756 JUMP JUMPDEST DUP2 MSTORE ADD SWAP3 ADD SWAP2 PUSH2 0x90F JUMP JUMPDEST PUSH1 0x80 PUSH1 0x3 NOT DUP3 ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP2 PUSH1 0x4 CALLDATALOAD DUP4 DUP2 GT PUSH2 0x3B4 JUMPI DUP3 PUSH2 0x977 SWAP2 PUSH1 0x4 ADD PUSH2 0x805 JUMP JUMPDEST SWAP3 PUSH1 0x24 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x3B4 JUMPI DUP4 PUSH2 0x98F SWAP2 PUSH1 0x4 ADD PUSH2 0x86D JUMP JUMPDEST SWAP3 PUSH1 0x44 CALLDATALOAD SWAP2 DUP3 GT PUSH2 0x3B4 JUMPI PUSH2 0x9A6 SWAP2 PUSH1 0x4 ADD PUSH2 0x8CB JUMP JUMPDEST SWAP1 PUSH1 0x64 CALLDATALOAD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH2 0x9BB CALLDATASIZE PUSH2 0x94B JUMP JUMPDEST PUSH2 0x9C9 DUP2 DUP4 DUP6 DUP8 SWAP7 SWAP8 PUSH2 0x1D89 JUMP JUMPDEST SWAP3 PUSH2 0x9D3 DUP5 PUSH2 0x21EA JUMP JUMPDEST POP PUSH1 0xB SLOAD PUSH2 0x9F1 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP3 PUSH1 0x40 SWAP6 DUP7 MLOAD SWAP4 PUSH4 0x793D0649 PUSH1 0xE1 SHL DUP6 MSTORE PUSH1 0x20 SWAP1 DUP2 DUP7 PUSH1 0x4 DUP2 DUP11 GAS STATICCALL SWAP6 DUP7 ISZERO PUSH2 0xBA6 JUMPI PUSH1 0x0 SWAP7 PUSH2 0xBD8 JUMPI JUMPDEST POP PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT ADDRESS PUSH1 0x60 SHL AND XOR SWAP6 DUP2 DUP10 MLOAD DUP1 SWAP3 PUSH4 0xB1C5F427 PUSH1 0xE0 SHL DUP3 MSTORE DUP2 DUP1 PUSH2 0xA53 DUP13 DUP11 DUP11 DUP14 PUSH1 0x4 DUP7 ADD PUSH2 0x3AF5 JUMP JUMPDEST SUB SWAP2 GAS STATICCALL SWAP2 DUP3 ISZERO PUSH2 0xBA6 JUMPI PUSH1 0x0 SWAP3 PUSH2 0xBAB JUMPI JUMPDEST POP POP PUSH2 0xA7C DUP8 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE PUSH1 0xB SLOAD PUSH2 0xA92 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9E5 JUMP JUMPDEST SWAP1 DUP2 EXTCODESIZE ISZERO PUSH2 0x3B4 JUMPI PUSH1 0x0 DUP1 SWAP5 PUSH2 0xABE DUP8 DUP12 MLOAD SWAP10 DUP11 SWAP8 DUP9 SWAP7 DUP8 SWAP6 PUSH4 0x8F2A0BB PUSH1 0xE4 SHL DUP8 MSTORE PUSH1 0x4 DUP8 ADD PUSH2 0x3B3B JUMP JUMPDEST SUB SWAP3 GAS CALL SWAP1 DUP2 ISZERO PUSH2 0xBA6 JUMPI PUSH2 0xAE2 SWAP3 PUSH2 0xADD SWAP3 PUSH2 0xB8D JUMPI JUMPDEST POP TIMESTAMP PUSH2 0x229C JUMP JUMPDEST PUSH2 0x2B60 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 AND ISZERO PUSH2 0xB7C JUMPI SWAP2 PUSH32 0x9A2E42FD6722813D69113E7D0079D3D940171428DF7373DF9C7F7617CFDA2892 PUSH2 0xB6B DUP5 PUSH2 0xB4D PUSH2 0x568 SWAP7 PUSH1 0x1 PUSH2 0xB33 DUP9 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST ADD SWAP1 PUSH6 0xFFFFFFFFFFFF AND PUSH6 0xFFFFFFFFFFFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE JUMP JUMPDEST DUP4 MLOAD DUP6 DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x40 DUP3 ADD SWAP1 JUMP JUMPDEST SUB SWAP1 LOG1 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST DUP3 MLOAD PUSH4 0x48442523 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST DUP1 PUSH2 0xB9A PUSH2 0xBA0 SWAP3 PUSH2 0x64F JUMP JUMPDEST DUP1 PUSH2 0x3B9 JUMP JUMPDEST CODESIZE PUSH2 0xAD6 JUMP JUMPDEST PUSH2 0x2394 JUMP JUMPDEST PUSH2 0xBCA SWAP3 POP DUP1 RETURNDATASIZE LT PUSH2 0xBD1 JUMPI JUMPDEST PUSH2 0xBC2 DUP2 DUP4 PUSH2 0x6D4 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x254B JUMP JUMPDEST CODESIZE DUP1 PUSH2 0xA66 JUMP JUMPDEST POP RETURNDATASIZE PUSH2 0xBB8 JUMP JUMPDEST PUSH2 0xBF0 SWAP2 SWAP7 POP DUP3 RETURNDATASIZE DUP5 GT PUSH2 0xBD1 JUMPI PUSH2 0xBC2 DUP2 DUP4 PUSH2 0x6D4 JUMP JUMPDEST SWAP5 CODESIZE PUSH2 0xA1C JUMP JUMPDEST PUSH2 0xC00 CALLDATASIZE PUSH2 0x94B JUMP JUMPDEST PUSH2 0xC0E DUP2 DUP4 DUP6 DUP8 SWAP6 SWAP8 PUSH2 0x1D89 JUMP JUMPDEST SWAP3 PUSH2 0xC18 DUP5 PUSH2 0x223C JUMP JUMPDEST POP PUSH2 0xC43 PUSH2 0xC30 DUP6 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0xFF PUSH1 0xF0 SHL NOT AND PUSH1 0x1 PUSH1 0xF0 SHL OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 DUP5 AND ADDRESS SUB PUSH2 0xCF5 JUMPI JUMPDEST SWAP5 PUSH2 0xC69 SWAP3 SWAP2 PUSH2 0x568 SWAP7 DUP7 PUSH2 0x3B89 JUMP JUMPDEST PUSH1 0xB SLOAD ADDRESS SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO DUP1 PUSH2 0xCD0 JUMPI JUMPDEST PUSH2 0xCC1 JUMPI JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x712AE1383F79AC853F8D882153778E0260EF8F03B504E2866E0593E04D2B291F SWAP1 PUSH1 0x20 SWAP1 LOG1 PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST PUSH2 0xCCB PUSH1 0x0 PUSH1 0x5 SSTORE JUMP JUMPDEST PUSH2 0xC85 JUMP JUMPDEST POP PUSH2 0xCF0 PUSH2 0xCEC PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND SWAP1 PUSH1 0x80 SHR EQ SWAP1 JUMP JUMPDEST ISZERO SWAP1 JUMP JUMPDEST PUSH2 0xC80 JUMP JUMPDEST SWAP3 SWAP1 SWAP4 SWAP2 PUSH1 0x0 JUMPDEST DUP5 MLOAD DUP2 LT ISZERO PUSH2 0xD55 JUMPI PUSH2 0xD31 SWAP1 ADDRESS PUSH2 0xD27 PUSH2 0x9E5 PUSH2 0xD1A DUP5 DUP11 PUSH2 0x1E5F JUMP JUMPDEST MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST EQ PUSH2 0xD36 JUMPI PUSH2 0x1E3A JUMP JUMPDEST PUSH2 0xCFC JUMP JUMPDEST PUSH2 0xD50 PUSH2 0xD43 DUP3 DUP11 PUSH2 0x1E5F JUMP JUMPDEST MLOAD PUSH1 0x20 DUP2 MLOAD SWAP2 ADD KECCAK256 PUSH2 0x2F4C JUMP JUMPDEST PUSH2 0x1E3A JUMP JUMPDEST POP SWAP2 SWAP4 SWAP1 SWAP3 PUSH2 0xC59 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0xA0 SHR AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH32 0x3E83946653575F9A39005E1545185629E92736B7528AB20CA3816F315424A811 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH6 0xFFFFFFFFFFFF PUSH1 0x8 SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x8 GT ISZERO PUSH2 0xE17 JUMPI JUMP JUMPDEST PUSH2 0xDF7 JUMP JUMPDEST SWAP1 PUSH1 0x8 DUP3 LT ISZERO PUSH2 0xE17 JUMPI MSTORE JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH2 0xE47 PUSH1 0x4 CALLDATALOAD PUSH2 0x3090 JUMP JUMPDEST PUSH2 0xE54 PUSH1 0x40 MLOAD DUP1 SWAP3 PUSH2 0xE1C JUMP JUMPDEST RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH1 0xFF PUSH2 0xEA3 PUSH1 0x24 CALLDATALOAD PUSH2 0xE7A DUP2 PUSH2 0x628 JUMP JUMPDEST PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x9 DUP5 MSTORE PUSH1 0x3 PUSH1 0x40 PUSH1 0x0 KECCAK256 ADD SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD AND PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH2 0xEBD CALLDATASIZE PUSH2 0x94B JUMP JUMPDEST SWAP3 PUSH2 0xECD DUP5 DUP4 DUP6 DUP5 SWAP7 SWAP6 SWAP7 PUSH2 0x1D89 JUMP JUMPDEST PUSH2 0xED6 DUP2 PUSH2 0x3090 JUMP JUMPDEST PUSH1 0x8 DUP2 LT ISZERO PUSH2 0xE17 JUMPI ISZERO DUP1 PUSH2 0xF2E JUMPI JUMPDEST ISZERO PUSH2 0xF0A JUMPI PUSH2 0x568 PUSH2 0xEFA DUP7 DUP7 DUP7 DUP7 PUSH2 0x39B4 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x8FE5D8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE CALLER PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 SWAP1 REVERT JUMPDEST SUB SWAP1 REVERT JUMPDEST POP DUP1 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD AND CALLER EQ PUSH2 0xEE6 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x568 PUSH2 0xF69 PUSH2 0x246C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 PUSH1 0x20 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x4D6 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH2 0x568 PUSH1 0x2 PUSH1 0x1 DUP5 ADD SLOAD SWAP4 ADD SLOAD PUSH1 0x40 MLOAD SWAP4 DUP5 SWAP4 DUP5 PUSH1 0x40 SWAP2 SWAP5 SWAP4 SWAP3 PUSH1 0x60 DUP3 ADD SWAP6 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x568 PUSH1 0x40 MLOAD PUSH2 0xFEA DUP2 PUSH2 0x667 JUMP JUMPDEST PUSH1 0x1 DUP2 MSTORE PUSH1 0x31 PUSH1 0xF8 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 PUSH1 0x20 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x4D6 JUMP JUMPDEST PUSH1 0x24 CALLDATALOAD SWAP1 PUSH1 0xFF DUP3 AND DUP3 SUB PUSH2 0x3B4 JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH2 0x1064 PUSH2 0x103A PUSH2 0x100C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1046 DUP2 PUSH2 0x682 JUMP JUMPDEST PUSH1 0x0 DUP2 MSTORE PUSH1 0x40 MLOAD SWAP2 PUSH2 0x1057 DUP4 PUSH2 0x682 JUMP JUMPDEST PUSH1 0x0 DUP4 MSTORE CALLER PUSH1 0x4 CALLDATALOAD PUSH2 0x1FEA JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST SWAP2 DUP2 PUSH1 0x1F DUP5 ADD SLT ISZERO PUSH2 0x3B4 JUMPI DUP3 CALLDATALOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT PUSH2 0x3B4 JUMPI PUSH1 0x20 DUP4 DUP2 DUP7 ADD SWAP6 ADD ADD GT PUSH2 0x3B4 JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0xC0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x10B2 PUSH2 0x100C JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH2 0x10BF DUP3 PUSH2 0x628 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 PUSH1 0x64 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x10E0 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x106C JUMP JUMPDEST PUSH1 0x84 CALLDATALOAD DUP5 DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x10F8 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x756 JUMP JUMPDEST SWAP2 PUSH1 0xA4 CALLDATALOAD SWAP5 DUP6 GT PUSH2 0x3B4 JUMPI PUSH2 0x568 SWAP6 PUSH2 0x1118 PUSH2 0xEFA SWAP7 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x756 JUMP JUMPDEST SWAP5 PUSH1 0x4 CALLDATALOAD PUSH2 0x1E78 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x113A PUSH2 0x100C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 PUSH1 0x44 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x115B SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x106C JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x64 CALLDATALOAD SWAP4 DUP5 GT PUSH2 0x3B4 JUMPI PUSH2 0x1186 PUSH2 0x1064 SWAP4 PUSH2 0x117E PUSH1 0x20 SWAP7 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x756 JUMP JUMPDEST SWAP4 CALLDATASIZE SWAP2 PUSH2 0x71F JUMP JUMPDEST SWAP1 CALLER PUSH1 0x4 CALLDATALOAD PUSH2 0x1FEA JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH2 0x1064 PUSH1 0x4 CALLDATALOAD PUSH2 0x25D7 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 AND SUB PUSH2 0x3B4 JUMPI JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x11DB DUP2 PUSH2 0x11AE JUMP JUMPDEST PUSH2 0x11E3 PUSH2 0x2139 JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH32 0xC565B045403DC03C2EEA82B81A0465EDAD9E2E7FC4D97E11421C209DA93D7A93 PUSH1 0x40 DUP1 MLOAD SWAP4 PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP6 AND DUP7 MSTORE AND SWAP4 DUP5 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH6 0xFFFFFFFFFFFF NOT AND OR PUSH1 0x8 SSTORE STOP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x124A PUSH2 0x100C JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x3B4 JUMPI PUSH1 0x20 SWAP2 PUSH2 0x1279 PUSH2 0x1272 PUSH2 0x1064 SWAP4 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x106C JUMP JUMPDEST CALLDATASIZE SWAP2 PUSH2 0x71F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP2 PUSH2 0x1057 DUP4 PUSH2 0x682 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x4 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x12B7 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x805 JUMP JUMPDEST SWAP1 PUSH1 0x24 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x12D0 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x86D JUMP JUMPDEST SWAP2 PUSH1 0x44 CALLDATALOAD DUP3 DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x12E9 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x8CB JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD SWAP3 DUP4 GT PUSH2 0x3B4 JUMPI CALLDATASIZE PUSH1 0x23 DUP5 ADD SLT ISZERO PUSH2 0x3B4 JUMPI PUSH2 0x568 SWAP4 PUSH2 0x1319 PUSH2 0xEFA SWAP5 CALLDATASIZE SWAP1 PUSH1 0x24 DUP2 PUSH1 0x4 ADD CALLDATALOAD SWAP2 ADD PUSH2 0x71F JUMP JUMPDEST SWAP3 PUSH2 0x3362 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x133C DUP2 PUSH2 0x628 JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST SWAP1 DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP1 SWAP4 ADD SWAP4 ADD SWAP2 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0x137C JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 MLOAD DUP6 MSTORE SWAP4 DUP2 ADD SWAP4 SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x136E JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x142B PUSH2 0x13CD PUSH32 0x0 PUSH2 0x2824 JUMP JUMPDEST PUSH2 0x568 PUSH2 0x13F9 PUSH32 0x0 PUSH2 0x291B JUMP JUMPDEST PUSH2 0x1439 PUSH1 0x40 MLOAD SWAP2 PUSH2 0x1409 DUP4 PUSH2 0x682 JUMP JUMPDEST PUSH1 0x0 DUP4 MSTORE PUSH1 0x40 MLOAD SWAP6 DUP7 SWAP6 PUSH1 0xF PUSH1 0xF8 SHL DUP8 MSTORE PUSH1 0xE0 PUSH1 0x20 DUP9 ADD MSTORE PUSH1 0xE0 DUP8 ADD SWAP1 PUSH2 0x4D6 JUMP JUMPDEST SWAP1 DUP6 DUP3 SUB PUSH1 0x40 DUP8 ADD MSTORE PUSH2 0x4D6 JUMP JUMPDEST SWAP1 CHAINID PUSH1 0x60 DUP6 ADD MSTORE ADDRESS PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0x0 PUSH1 0xA0 DUP6 ADD MSTORE DUP4 DUP3 SUB PUSH1 0xC0 DUP6 ADD MSTORE PUSH2 0x135C JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x80 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x1476 PUSH2 0x100C JUMP JUMPDEST SWAP1 PUSH1 0x44 CALLDATALOAD SWAP2 PUSH2 0x1484 DUP4 PUSH2 0x628 JUMP JUMPDEST PUSH1 0x64 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0xCEC PUSH2 0x14A9 PUSH2 0x1536 SWAP3 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x756 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE PUSH2 0x1530 SWAP1 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 ADD SWAP2 PUSH32 0xF2AAD550CF55F045CB27E9C559F9889FDFB6E6CDAA032301D6EA397784AE51D7 DUP4 MSTORE DUP9 PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0xFF DUP9 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP11 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xA0 DUP2 MSTORE PUSH2 0x1528 DUP2 PUSH2 0x69D JUMP JUMPDEST MLOAD SWAP1 KECCAK256 PUSH2 0x26EA JUMP JUMPDEST DUP7 PUSH2 0x29DD JUMP JUMPDEST PUSH2 0x1551 JUMPI SWAP1 PUSH2 0xEFA SWAP2 PUSH2 0x568 SWAP4 PUSH2 0x154B PUSH2 0x1CE4 JUMP JUMPDEST SWAP3 PUSH2 0x1F6E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x94AB6C07 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH2 0x158D PUSH2 0x23A0 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 MLOAD SWAP2 AND DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x64 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x15D6 DUP2 PUSH2 0x628 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x3B4 JUMPI PUSH1 0x44 SWAP2 PUSH2 0x15FA PUSH1 0x20 SWAP3 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x756 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP3 DUP4 SWAP2 DUP3 SWAP1 PUSH32 0x0 AND GAS STATICCALL DUP1 ISZERO PUSH2 0xBA6 JUMPI PUSH2 0x568 SWAP2 PUSH1 0x0 SWAP2 PUSH2 0x166C JUMPI JUMPDEST POP PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST PUSH2 0x1684 SWAP2 POP PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0xBD1 JUMPI PUSH2 0xBC2 DUP2 DUP4 PUSH2 0x6D4 JUMP JUMPDEST CODESIZE PUSH2 0x165B JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB PUSH2 0x16AD PUSH2 0x2CEC JUMP JUMPDEST AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x16D3 DUP2 PUSH2 0x628 JUMP JUMPDEST PUSH2 0x16DB PUSH2 0x2139 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH32 0x8F74EA46EF7894F65EABFB5E6E695DE773A000B47C529AB559178069B226401 PUSH1 0x40 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP1 SWAP5 AND SWAP4 DUP2 MLOAD SWAP1 DUP5 AND DUP2 MSTORE DUP5 PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND OR PUSH1 0xB SSTORE STOP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH2 0x1064 PUSH2 0x173D CALLDATASIZE PUSH2 0x94B JUMP JUMPDEST SWAP3 SWAP2 SWAP1 SWAP2 PUSH2 0x1D89 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x20 PUSH6 0xFFFFFFFFFFFF PUSH1 0x1 PUSH1 0x40 PUSH1 0x0 KECCAK256 ADD SLOAD AND PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH1 0x7 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x17D3 PUSH1 0x4 CALLDATALOAD PUSH2 0x628 JUMP JUMPDEST PUSH2 0x17DE PUSH1 0x24 CALLDATALOAD PUSH2 0x628 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x44 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x17FE SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x86D JUMP JUMPDEST POP PUSH1 0x64 CALLDATALOAD DUP2 DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x1817 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x86D JUMP JUMPDEST POP PUSH1 0x84 CALLDATALOAD SWAP1 DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x1830 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x756 JUMP JUMPDEST POP PUSH2 0x568 PUSH2 0x183C PUSH2 0x21AD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH2 0x1064 PUSH1 0x4 CALLDATALOAD PUSH2 0x1E03 JUMP JUMPDEST PUSH1 0x60 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x188D DUP2 PUSH2 0x628 JUMP JUMPDEST PUSH1 0x44 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x3B4 JUMPI PUSH1 0x0 DUP1 SWAP2 PUSH2 0x18B4 PUSH2 0x21 SWAP5 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x106C JUMP JUMPDEST SWAP1 PUSH2 0x18BD PUSH2 0x2139 JUMP JUMPDEST DUP2 PUSH1 0x40 MLOAD SWAP3 DUP4 SWAP3 DUP4 CALLDATACOPY DUP2 ADD DUP5 DUP2 MSTORE SUB SWAP2 PUSH1 0x24 CALLDATALOAD SWAP1 GAS CALL PUSH2 0x18DB PUSH2 0x2109 JUMP JUMPDEST SWAP1 PUSH2 0x26C1 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0xB SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x568 PUSH1 0x40 MLOAD PUSH2 0x192A DUP2 PUSH2 0x667 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH32 0x737570706F72743D627261766F2671756F72756D3D666F722C6162737461696E PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD SWAP2 DUP3 SWAP2 PUSH1 0x20 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0x4D6 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x20 PUSH1 0x40 MLOAD PUSH32 0xF2AAD550CF55F045CB27E9C559F9889FDFB6E6CDAA032301D6EA397784AE51D7 DUP2 MSTORE RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND SWAP2 DUP3 DUP2 SUB PUSH2 0x3B4 JUMPI PUSH2 0x19CF PUSH2 0x2139 JUMP JUMPDEST DUP3 ISZERO PUSH2 0x1A33 JUMPI PUSH32 0x7E3F7F0708A84DE9203036ABAA450DCCC85AD5FF52F78C170F3EDB55CF5E8828 PUSH1 0x40 PUSH10 0xFFFFFFFF000000000000 SWAP4 PUSH1 0x8 SLOAD SWAP6 DUP3 MLOAD SWAP2 DUP8 PUSH1 0x30 SHR AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE LOG1 PUSH1 0x30 SHL AND SWAP1 PUSH10 0xFFFFFFFF000000000000 NOT AND OR PUSH1 0x8 SSTORE PUSH1 0x0 DUP1 RETURN JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xF1CFBF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x40 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x44 PUSH1 0x20 PUSH1 0x4 CALLDATALOAD PUSH2 0x1A6D DUP2 PUSH2 0x628 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD PUSH2 0x1A7B DUP2 PUSH2 0x682 JUMP JUMPDEST MSTORE PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP3 DUP4 SWAP2 DUP3 SWAP1 PUSH32 0x0 AND GAS STATICCALL DUP1 ISZERO PUSH2 0xBA6 JUMPI PUSH2 0x568 SWAP2 PUSH1 0x0 SWAP2 PUSH2 0x166C JUMPI POP PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 ADD SWAP1 JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x4 CALLDATALOAD PUSH2 0x1B08 PUSH2 0x2139 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP4 SWAP1 MSTORE PUSH32 0xCCB45DA8D5717E6C4544694297C4BA5CF151D455C9BB0ED4FC7A38411BC05461 SWAP2 LOG1 PUSH1 0x7 SSTORE STOP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0xA0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH2 0x1B5D PUSH1 0x4 CALLDATALOAD PUSH2 0x628 JUMP JUMPDEST PUSH2 0x1B68 PUSH1 0x24 CALLDATALOAD PUSH2 0x628 JUMP JUMPDEST PUSH1 0x84 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT PUSH2 0x3B4 JUMPI PUSH2 0x1B87 SWAP1 CALLDATASIZE SWAP1 PUSH1 0x4 ADD PUSH2 0x756 JUMP JUMPDEST POP PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0x7DC JUMPI PUSH1 0x40 MLOAD PUSH4 0xF23A6E61 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x20 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2394E7A3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP1 CALLDATALOAD SWAP1 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH1 0x20 DUP2 PUSH1 0x24 DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL DUP1 ISZERO PUSH2 0xBA6 JUMPI PUSH2 0x568 SWAP3 PUSH2 0xEFA SWAP3 PUSH1 0x0 SWAP3 PUSH2 0x1C2D JUMPI JUMPDEST POP PUSH2 0x1C27 SWAP1 PUSH2 0x25D7 JUMP JUMPDEST SWAP1 PUSH2 0x2FFF JUMP JUMPDEST PUSH2 0x1C27 SWAP2 SWAP3 POP PUSH2 0x1C4A SWAP1 PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0xBD1 JUMPI PUSH2 0xBC2 DUP2 DUP4 PUSH2 0x6D4 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x1C1D JUMP JUMPDEST CALLVALUE PUSH2 0x3B4 JUMPI PUSH1 0x0 CALLDATASIZE PUSH1 0x3 NOT ADD SLT PUSH2 0x3B4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP1 RETURN JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0x7DC JUMPI JUMP JUMPDEST SWAP1 PUSH1 0x1 DUP3 DUP2 SHR SWAP3 AND DUP1 ISZERO PUSH2 0x1CDA JUMPI JUMPDEST PUSH1 0x20 DUP4 LT EQ PUSH2 0x1CC4 JUMPI JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP2 PUSH1 0x7F AND SWAP2 PUSH2 0x1CB9 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x1CF1 DUP3 PUSH2 0x682 JUMP JUMPDEST PUSH1 0x0 DUP3 MSTORE JUMP JUMPDEST SWAP1 DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP1 SWAP4 ADD SWAP4 ADD SWAP2 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0x1D17 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 MSTORE SWAP4 DUP2 ADD SWAP4 SWAP3 DUP2 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x1D09 JUMP JUMPDEST SWAP1 DUP2 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 SWAP3 ADD SWAP2 DUP3 DUP2 DUP4 PUSH1 0x5 SHL DUP6 ADD SWAP6 ADD SWAP4 PUSH1 0x0 SWAP2 JUMPDEST DUP5 DUP4 LT PUSH2 0x1D5F JUMPI POP POP POP POP POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 SWAP6 DUP5 DUP1 PUSH2 0x1D79 DUP4 DUP6 PUSH1 0x1 SWAP6 SUB DUP8 MSTORE DUP11 MLOAD PUSH2 0x4D6 JUMP JUMPDEST SWAP9 ADD SWAP4 ADD SWAP4 ADD SWAP2 SWAP5 SWAP4 SWAP3 SWAP1 PUSH2 0x1D4F JUMP JUMPDEST SWAP3 SWAP1 PUSH2 0x1DD5 SWAP3 PUSH2 0x1DE7 SWAP3 PUSH1 0x40 MLOAD SWAP5 DUP6 SWAP3 PUSH2 0x1DC5 PUSH2 0x1DB2 PUSH1 0x20 DUP7 ADD SWAP10 PUSH1 0x80 DUP12 MSTORE PUSH1 0xA0 DUP8 ADD SWAP1 PUSH2 0x1CF7 JUMP JUMPDEST PUSH1 0x1F NOT SWAP7 DUP8 DUP8 DUP4 SUB ADD PUSH1 0x40 DUP9 ADD MSTORE PUSH2 0x135C JUMP JUMPDEST SWAP1 DUP6 DUP6 DUP4 SUB ADD PUSH1 0x60 DUP7 ADD MSTORE PUSH2 0x1D34 JUMP JUMPDEST SWAP1 PUSH1 0x80 DUP4 ADD MSTORE SUB SWAP1 DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0x6D4 JUMP JUMPDEST MLOAD SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 PUSH4 0xFFFFFFFF DUP3 PUSH1 0xD0 SHR AND SWAP2 PUSH1 0xA0 SHR AND ADD DUP2 DUP2 GT PUSH2 0x1E35 JUMPI AND SWAP1 JUMP JUMPDEST PUSH2 0x1DED JUMP JUMPDEST PUSH1 0x0 NOT DUP2 EQ PUSH2 0x1E35 JUMPI PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 MLOAD DUP3 LT ISZERO PUSH2 0x1E73 JUMPI PUSH1 0x20 SWAP2 PUSH1 0x5 SHL ADD ADD SWAP1 JUMP JUMPDEST PUSH2 0x1E49 JUMP JUMPDEST SWAP4 SWAP1 SWAP3 SWAP2 SWAP7 SWAP6 PUSH2 0xCEC PUSH2 0x1F32 SWAP2 PUSH2 0x1F2C DUP11 PUSH2 0x1EAE DUP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP1 SLOAD SWAP1 PUSH1 0x1 DUP3 ADD SWAP1 SSTORE SWAP1 JUMP JUMPDEST PUSH2 0x1EB9 CALLDATASIZE DUP9 DUP11 PUSH2 0x71F JUMP JUMPDEST PUSH1 0x20 DUP2 MLOAD SWAP2 ADD KECCAK256 DUP12 MLOAD PUSH1 0x20 DUP14 ADD KECCAK256 SWAP1 PUSH1 0x40 MLOAD SWAP3 PUSH1 0x20 DUP5 ADD SWAP5 PUSH32 0x3E83946653575F9A39005E1545185629E92736B7528AB20CA3816F315424A811 DUP7 MSTORE DUP14 PUSH1 0x40 DUP7 ADD MSTORE PUSH1 0xFF DUP14 AND PUSH1 0x60 DUP7 ADD MSTORE PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD MSTORE PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP3 ADD MSTORE PUSH1 0xE0 DUP2 MSTORE PUSH2 0x1528 DUP2 PUSH2 0x6B8 JUMP JUMPDEST DUP11 PUSH2 0x29DD JUMP JUMPDEST PUSH2 0x1F4D JUMPI PUSH2 0x50C SWAP6 SWAP7 SWAP2 PUSH2 0x1F47 SWAP2 CALLDATASIZE SWAP2 PUSH2 0x71F JUMP JUMPDEST SWAP3 PUSH2 0x1FEA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x94AB6C07 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP2 PUSH2 0x50C SWAP4 SWAP2 PUSH1 0x40 MLOAD SWAP4 PUSH2 0x1F81 DUP6 PUSH2 0x682 JUMP JUMPDEST PUSH1 0x0 DUP6 MSTORE PUSH2 0x1FEA JUMP JUMPDEST SWAP4 SWAP1 SWAP3 PUSH1 0xFF PUSH2 0x1FB6 SWAP4 PUSH2 0x50C SWAP8 SWAP6 DUP8 MSTORE AND PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x40 DUP6 ADD MSTORE PUSH1 0xA0 PUSH1 0x60 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD SWAP1 PUSH2 0x4D6 JUMP JUMPDEST SWAP2 PUSH1 0x80 DUP2 DUP5 SUB SWAP2 ADD MSTORE PUSH2 0x4D6 JUMP JUMPDEST SWAP1 SWAP3 PUSH1 0xFF PUSH1 0x80 SWAP4 PUSH2 0x50C SWAP7 SWAP6 DUP5 MSTORE AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD MSTORE DUP2 PUSH1 0x60 DUP3 ADD MSTORE ADD SWAP1 PUSH2 0x4D6 JUMP JUMPDEST SWAP3 SWAP2 SWAP1 PUSH2 0x1FF6 DUP5 PUSH2 0x3090 JUMP JUMPDEST PUSH1 0x8 DUP2 LT ISZERO PUSH2 0xE17 JUMPI PUSH1 0x2 PUSH1 0x1 PUSH1 0xFF DUP4 AND SHL AND ISZERO PUSH2 0x20DB JUMPI POP DUP4 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH2 0x2052 PUSH2 0x204A PUSH2 0x2044 PUSH2 0x2039 PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH6 0xFFFFFFFFFFFF SWAP1 SLOAD PUSH1 0xA0 SHR AND SWAP1 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST DUP4 PUSH2 0x255A JUMP JUMPDEST DUP4 DUP4 DUP8 PUSH2 0x22A9 JUMP JUMPDEST SWAP5 DUP1 MLOAD ISZERO PUSH1 0x0 EQ PUSH2 0x209F JUMPI POP PUSH2 0x2099 PUSH32 0xB8E138887D0AA13BAB447E82DE9D5C1777041ECD21CA36BA824FF1E6C07DDDA4 SWAP4 DUP7 PUSH1 0x40 MLOAD SWAP5 DUP6 SWAP5 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP8 DUP6 PUSH2 0x1FC4 JUMP JUMPDEST SUB SWAP1 LOG2 SWAP1 JUMP JUMPDEST PUSH2 0x2099 SWAP1 PUSH32 0xE2BABFBAC5889A709B63BB7F598B324E08BC5A4FB9EC647FB3CBC9EC07EB8712 SWAP5 DUP8 PUSH1 0x40 MLOAD SWAP6 DUP7 SWAP6 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND SWAP9 DUP7 PUSH2 0x1F8A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x64 SWAP2 PUSH2 0x2100 SWAP1 PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0xE1C JUMP JUMPDEST PUSH1 0x2 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x2134 JUMPI RETURNDATASIZE SWAP1 PUSH2 0x211A DUP3 PUSH2 0x704 JUMP JUMPDEST SWAP2 PUSH2 0x2128 PUSH1 0x40 MLOAD SWAP4 DUP5 PUSH2 0x6D4 JUMP JUMPDEST DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY JUMP JUMPDEST PUSH1 0x60 SWAP1 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP2 SUB PUSH2 0x2195 JUMPI ADDRESS SUB PUSH2 0x2154 JUMPI JUMP JUMPDEST PUSH2 0x215D CALLDATASIZE PUSH2 0x704 JUMP JUMPDEST PUSH2 0x216A PUSH1 0x40 MLOAD SWAP2 DUP3 PUSH2 0x6D4 JUMP JUMPDEST CALLDATASIZE DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP1 CALLDATASIZE PUSH1 0x0 DUP4 CALLDATACOPY PUSH1 0x0 PUSH1 0x20 CALLDATASIZE DUP4 ADD ADD MSTORE MLOAD SWAP1 KECCAK256 JUMPDEST DUP1 PUSH2 0x218D PUSH2 0x2FA7 JUMP JUMPDEST SUB PUSH2 0x2184 JUMPI POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x47096E47 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0xB SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ADDRESS SUB PUSH2 0x7DC JUMPI PUSH4 0xBC197C81 PUSH1 0xE0 SHL SWAP1 JUMP JUMPDEST PUSH1 0x40 SWAP1 PUSH2 0x21E6 PUSH1 0x0 SWAP4 SWAP6 SWAP5 PUSH1 0x60 DUP4 ADD SWAP7 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP1 PUSH2 0xE1C JUMP JUMPDEST ADD MSTORE JUMP JUMPDEST PUSH2 0x21F3 DUP2 PUSH2 0x3090 JUMP JUMPDEST SWAP1 PUSH1 0x8 DUP3 LT ISZERO PUSH2 0xE17 JUMPI PUSH1 0x10 PUSH1 0x1 PUSH1 0xFF DUP5 AND SHL AND ISZERO PUSH2 0x2210 JUMPI POP SWAP1 JUMP JUMPDEST PUSH2 0x2233 PUSH1 0x64 SWAP3 PUSH1 0x40 MLOAD SWAP3 PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP5 MSTORE PUSH1 0x4 DUP5 ADD MSTORE PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0xE1C JUMP JUMPDEST PUSH1 0x10 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST PUSH2 0x2245 DUP2 PUSH2 0x3090 JUMP JUMPDEST SWAP1 PUSH1 0x8 DUP3 LT ISZERO PUSH2 0xE17 JUMPI PUSH1 0x30 PUSH1 0x1 PUSH1 0xFF DUP5 AND SHL AND ISZERO PUSH2 0x2262 JUMPI POP SWAP1 JUMP JUMPDEST PUSH2 0x2285 PUSH1 0x64 SWAP3 PUSH1 0x40 MLOAD SWAP3 PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP5 MSTORE PUSH1 0x4 DUP5 ADD MSTORE PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0xE1C JUMP JUMPDEST PUSH1 0x30 PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST SWAP1 PUSH1 0x1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x1E35 JUMPI JUMP JUMPDEST SWAP2 SWAP1 DUP3 ADD DUP1 SWAP3 GT PUSH2 0x1E35 JUMPI JUMP JUMPDEST PUSH2 0x22C0 SWAP1 SWAP3 SWAP2 SWAP3 PUSH1 0x0 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SWAP2 PUSH1 0x3 DUP4 ADD PUSH2 0x22EB PUSH2 0x22E4 DUP4 DUP4 SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x2373 JUMPI PUSH2 0x2311 PUSH1 0xFF SWAP4 SWAP3 PUSH2 0x231E SWAP3 SWAP1 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE JUMP JUMPDEST AND DUP1 PUSH2 0x2335 JUMPI POP PUSH2 0x2330 DUP3 DUP3 SLOAD PUSH2 0x229C JUMP JUMPDEST SWAP1 SSTORE SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 SUB PUSH2 0x234C JUMPI POP PUSH1 0x1 ADD PUSH2 0x2330 DUP3 DUP3 SLOAD PUSH2 0x229C JUMP JUMPDEST PUSH1 0x2 SUB PUSH2 0x2361 JUMPI PUSH1 0x2 ADD PUSH2 0x2330 DUP3 DUP3 SLOAD PUSH2 0x229C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3599BE1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x71C6AF49 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY RETURNDATASIZE SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x24776B7D PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x20 DUP2 PUSH1 0x4 DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL PUSH1 0x0 SWAP2 DUP2 PUSH2 0x23F7 JUMPI JUMPDEST POP PUSH2 0x50C JUMPI POP PUSH2 0x50C NUMBER PUSH2 0x2B60 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x20 DUP3 RETURNDATASIZE DUP3 GT PUSH2 0x242B JUMPI JUMPDEST DUP2 PUSH2 0x2411 PUSH1 0x20 SWAP4 DUP4 PUSH2 0x6D4 JUMP JUMPDEST DUP2 ADD SUB SLT PUSH2 0x5F1 JUMPI POP MLOAD PUSH2 0x2424 DUP2 PUSH2 0x11AE JUMP JUMPDEST SWAP1 CODESIZE PUSH2 0x23E8 JUMP JUMPDEST RETURNDATASIZE SWAP2 POP PUSH2 0x2404 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 PUSH2 0x2440 DUP3 PUSH2 0x667 JUMP JUMPDEST PUSH1 0x1D DUP3 MSTORE PUSH32 0x6D6F64653D626C6F636B6E756D6265722666726F6D3D64656661756C74000000 PUSH1 0x20 DUP4 ADD MSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x4BF5D7E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 DUP1 DUP3 PUSH1 0x4 DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL SWAP1 SWAP2 DUP3 DUP3 PUSH2 0x24C4 JUMPI JUMPDEST POP POP PUSH2 0x50C JUMPI POP PUSH2 0x50C PUSH2 0x2433 JUMP JUMPDEST SWAP1 SWAP2 SWAP3 POP RETURNDATASIZE DUP1 DUP3 DUP5 RETURNDATACOPY PUSH2 0x24D7 DUP2 DUP5 PUSH2 0x6D4 JUMP JUMPDEST DUP3 ADD SWAP2 PUSH1 0x20 DUP2 DUP5 SUB SLT PUSH2 0x2543 JUMPI DUP1 MLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT PUSH2 0x2547 JUMPI ADD DUP3 PUSH1 0x1F DUP3 ADD SLT ISZERO PUSH2 0x2543 JUMPI DUP1 MLOAD SWAP2 PUSH2 0x250D DUP4 PUSH2 0x704 JUMP JUMPDEST SWAP4 PUSH2 0x251B PUSH1 0x40 MLOAD SWAP6 DUP7 PUSH2 0x6D4 JUMP JUMPDEST DUP4 DUP6 MSTORE PUSH1 0x20 DUP5 DUP5 ADD ADD GT PUSH2 0x5F1 JUMPI POP SWAP1 PUSH2 0x253B SWAP2 PUSH1 0x20 DUP1 DUP6 ADD SWAP2 ADD PUSH2 0x4B3 JUMP JUMPDEST SWAP1 CODESIZE DUP1 PUSH2 0x24B5 JUMP JUMPDEST POP DUP1 REVERT JUMPDEST DUP3 DUP1 REVERT JUMPDEST SWAP1 DUP2 PUSH1 0x20 SWAP2 SUB SLT PUSH2 0x3B4 JUMPI MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x20 SWAP1 DUP3 SWAP1 PUSH1 0x44 SWAP1 DUP3 SWAP1 PUSH32 0x0 AND GAS STATICCALL SWAP1 DUP2 ISZERO PUSH2 0xBA6 JUMPI PUSH1 0x0 SWAP2 PUSH2 0x25BF JUMPI POP SWAP1 JUMP JUMPDEST PUSH2 0x50C SWAP2 POP PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0xBD1 JUMPI PUSH2 0xBC2 DUP2 DUP4 PUSH2 0x6D4 JUMP JUMPDEST PUSH2 0x25DF PUSH2 0x2D36 JUMP JUMPDEST SWAP3 PUSH1 0x0 SWAP3 POP PUSH6 0xFFFFFFFFFFFF SWAP2 DUP3 AND DUP2 LT PUSH2 0x2604 JUMPI POP POP POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x2610 SWAP2 SWAP3 SWAP4 POP PUSH2 0x2B60 JUMP JUMPDEST PUSH1 0xA SLOAD SWAP1 DUP4 SWAP1 DUP3 PUSH1 0x5 DUP2 GT PUSH2 0x266B JUMPI JUMPDEST POP PUSH2 0x262B SWAP4 POP PUSH2 0x2EE3 JUMP JUMPDEST DUP1 PUSH2 0x2636 JUMPI POP PUSH2 0x25F8 JUMP JUMPDEST PUSH2 0x2666 SWAP2 POP PUSH2 0x2647 PUSH2 0x265F SWAP2 PUSH2 0x2B92 JUMP JUMPDEST PUSH1 0xA PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x3C15 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 JUMP JUMPDEST SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH2 0x25F8 JUMP JUMPDEST SWAP1 SWAP3 PUSH2 0x2676 DUP3 PUSH2 0x2BC1 JUMP JUMPDEST DUP3 SUB SWAP2 DUP3 GT PUSH2 0x1E35 JUMPI PUSH2 0x262B SWAP5 PUSH1 0xA DUP8 MSTORE DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x3C15 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x26AF JUMPI POP SWAP2 JUMPDEST CODESIZE PUSH2 0x2620 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x26BB SWAP1 PUSH2 0x228E JUMP JUMPDEST SWAP1 PUSH2 0x26A9 JUMP JUMPDEST SWAP1 SWAP2 SWAP1 PUSH2 0x702 JUMPI POP DUP1 MLOAD ISZERO PUSH2 0x26D8 JUMPI DUP1 MLOAD SWAP1 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST PUSH1 0x42 SWAP1 PUSH2 0x26F5 PUSH2 0x2710 JUMP JUMPDEST SWAP1 PUSH1 0x40 MLOAD SWAP2 PUSH2 0x1901 PUSH1 0xF0 SHL DUP4 MSTORE PUSH1 0x2 DUP4 ADD MSTORE PUSH1 0x22 DUP3 ADD MSTORE KECCAK256 SWAP1 JUMP JUMPDEST ADDRESS PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x27FB JUMPI JUMPDEST ISZERO PUSH2 0x276B JUMPI PUSH32 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F DUP3 MSTORE PUSH32 0x0 PUSH1 0x40 DUP3 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xA0 DUP2 MSTORE PUSH2 0x1DE7 DUP2 PUSH2 0x69D JUMP JUMPDEST POP PUSH32 0x0 CHAINID EQ PUSH2 0x2742 JUMP JUMPDEST PUSH1 0xFF DUP2 EQ PUSH2 0x2862 JUMPI PUSH1 0xFF DUP2 AND SWAP1 PUSH1 0x1F DUP3 GT PUSH2 0x2850 JUMPI PUSH1 0x40 MLOAD SWAP2 PUSH2 0x2846 DUP4 PUSH2 0x667 JUMP JUMPDEST DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2CD44AC3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x0 DUP2 DUP2 SLOAD SWAP2 PUSH2 0x2875 DUP4 PUSH2 0x1CAA JUMP JUMPDEST DUP1 DUP4 MSTORE SWAP3 PUSH1 0x1 SWAP1 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x28F9 JUMPI POP PUSH1 0x1 EQ PUSH2 0x289C JUMPI JUMPDEST POP PUSH2 0x50C SWAP3 POP SUB DUP3 PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 MSTORE SWAP2 POP PUSH32 0x290DECD9548B62A8D60345A988386FC84BA6BC95484008F6362F93160EF3E563 JUMPDEST DUP5 DUP4 LT PUSH2 0x28DE JUMPI POP PUSH2 0x50C SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE PUSH2 0x288F JUMP JUMPDEST DUP2 SWAP4 POP SWAP1 DUP2 PUSH1 0x20 SWAP3 SLOAD DUP4 DUP6 DUP10 ADD ADD MSTORE ADD SWAP2 ADD SWAP1 SWAP2 DUP5 SWAP3 PUSH2 0x28C5 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 SWAP3 POP PUSH2 0x50C SWAP5 SWAP2 POP PUSH1 0xFF NOT AND DUP3 DUP5 ADD MSTORE ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD ADD CODESIZE PUSH2 0x288F JUMP JUMPDEST PUSH1 0xFF DUP2 EQ PUSH2 0x293D JUMPI PUSH1 0xFF DUP2 AND SWAP1 PUSH1 0x1F DUP3 GT PUSH2 0x2850 JUMPI PUSH1 0x40 MLOAD SWAP2 PUSH2 0x2846 DUP4 PUSH2 0x667 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x0 DUP2 PUSH1 0x1 SWAP2 DUP3 SLOAD SWAP3 PUSH2 0x2953 DUP5 PUSH2 0x1CAA JUMP JUMPDEST DUP1 DUP5 MSTORE SWAP4 DUP2 DUP2 AND SWAP1 DUP2 ISZERO PUSH2 0x28F9 JUMPI POP PUSH1 0x1 EQ PUSH2 0x2976 JUMPI POP PUSH2 0x50C SWAP3 POP SUB DUP3 PUSH2 0x6D4 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE SWAP2 POP PUSH32 0xB10E2D527612073B26EECDFD717E6A320CF44B4AFAC2B0732D9FCBE2B7FA0CF6 JUMPDEST DUP5 DUP4 LT PUSH2 0x29B8 JUMPI POP PUSH2 0x50C SWAP4 POP POP DUP2 ADD PUSH1 0x20 ADD CODESIZE PUSH2 0x288F JUMP JUMPDEST DUP2 SWAP4 POP SWAP1 DUP2 PUSH1 0x20 SWAP3 SLOAD DUP4 DUP6 DUP10 ADD ADD MSTORE ADD SWAP2 ADD SWAP1 SWAP2 DUP5 SWAP3 PUSH2 0x299F JUMP JUMPDEST PUSH1 0x4 GT ISZERO PUSH2 0xE17 JUMPI JUMP JUMPDEST SWAP1 SWAP2 DUP2 EXTCODESIZE PUSH2 0x2A18 JUMPI PUSH2 0x29EF SWAP2 SWAP3 PUSH2 0x2AA0 JUMP JUMPDEST POP PUSH2 0x29F9 DUP2 PUSH2 0x29D3 JUMP JUMPDEST ISZERO SWAP2 DUP3 PUSH2 0x2A05 JUMPI POP POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND SWAP2 AND EQ SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 SWAP2 PUSH1 0x40 MLOAD PUSH2 0x2A5C DUP2 PUSH2 0x2A4E PUSH1 0x20 DUP3 ADD SWAP5 PUSH4 0xB135D3F PUSH1 0xE1 SHL SWAP10 DUP11 DUP8 MSTORE PUSH1 0x24 DUP5 ADD MSTORE PUSH1 0x40 PUSH1 0x44 DUP5 ADD MSTORE PUSH1 0x64 DUP4 ADD SWAP1 PUSH2 0x4D6 JUMP JUMPDEST SUB PUSH1 0x1F NOT DUP2 ADD DUP4 MSTORE DUP3 PUSH2 0x6D4 JUMP JUMPDEST MLOAD SWAP2 GAS STATICCALL SWAP1 PUSH2 0x2A69 PUSH2 0x2109 JUMP JUMPDEST DUP3 PUSH2 0x2A92 JUMPI JUMPDEST DUP3 PUSH2 0x2A79 JUMPI POP POP SWAP1 JUMP JUMPDEST PUSH2 0x2A8E SWAP2 SWAP3 POP PUSH1 0x20 DUP1 DUP3 MLOAD DUP4 ADD ADD SWAP2 ADD PUSH2 0x254B JUMP JUMPDEST EQ SWAP1 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP3 MLOAD LT ISZERO SWAP2 PUSH2 0x2A6F JUMP JUMPDEST DUP2 MLOAD SWAP2 SWAP1 PUSH1 0x41 DUP4 SUB PUSH2 0x2AD1 JUMPI PUSH2 0x2ACA SWAP3 POP PUSH1 0x20 DUP3 ADD MLOAD SWAP1 PUSH1 0x60 PUSH1 0x40 DUP5 ADD MLOAD SWAP4 ADD MLOAD PUSH1 0x0 BYTE SWAP1 PUSH2 0x2ADC JUMP JUMPDEST SWAP2 SWAP3 SWAP1 SWAP2 SWAP1 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 PUSH1 0x2 SWAP2 SWAP1 JUMP JUMPDEST SWAP2 SWAP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT PUSH2 0x2B54 JUMPI SWAP3 PUSH1 0x20 SWAP3 SWAP2 PUSH1 0xFF PUSH1 0x80 SWAP6 PUSH1 0x40 MLOAD SWAP5 DUP6 MSTORE AND DUP5 DUP5 ADD MSTORE PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x0 SWAP3 DUP4 SWAP2 DUP3 DUP1 MSTORE PUSH1 0x1 GAS STATICCALL ISZERO PUSH2 0xBA6 JUMPI DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x2B4B JUMPI SWAP2 DUP2 SWAP1 JUMP JUMPDEST POP DUP1 SWAP2 PUSH1 0x1 SWAP2 SWAP1 JUMP JUMPDEST POP POP POP PUSH1 0x0 SWAP2 PUSH1 0x3 SWAP2 SWAP1 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP2 GT PUSH2 0x2B73 JUMPI AND SWAP1 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP3 MSTORE PUSH1 0x30 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST PUSH1 0x0 NOT DUP2 ADD SWAP2 SWAP1 DUP3 GT PUSH2 0x1E35 JUMPI JUMP JUMPDEST DUP2 ISZERO PUSH2 0x2BAB JUMPI DIV SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x50C JUMPI PUSH1 0x1 DUP2 PUSH1 0x1 PUSH1 0x80 SHL DUP2 LT ISZERO PUSH2 0x2CDA JUMPI JUMPDEST PUSH2 0x2C82 PUSH2 0x2C78 PUSH2 0x2C6E PUSH2 0x2C64 PUSH2 0x2C5A PUSH2 0x2C50 PUSH2 0x2C8E SWAP8 PUSH1 0x4 DUP9 PUSH1 0x1 PUSH1 0x40 SHL PUSH2 0x2C89 SWAP11 LT ISZERO PUSH2 0x2CCD JUMPI JUMPDEST PUSH5 0x100000000 DUP2 LT ISZERO PUSH2 0x2CC0 JUMPI JUMPDEST PUSH3 0x10000 DUP2 LT ISZERO PUSH2 0x2CB3 JUMPI JUMPDEST PUSH2 0x100 DUP2 LT ISZERO PUSH2 0x2CA7 JUMPI JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x2C9B JUMPI JUMPDEST LT ISZERO PUSH2 0x2C93 JUMPI JUMPDEST PUSH1 0x3 MUL PUSH1 0x1 SHR PUSH2 0x2C49 DUP2 DUP12 PUSH2 0x2BA1 JUMP JUMPDEST ADD PUSH1 0x1 SHR SWAP1 JUMP JUMPDEST PUSH2 0x2C49 DUP2 DUP11 PUSH2 0x2BA1 JUMP JUMPDEST PUSH2 0x2C49 DUP2 DUP10 PUSH2 0x2BA1 JUMP JUMPDEST PUSH2 0x2C49 DUP2 DUP9 PUSH2 0x2BA1 JUMP JUMPDEST PUSH2 0x2C49 DUP2 DUP8 PUSH2 0x2BA1 JUMP JUMPDEST PUSH2 0x2C49 DUP2 DUP7 PUSH2 0x2BA1 JUMP JUMPDEST DUP1 SWAP4 PUSH2 0x2BA1 JUMP JUMPDEST DUP3 GT SWAP1 JUMP JUMPDEST SWAP1 SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 SHL PUSH2 0x2C39 JUMP JUMPDEST DUP2 SHR SWAP2 PUSH1 0x2 SHL SWAP2 PUSH2 0x2C32 JUMP JUMPDEST PUSH1 0x8 SHR SWAP2 DUP2 SHL SWAP2 PUSH2 0x2C28 JUMP JUMPDEST PUSH1 0x10 SHR SWAP2 PUSH1 0x8 SHL SWAP2 PUSH2 0x2C1D JUMP JUMPDEST PUSH1 0x20 SHR SWAP2 PUSH1 0x10 SHL SWAP2 PUSH2 0x2C11 JUMP JUMPDEST PUSH1 0x40 SHR SWAP2 PUSH1 0x20 SHL SWAP2 PUSH2 0x2C03 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x40 SHL SWAP1 POP PUSH1 0x80 DUP3 SWAP1 SHR PUSH2 0x2BDA JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x0 SWAP1 DUP1 PUSH2 0x2CFE JUMPI POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DUP2 ADD GT PUSH2 0x1E35 JUMPI PUSH1 0xA PUSH32 0xC65A7BB8D6351C1CF70C95A316CC6A92839C986682D98BC35F958F4883F9D2A7 SWAP3 MSTORE ADD SLOAD PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD DUP1 PUSH2 0x2D4A JUMPI POP PUSH1 0x0 SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x0 SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DUP2 ADD GT PUSH2 0x1E35 JUMPI PUSH1 0xA PUSH1 0x0 MSTORE PUSH32 0xC65A7BB8D6351C1CF70C95A316CC6A92839C986682D98BC35F958F4883F9D2A7 ADD SLOAD PUSH1 0x1 SWAP2 PUSH6 0xFFFFFFFFFFFF DUP3 AND SWAP2 PUSH1 0x30 SHR SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD SWAP1 PUSH1 0x1 PUSH1 0x40 SHL DUP3 LT ISZERO PUSH2 0x662 JUMPI PUSH1 0x1 DUP3 ADD DUP1 PUSH1 0xA SSTORE DUP3 LT ISZERO PUSH2 0x1E73 JUMPI PUSH2 0x702 SWAP2 PUSH1 0xA PUSH1 0x0 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x3C15 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SWAP1 PUSH2 0x2DF0 PUSH6 0xFFFFFFFFFFFF DUP3 MLOAD AND DUP4 SWAP1 PUSH6 0xFFFFFFFFFFFF AND PUSH6 0xFFFFFFFFFFFF NOT DUP3 SLOAD AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x20 ADD MLOAD DUP2 SLOAD PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x30 SWAP2 SWAP1 SWAP2 SHL PUSH6 0xFFFFFFFFFFFF NOT AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0xA SLOAD SWAP2 SWAP3 SWAP2 DUP1 ISZERO PUSH2 0x2EB9 JUMPI PUSH2 0x2647 PUSH2 0x2E2A SWAP2 PUSH2 0x2B92 JUMP JUMPDEST SWAP1 DUP2 SLOAD SWAP2 PUSH6 0xFFFFFFFFFFFF SWAP1 DUP2 DUP5 AND SWAP2 DUP4 AND DUP1 DUP4 GT PUSH2 0x2EA7 JUMPI DUP7 SWAP3 SUB PUSH2 0x2E6F JUMPI PUSH2 0x2E68 SWAP3 POP SWAP1 PUSH6 0xFFFFFFFFFFFF DUP3 SLOAD SWAP2 DUP2 NOT SWAP1 PUSH1 0x30 SHL AND SWAP2 AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x30 SHR SWAP2 SWAP1 JUMP JUMPDEST POP POP PUSH2 0x2EA2 SWAP1 PUSH2 0x2E8E PUSH2 0x2E80 PUSH2 0x6F5 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP3 AND DUP3 MSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x2D90 JUMP JUMPDEST PUSH2 0x2E68 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2520601D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 SWAP1 REVERT JUMPDEST POP PUSH2 0x2EDD SWAP1 PUSH2 0x2EC9 PUSH2 0x2E80 PUSH2 0x6F5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x2D90 JUMP JUMPDEST PUSH1 0x0 SWAP2 SWAP1 JUMP JUMPDEST SWAP1 JUMPDEST DUP3 DUP2 LT PUSH2 0x2EF1 JUMPI POP POP SWAP1 JUMP JUMPDEST SWAP1 SWAP2 DUP1 DUP3 AND SWAP1 DUP1 DUP4 XOR PUSH1 0x1 SHR DUP3 ADD DUP1 SWAP3 GT PUSH2 0x1E35 JUMPI PUSH1 0xA PUSH1 0x0 MSTORE PUSH6 0xFFFFFFFFFFFF DUP1 DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x3C15 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE ADD SLOAD AND SWAP1 DUP6 AND LT PUSH1 0x0 EQ PUSH2 0x2F3A JUMPI POP SWAP2 JUMPDEST SWAP1 PUSH2 0x2EE5 JUMP JUMPDEST SWAP3 SWAP2 POP PUSH2 0x2F46 SWAP1 PUSH2 0x228E JUMP JUMPDEST SWAP1 PUSH2 0x2F34 JUMP JUMPDEST PUSH1 0x5 SLOAD DUP1 PUSH1 0x80 SHR SWAP2 PUSH1 0x1 DUP4 ADD SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 SWAP4 AND DUP4 DUP6 AND EQ PUSH2 0x2F94 JUMPI PUSH1 0x0 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SSTORE PUSH1 0x5 SLOAD SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB NOT SWAP1 PUSH1 0x80 SHL AND SWAP2 AND OR PUSH1 0x5 SSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH1 0x5 SLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP4 AND SWAP3 PUSH1 0x80 SHR DUP4 EQ PUSH2 0x2FEC JUMPI DUP3 PUSH1 0x0 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x1 PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP4 PUSH1 0x0 DUP6 SLOAD SWAP6 SSTORE ADD AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB NOT PUSH1 0x5 SLOAD AND OR PUSH1 0x5 SSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH1 0x0 NOT DUP3 DUP3 MULMOD DUP3 DUP3 MUL SWAP2 DUP3 DUP1 DUP4 LT SWAP3 SUB SWAP2 DUP1 DUP4 SUB SWAP3 EQ PUSH2 0x306E JUMPI DUP2 PUSH1 0x64 GT ISZERO PUSH2 0x305B JUMPI PUSH32 0x5C28F5C28F5C28F5C28F5C28F5C28F5C28F5C28F5C28F5C28F5C28F5C28F5C29 SWAP4 PUSH1 0x64 SWAP2 MULMOD SWAP1 DUP3 DUP3 GT SWAP1 SUB PUSH1 0xFE SHL SWAP2 SUB PUSH1 0x2 SHR OR MUL SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST POP POP PUSH1 0x64 SWAP2 POP DIV SWAP1 JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x20 SWAP2 SUB SLT PUSH2 0x3B4 JUMPI MLOAD DUP1 ISZERO ISZERO DUP2 SUB PUSH2 0x3B4 JUMPI SWAP1 JUMP JUMPDEST PUSH2 0x3099 DUP2 PUSH2 0x31A2 JUMP JUMPDEST SWAP1 PUSH2 0x30A3 DUP3 PUSH2 0xE0D JUMP JUMPDEST PUSH1 0x5 DUP3 SUB PUSH2 0x319E JUMPI PUSH2 0x30C0 SWAP2 POP PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0xB SLOAD PUSH2 0x30D6 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9E5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2C258A9F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP4 DUP2 PUSH1 0x24 DUP2 DUP6 GAS STATICCALL SWAP1 DUP2 ISZERO PUSH2 0xBA6 JUMPI PUSH1 0x0 SWAP2 PUSH2 0x3181 JUMPI JUMPDEST POP ISZERO PUSH2 0x3114 JUMPI POP POP POP PUSH1 0x5 SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2AB0F529 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE DUP3 SWAP1 DUP3 SWAP1 PUSH1 0x24 SWAP1 DUP3 SWAP1 GAS STATICCALL SWAP2 DUP3 ISZERO PUSH2 0xBA6 JUMPI PUSH1 0x0 SWAP3 PUSH2 0x3154 JUMPI JUMPDEST POP POP ISZERO PUSH2 0x314F JUMPI PUSH1 0x7 SWAP1 JUMP JUMPDEST PUSH1 0x2 SWAP1 JUMP JUMPDEST PUSH2 0x3173 SWAP3 POP DUP1 RETURNDATASIZE LT PUSH2 0x317A JUMPI JUMPDEST PUSH2 0x316B DUP2 DUP4 PUSH2 0x6D4 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x3078 JUMP JUMPDEST CODESIZE DUP1 PUSH2 0x3143 JUMP JUMPDEST POP RETURNDATASIZE PUSH2 0x3161 JUMP JUMPDEST PUSH2 0x3198 SWAP2 POP DUP5 RETURNDATASIZE DUP7 GT PUSH2 0x317A JUMPI PUSH2 0x316B DUP2 DUP4 PUSH2 0x6D4 JUMP JUMPDEST CODESIZE PUSH2 0x3106 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x31B6 DUP2 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0xFF DUP2 PUSH1 0xF0 SHR AND PUSH2 0x32BF JUMPI PUSH1 0xF8 SHR PUSH2 0x32B9 JUMPI PUSH2 0x31F2 PUSH2 0x2039 PUSH2 0x31E3 DUP4 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD PUSH1 0xA0 SHR PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x32A0 JUMPI PUSH2 0x3203 PUSH2 0x2039 PUSH2 0x23A0 JUMP JUMPDEST DUP1 SWAP2 LT ISZERO PUSH2 0x3299 JUMPI PUSH2 0x3214 DUP3 PUSH2 0x1E03 JUMP JUMPDEST LT PUSH2 0x321F JUMPI POP PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH2 0x322B PUSH2 0xCEC DUP3 PUSH2 0x32C6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3274 JUMPI JUMPDEST ISZERO PUSH2 0x323D JUMPI POP PUSH1 0x3 SWAP1 JUMP JUMPDEST PUSH2 0x2039 PUSH1 0x1 PUSH2 0x3259 PUSH2 0x3266 SWAP4 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST ADD SLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH2 0x326F JUMPI PUSH1 0x4 SWAP1 JUMP JUMPDEST PUSH1 0x5 SWAP1 JUMP JUMPDEST POP PUSH2 0x3294 PUSH2 0xCEC DUP3 PUSH1 0x0 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD SWAP1 SLOAD LT SWAP1 JUMP JUMPDEST PUSH2 0x3232 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6AD06075 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST POP PUSH1 0x2 SWAP1 JUMP JUMPDEST POP POP PUSH1 0x7 SWAP1 JUMP JUMPDEST PUSH1 0x0 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x4 PUSH1 0x20 MSTORE PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 PUSH1 0x0 KECCAK256 SLOAD PUSH1 0xA0 SHR AND PUSH1 0x40 MLOAD PUSH4 0x2394E7A3 PUSH1 0xE2 SHL DUP2 MSTORE DUP2 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x20 DUP2 PUSH1 0x24 DUP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND GAS STATICCALL DUP1 ISZERO PUSH2 0xBA6 JUMPI PUSH2 0x335D SWAP3 PUSH2 0x334C SWAP3 PUSH1 0x0 SWAP3 PUSH2 0x1C2D JUMPI POP PUSH2 0x1C27 SWAP1 PUSH2 0x25D7 JUMP JUMPDEST SWAP2 PUSH1 0x2 PUSH1 0x1 DUP3 ADD SLOAD SWAP2 ADD SLOAD SWAP1 PUSH2 0x229C JUMP JUMPDEST LT ISZERO SWAP1 JUMP JUMPDEST SWAP2 SWAP4 SWAP3 SWAP1 SWAP4 PUSH2 0x3371 DUP3 CALLER PUSH2 0x374E JUMP JUMPDEST ISZERO PUSH2 0x3467 JUMPI PUSH1 0x7 SLOAD SWAP5 DUP6 PUSH2 0x338D JUMPI JUMPDEST PUSH2 0x50C SWAP5 SWAP6 POP CALLER SWAP4 PUSH2 0x3597 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF PUSH1 0x0 NOT DUP2 PUSH2 0x33A0 PUSH2 0x23A0 JUMP JUMPDEST AND ADD SWAP1 DUP1 DUP3 GT PUSH2 0x1E35 JUMPI PUSH1 0x0 PUSH1 0x40 MLOAD PUSH2 0x33B8 DUP2 PUSH2 0x682 JUMP JUMPDEST MSTORE PUSH1 0x40 MLOAD PUSH4 0x748D635 PUSH1 0xE3 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x20 DUP2 PUSH1 0x44 DUP2 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND GAS STATICCALL SWAP1 DUP2 ISZERO PUSH2 0xBA6 JUMPI PUSH1 0x0 SWAP2 PUSH2 0x3449 JUMPI JUMPDEST POP DUP7 DUP2 LT PUSH2 0x3422 JUMPI POP PUSH2 0x3380 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6121770B PUSH1 0xE1 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST PUSH2 0x3461 SWAP2 POP PUSH1 0x20 RETURNDATASIZE DUP2 GT PUSH2 0xBD1 JUMPI PUSH2 0xBC2 DUP2 DUP4 PUSH2 0x6D4 JUMP JUMPDEST CODESIZE PUSH2 0x3414 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD9B39557 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 SWAP1 REVERT JUMPDEST SWAP1 PUSH2 0x3489 DUP3 PUSH2 0x7EE JUMP JUMPDEST PUSH2 0x3496 PUSH1 0x40 MLOAD SWAP2 DUP3 PUSH2 0x6D4 JUMP JUMPDEST DUP3 DUP2 MSTORE DUP1 SWAP3 PUSH2 0x34A7 PUSH1 0x1F NOT SWAP2 PUSH2 0x7EE JUMP JUMPDEST ADD SWAP1 PUSH1 0x0 JUMPDEST DUP3 DUP2 LT PUSH2 0x34B8 JUMPI POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x60 PUSH1 0x20 DUP1 SWAP4 DUP6 ADD ADD MSTORE ADD PUSH2 0x34AC JUMP JUMPDEST SWAP6 SWAP3 PUSH2 0x34FC SWAP1 PUSH2 0x350A SWAP4 SWAP12 SWAP11 SWAP9 SWAP10 SWAP7 SWAP6 SWAP3 DUP9 MSTORE PUSH1 0x20 SWAP12 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB AND DUP13 DUP10 ADD MSTORE PUSH2 0x120 DUP1 PUSH1 0x40 DUP11 ADD MSTORE DUP9 ADD SWAP1 PUSH2 0x1CF7 JUMP JUMPDEST SWAP1 DUP7 DUP3 SUB PUSH1 0x60 DUP9 ADD MSTORE PUSH2 0x135C JUMP JUMPDEST SWAP8 DUP5 DUP10 SUB PUSH1 0x80 DUP7 ADD MSTORE DUP3 MLOAD DUP1 DUP11 MSTORE DUP2 DUP11 ADD SWAP2 DUP1 DUP1 DUP4 PUSH1 0x5 SHL DUP14 ADD ADD SWAP6 ADD SWAP3 PUSH1 0x0 SWAP1 JUMPDEST DUP4 DUP3 LT PUSH2 0x3569 JUMPI POP POP POP POP POP PUSH2 0x50C SWAP7 SWAP8 POP SWAP1 PUSH2 0x3550 SWAP2 DUP5 DUP3 SUB PUSH1 0xA0 DUP7 ADD MSTORE PUSH2 0x1D34 JUMP JUMPDEST SWAP4 PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP3 ADD MSTORE PUSH2 0x100 DUP2 DUP5 SUB SWAP2 ADD MSTORE PUSH2 0x4D6 JUMP JUMPDEST SWAP1 SWAP2 SWAP3 SWAP4 SWAP6 DUP4 DUP1 PUSH2 0x3588 DUP16 SWAP4 PUSH1 0x1 SWAP5 PUSH1 0x1F NOT SWAP1 DUP3 SUB ADD DUP7 MSTORE DUP11 MLOAD PUSH2 0x4D6 JUMP JUMPDEST SWAP9 ADD SWAP3 ADD SWAP3 ADD SWAP1 SWAP4 SWAP3 SWAP2 PUSH2 0x352C JUMP JUMPDEST SWAP2 SWAP5 SWAP4 SWAP1 SWAP3 SWAP5 PUSH2 0x35AF DUP7 MLOAD PUSH1 0x20 DUP9 ADD KECCAK256 DUP3 DUP7 DUP7 PUSH2 0x1D89 JUMP JUMPDEST SWAP6 DUP4 MLOAD DUP6 MLOAD SWAP1 DUP2 DUP2 EQ DUP1 ISZERO SWAP1 PUSH2 0x3743 JUMPI JUMPDEST DUP1 ISZERO PUSH2 0x373B JUMPI JUMPDEST PUSH2 0x3712 JUMPI POP POP PUSH6 0xFFFFFFFFFFFF SWAP5 DUP6 PUSH2 0x35ED PUSH2 0x31E3 DUP11 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST AND PUSH2 0x36EB JUMPI PUSH32 0x7D84A6263AE0D98D3329BD7B46BB4E8D6F98CD35A7ADB45C274C8B7FD5EBD5E0 SWAP6 PUSH2 0x36E6 SWAP4 PUSH4 0xFFFFFFFF PUSH2 0x3636 PUSH2 0x3628 PUSH2 0x23A0 JUMP JUMPDEST PUSH1 0x8 SLOAD SWAP5 DUP1 DUP7 AND SWAP2 AND PUSH2 0x229C JUMP JUMPDEST SWAP3 PUSH1 0x30 SHR AND PUSH2 0x36C4 PUSH2 0x3652 DUP13 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND OR DUP2 SSTORE PUSH2 0x369B PUSH2 0x3677 DUP7 PUSH2 0x2B60 JUMP JUMPDEST DUP3 SLOAD PUSH6 0xFFFFFFFFFFFF PUSH1 0xA0 SHL NOT AND PUSH1 0xA0 SWAP2 SWAP1 SWAP2 SHL PUSH6 0xFFFFFFFFFFFF PUSH1 0xA0 SHL AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x36A4 DUP4 PUSH2 0x3984 JUMP JUMPDEST DUP2 SLOAD PUSH4 0xFFFFFFFF PUSH1 0xD0 SHL NOT AND PUSH1 0xD0 SWAP2 SWAP1 SWAP2 SHL PUSH4 0xFFFFFFFF PUSH1 0xD0 SHL AND OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x36D8 PUSH2 0x36D1 DUP10 MLOAD PUSH2 0x347F JUMP JUMPDEST SWAP2 DUP5 PUSH2 0x229C JUMP JUMPDEST SWAP4 PUSH1 0x40 MLOAD SWAP9 DUP10 SWAP9 DUP14 DUP11 PUSH2 0x34C9 JUMP JUMPDEST SUB SWAP1 LOG1 JUMP JUMPDEST DUP8 PUSH2 0x36F5 DUP2 PUSH2 0x3090 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP2 MSTORE SWAP2 DUP3 SWAP2 PUSH2 0xF2A SWAP2 PUSH1 0x4 DUP5 ADD PUSH2 0x21CA JUMP JUMPDEST DUP4 MLOAD PUSH1 0x40 MLOAD PUSH4 0x447B05D PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x64 SWAP1 REVERT JUMPDEST POP DUP1 ISZERO PUSH2 0x35C7 JUMP JUMPDEST POP DUP4 MLOAD DUP2 EQ ISZERO PUSH2 0x35C0 JUMP JUMPDEST SWAP1 DUP1 MLOAD PUSH1 0x34 DUP2 LT PUSH2 0x379B JUMPI PUSH1 0x13 NOT DUP2 DUP4 ADD ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xB0 SHL SUB NOT AND PUSH10 0xDC8F8D908F908C9A8DC3 PUSH1 0xB0 SHL ADD PUSH2 0x379B JUMPI PUSH2 0x378D SWAP2 PUSH1 0x29 NOT DUP3 ADD SWAP1 PUSH2 0x37CF JUMP JUMPDEST SWAP1 ISZERO SWAP2 DUP3 ISZERO PUSH2 0x2A05 JUMPI POP POP SWAP1 JUMP JUMPDEST POP POP POP PUSH1 0x1 SWAP1 JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x1 SHL SWAP2 DUP1 DUP4 DIV PUSH1 0x2 EQ SWAP1 ISZERO OR ISZERO PUSH2 0x1E35 JUMPI JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x4 SHL SWAP2 DUP1 DUP4 DIV PUSH1 0x10 EQ SWAP1 ISZERO OR ISZERO PUSH2 0x1E35 JUMPI JUMP JUMPDEST SWAP2 SWAP1 DUP3 MLOAD DUP3 GT DUP1 ISZERO PUSH2 0x3858 JUMPI JUMPDEST PUSH2 0x382F JUMPI PUSH2 0x37E9 DUP2 PUSH2 0x228E JUMP JUMPDEST DUP3 GT DUP1 PUSH2 0x383A JUMPI JUMPDEST PUSH2 0x37FC SWAP1 ISZERO ISZERO PUSH2 0x37A3 JUMP JUMPDEST PUSH1 0x28 ADD DUP1 PUSH1 0x28 GT PUSH2 0x1E35 JUMPI DUP2 DUP4 SUB DUP4 DUP2 GT PUSH2 0x1E35 JUMPI SUB PUSH2 0x382F JUMPI PUSH2 0x381F SWAP3 PUSH2 0x3861 JUMP JUMPDEST SWAP1 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 JUMP JUMPDEST POP POP POP PUSH1 0x0 SWAP1 PUSH1 0x0 SWAP1 JUMP JUMPDEST POP DUP3 DUP2 ADD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF0 SHL SUB NOT AND PUSH2 0x60F PUSH1 0xF3 SHL EQ PUSH2 0x37F1 JUMP JUMPDEST POP DUP2 DUP2 GT PUSH2 0x37DC JUMP JUMPDEST SWAP3 SWAP1 SWAP3 PUSH2 0x386D DUP5 PUSH2 0x228E JUMP JUMPDEST DUP4 GT DUP1 PUSH2 0x38F4 JUMPI JUMPDEST PUSH2 0x3880 SWAP1 ISZERO ISZERO PUSH2 0x37A3 JUMP JUMPDEST SWAP4 PUSH1 0x0 SWAP5 DUP2 ADD DUP1 SWAP2 GT PUSH2 0x1E35 JUMPI SWAP2 SWAP3 SWAP1 JUMPDEST DUP2 DUP4 LT PUSH2 0x38A1 JUMPI POP POP POP PUSH1 0x1 SWAP2 SWAP1 JUMP JUMPDEST SWAP1 SWAP3 SWAP2 SWAP4 PUSH1 0xFF PUSH2 0x38C2 PUSH2 0x38BD PUSH1 0x20 DUP9 DUP7 ADD ADD MLOAD PUSH1 0xFF PUSH1 0xF8 SHL AND SWAP1 JUMP JUMPDEST PUSH2 0x3912 JUMP JUMPDEST AND SWAP1 PUSH1 0xF DUP3 GT PUSH2 0x38E8 JUMPI SWAP1 PUSH2 0x38D9 PUSH2 0x38E0 SWAP3 PUSH2 0x37B9 JUMP JUMPDEST ADD SWAP5 PUSH2 0x1E3A JUMP JUMPDEST SWAP2 SWAP3 SWAP1 PUSH2 0x3891 JUMP JUMPDEST POP PUSH1 0x0 SWAP5 POP DUP5 SWAP4 POP POP POP JUMP JUMPDEST POP DUP1 DUP5 ADD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF0 SHL SUB NOT AND PUSH2 0x60F PUSH1 0xF3 SHL EQ PUSH2 0x3875 JUMP JUMPDEST PUSH1 0xF8 SHR PUSH1 0x2F DUP2 GT DUP1 PUSH2 0x397A JUMPI JUMPDEST ISZERO PUSH2 0x392E JUMPI PUSH1 0x2F NOT ADD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP2 GT DUP1 PUSH2 0x3970 JUMPI JUMPDEST ISZERO PUSH2 0x3947 JUMPI PUSH1 0x56 NOT ADD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP2 GT DUP1 PUSH2 0x3966 JUMPI JUMPDEST ISZERO PUSH2 0x3960 JUMPI PUSH1 0x36 NOT ADD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST POP PUSH1 0xFF SWAP1 JUMP JUMPDEST POP PUSH1 0x47 DUP2 LT PUSH2 0x3951 JUMP JUMPDEST POP PUSH1 0x67 DUP2 LT PUSH2 0x3938 JUMP JUMPDEST POP PUSH1 0x3A DUP2 LT PUSH2 0x391F JUMP JUMPDEST PUSH4 0xFFFFFFFF SWAP1 DUP2 DUP2 GT PUSH2 0x3995 JUMPI AND SWAP1 JUMP JUMPDEST PUSH1 0x44 SWAP1 PUSH1 0x40 MLOAD SWAP1 PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP3 MSTORE PUSH1 0x20 PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE REVERT JUMPDEST SWAP1 PUSH2 0x39C0 SWAP4 SWAP3 SWAP2 PUSH2 0x1D89 JUMP JUMPDEST PUSH2 0x39C9 DUP2 PUSH2 0x3090 JUMP JUMPDEST PUSH1 0x8 DUP2 LT ISZERO PUSH2 0xE17 JUMPI PUSH1 0x3B PUSH1 0x1 PUSH1 0xFF DUP4 AND SHL AND ISZERO PUSH2 0x3AC8 JUMPI POP PUSH2 0x3A0E PUSH2 0x39F9 DUP3 PUSH1 0x0 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB AND PUSH1 0x1 PUSH1 0xF8 SHL OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x789CF55BE980739DAD1D0699B93B58E806B51C9D96619BFA8FE0A28ABAA7B30C SWAP1 PUSH1 0x20 SWAP1 LOG1 PUSH2 0x3A4E DUP2 PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SLOAD DUP1 PUSH2 0x3A58 JUMPI POP SWAP1 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH2 0x3A6D SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9E5 JUMP JUMPDEST DUP1 EXTCODESIZE ISZERO PUSH2 0x3B4 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC4D252F5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP1 DUP3 SWAP1 PUSH1 0x24 SWAP1 DUP3 SWAP1 DUP5 SWAP1 GAS CALL DUP1 ISZERO PUSH2 0xBA6 JUMPI PUSH2 0x3AB5 JUMPI JUMPDEST POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE SWAP1 JUMP JUMPDEST DUP1 PUSH2 0xB9A PUSH2 0x3AC2 SWAP3 PUSH2 0x64F JUMP JUMPDEST CODESIZE PUSH2 0x3AA2 JUMP JUMPDEST SWAP1 PUSH2 0x3AEC PUSH1 0x64 SWAP3 PUSH1 0x40 MLOAD SWAP3 PUSH4 0x31B75E4D PUSH1 0xE0 SHL DUP5 MSTORE PUSH1 0x4 DUP5 ADD MSTORE PUSH1 0x24 DUP4 ADD SWAP1 PUSH2 0xE1C JUMP JUMPDEST PUSH1 0x3B PUSH1 0x44 DUP3 ADD MSTORE REVERT JUMPDEST SWAP5 SWAP4 SWAP3 PUSH2 0x3B21 PUSH1 0x80 SWAP4 PUSH2 0x3B13 PUSH2 0x3B2F SWAP5 PUSH1 0xA0 DUP11 MSTORE PUSH1 0xA0 DUP11 ADD SWAP1 PUSH2 0x1CF7 JUMP JUMPDEST SWAP1 DUP9 DUP3 SUB PUSH1 0x20 DUP11 ADD MSTORE PUSH2 0x135C JUMP JUMPDEST SWAP1 DUP7 DUP3 SUB PUSH1 0x40 DUP9 ADD MSTORE PUSH2 0x1D34 JUMP JUMPDEST SWAP4 PUSH1 0x0 PUSH1 0x60 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST SWAP2 SWAP3 PUSH2 0x3B6A PUSH1 0xA0 SWAP5 PUSH2 0x3B5C PUSH2 0x3B78 SWAP5 SWAP10 SWAP9 SWAP8 SWAP10 PUSH1 0xC0 DUP8 MSTORE PUSH1 0xC0 DUP8 ADD SWAP1 PUSH2 0x1CF7 JUMP JUMPDEST SWAP1 DUP6 DUP3 SUB PUSH1 0x20 DUP8 ADD MSTORE PUSH2 0x135C JUMP JUMPDEST SWAP1 DUP4 DUP3 SUB PUSH1 0x40 DUP6 ADD MSTORE PUSH2 0x1D34 JUMP JUMPDEST SWAP5 PUSH1 0x0 PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP3 ADD MSTORE ADD MSTORE JUMP JUMPDEST SWAP3 SWAP1 SWAP4 SWAP2 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB PUSH1 0xB SLOAD AND SWAP1 DUP2 EXTCODESIZE ISZERO PUSH2 0x3B4 JUMPI PUSH1 0x0 SWAP4 PUSH2 0x3BD8 PUSH1 0x40 MLOAD SWAP8 DUP9 SWAP6 DUP7 SWAP5 DUP6 SWAP5 PUSH4 0xE38335E5 PUSH1 0xE0 SHL DUP7 MSTORE PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT ADDRESS PUSH1 0x60 SHL AND XOR SWAP3 PUSH1 0x4 DUP7 ADD PUSH2 0x3AF5 JUMP JUMPDEST SUB SWAP2 CALLVALUE SWAP1 GAS CALL SWAP1 DUP2 ISZERO PUSH2 0xBA6 JUMPI PUSH1 0x0 SWAP3 PUSH2 0x3C02 SWAP3 PUSH2 0x3C05 JUMPI JUMPDEST POP PUSH1 0x0 MSTORE PUSH1 0xC PUSH1 0x20 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 SWAP1 JUMP JUMPDEST SSTORE JUMP JUMPDEST PUSH2 0x3C0E SWAP1 PUSH2 0x64F JUMP JUMPDEST CODESIZE PUSH2 0x3BF1 JUMP INVALID 0xC6 GAS PUSH28 0xB8D6351C1CF70C95A316CC6A92839C986682D98BC35F958F4883F9D2 0xA8 LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP7 0xE6 ISZERO SLOAD SUB 0xC0 0xE8 GAS 0x4C 0x4A PUSH4 0x46F4C92D PUSH13 0x35195199EA8303E8C02EED5077 0xB8 DUP14 SHL PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"658:4307:51:-:0;;;;;;;;;-1:-1:-1;658:4307:51;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;:::i;:::-;;;;;;-1:-1:-1;;658:4307:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4144:42:3;;;:135;;;;658:4307:51;4144:200:3;;;;658:4307:51;4144:252:3;;;;658:4307:51;;;;;;;;;;4144:252:3;-1:-1:-1;;;862:40:41;;-1:-1:-1;4144:252:3;;;:200;-1:-1:-1;;;4295:49:3;;;-1:-1:-1;4144:200:3;;:135;-1:-1:-1;;;4202:77:3;;;-1:-1:-1;4144:135:3;;658:4307:51;-1:-1:-1;658:4307:51;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;658:4307:51;;;;;;1460:13:7;658:4307:51;;;;;;;;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;3420:72:3;;:::i;:::-;2146:3:10;3285:32;;3281:132;;-1:-1:-1;;;;;658:4307:51;;1634:32:10;;:::i;:::-;658:4307:51;3508:7:10;;:::i;:::-;4254:25:44;;;;4250:105;;3572:62:10;658:4307:51;8311:38:46;658:4307:51;;;8311:38:46;;:::i;:::-;-1:-1:-1;;658:4307:51;;;;;;;;;;;;;3572:62:10;658:4307:51;4250:105:44;658:4307:51;;-1:-1:-1;;;4302:42:44;;658:4307:51;;4302:42:44;;658:4307:51;;;;;;;;;4302:42:44;3281:132:10;658:4307:51;;;;3340:62:10;;;;;;658:4307:51;3340:62:10;;658:4307:51;2146:3:10;658:4307:51;;;;3340:62:10;658:4307:51;;;;;;;;-1:-1:-1;;658:4307:51;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;658:4307:51;;;;:::o;:::-;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;658:4307:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;-1:-1:-1;658:4307:51;;;;;;;;;;;-1:-1:-1;658:4307:51;;;;;;;;;;-1:-1:-1;;;;;658:4307:51;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;658:4307:51;;;;;;:::o;:::-;;:::i;:::-;;;;;;;-1:-1:-1;;;;;658:4307:51;;;;;;;:::o;:::-;;;;;;;-1:-1:-1;;;;;658:4307:51;;;;;;;:::o;:::-;;;;;;;-1:-1:-1;;;;;658:4307:51;;;;;;;:::o;:::-;;;;;;;-1:-1:-1;;;;;658:4307:51;;;;;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;658:4307:51;;;;;;;:::o;:::-;;;;;;;:::i;:::-;:::o;:::-;-1:-1:-1;;;;;658:4307:51;;;;;;-1:-1:-1;;658:4307:51;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;658:4307:51;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;658:4307:51;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;-1:-1:-1;;;;;658:4307:51;;;;;;;;;;;:::i;:::-;-1:-1:-1;3032:9:8;658:4307:51;-1:-1:-1;;;;;658:4307:51;25638:4:3;25615:28;25611:91;;658:4307:51;;-1:-1:-1;;;658:4307:51;;;;;25611:91:3;658:4307:51;;-1:-1:-1;;;25666:25:3;;658:4307:51;;25666:25:3;658:4307:51;-1:-1:-1;;;;;658:4307:51;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;;;658:4307:51;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;-1:-1:-1;;;;;658:4307:51;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;:::i;:::-;6224:57:3;;;;;;;;:::i;:::-;14105:77;;;;:::i;:::-;-1:-1:-1;3575:9:8;658:4307:51;3575:21:8;;-1:-1:-1;;;;;658:4307:51;;-1:-1:-1;;;;;658:4307:51;;;3575:21:8;658:4307:51;;;;;;;;;3575:23:8;;;;;;658:4307:51;3575:23:8;;;;;;;;;-1:-1:-1;3575:23:8;;;658:4307:51;;;;6676:4:8;658:4307:51;;;6660:40:8;658:4307:51;;;;;;;;;3691:65:8;;;;;;;;;658:4307:51;3691:65:8;;;:::i;:::-;;;;;;;;;;-1:-1:-1;3691:65:8;;;658:4307:51;3664:24:8;;;;658:4307:51;;3664:12:8;658:4307:51;;;;;;;3664:24:8;658:4307:51;3575:9:8;658:4307:51;3766:23:8;;-1:-1:-1;;;;;658:4307:51;;;3766:23:8;:67;;;;;;-1:-1:-1;658:4307:51;;3766:67:8;658:4307:51;;;;;;;;;;;;;3766:67:8;;658:4307:51;3766:67:8;;;:::i;:::-;;;;;;;;;;3851:42;3766:67;3869:23;3766:67;;;658:4307:51;3869:15:8;;:23;:::i;:::-;3851:42;:::i;:::-;658:4307:51;;;14301:15:3;658:4307:51;;14332:22:3;14397:38;;14332:22;:46;658:4307:51;14332:22:3;658:4307:51;14332:22:3;;658:4307:51;;;;;;;;;;14332:22:3;:33;658:4307:51;;;;;;;;;;;;14332:46:3;658:4307:51;;;;;;;;;;;;;;;;;;;;;14397:38:3;;;;658:4307:51;;;;;;;;;;;;14297:216:3;658:4307:51;;-1:-1:-1;;;14473:29:3;;658:4307:51;;14473:29:3;3766:67:8;;;;;;:::i;:::-;;;:::i;:::-;;;;;;:::i;3691:65::-;;;;;;-1:-1:-1;3691:65:8;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;3575:23;;;;;;;;;;;;;;;:::i;:::-;;;;;658:4307:51;;;;:::i;:::-;6224:57:3;;;;;;;;:::i;:::-;15903:154;;;;:::i;:::-;;16129:38;:22;;658:4307:51;;;;;;;;;;16129:22:3;658:4307:51;;-1:-1:-1;;;;658:4307:51;-1:-1:-1;;;658:4307:51;;;;16129:38:3;3032:9:8;658:4307:51;-1:-1:-1;;;;;658:4307:51;;;;16267:4:3;16244:28;16240:258;;658:4307:51;4940:15;;;;658:4307;4940:15;;;:::i;:::-;3032:9:8;658:4307:51;16267:4:3;;658:4307:51;-1:-1:-1;;;;;658:4307:51;16655:28:3;;:56;;;658:4307:51;16651:110:3;;658:4307:51;;;;;;16776:28:3;;658:4307:51;;16776:28:3;658:4307:51;;;;;;;;;;;;;16651:110:3;16727:21;1536:4:33;16026:20:3;1536:4:33;5141:109:47;16727:21:3;16651:110;;16655:56;16688:23;16687:24;16688:23;16026:20;658:4307:51;-1:-1:-1;;;;;658:4307:51;;;;;5653:26:47;5564:122;;16688:23:3;16687:24;;658:4307:51;16687:24:3;16655:56;;16240:258;16293:13;;;;-1:-1:-1;16328:3:3;658:4307:51;;16308:18:3;;;;;16328:3;16267:4;;16355:27;:10;;;;;:::i;:::-;658:4307:51;-1:-1:-1;;;;;658:4307:51;;;16355:27:3;;16351:123;;16328:3;:::i;:::-;16293:13;;16351:123;16431:23;16441:12;;;;:::i;:::-;;658:4307:51;;;;;16431:23:3;;:::i;:::-;16328:3;:::i;16308:18::-;-1:-1:-1;16308:18:3;;;;16240:258;;658:4307:51;;;;;;-1:-1:-1;;658:4307:51;;;;;;-1:-1:-1;658:4307:51;;;;;;;-1:-1:-1;658:4307:51;;;;;;;;;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;;1635:138:3;658:4307:51;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;1289:12:7;658:4307:51;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;658:4307:51;;;:::o;:::-;;:::i;:::-;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;658:4307:51;;;;;2397:23;658:4307;;2397:23;:::i;:::-;658:4307;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;1159:44:6;658:4307:51;;;;;:::i;:::-;;;-1:-1:-1;658:4307:51;1159:14:6;658:4307:51;;;;-1:-1:-1;658:4307:51;1159:35:6;658:4307:51;;;;;;;;;;;;;;;;1159:44:6;658:4307:51;;;;;;;;;;;;;;;;;:::i;:::-;6224:57:3;;;;;;;;;;:::i;:::-;2397:23:51;;;:::i;:::-;658:4307;;;;;;30491:42:3;30490:86;;;658:4307:51;18439:36:3;18435:91;;658:4307:51;3152:58;;;;;;:::i;:::-;658:4307;;;;;;;;;;;;;18435:91:3;658:4307:51;;-1:-1:-1;;;18484:42:3;;658:4307:51;18484:42:3;;658:4307:51;;;;735:10:30;658:4307:51;;;;;;18484:42:3;;;;;30490:86;658:4307:51;;-1:-1:-1;658:4307:51;;;;;;;;;;-1:-1:-1;658:4307:51;;;735:10:30;30538:38:3;30490:86;;658:4307:51;;;;;;-1:-1:-1;;658:4307:51;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;658:4307:51;;;;;;-1:-1:-1;658:4307:51;1476:14:6;658:4307:51;;;-1:-1:-1;658:4307:51;;;;1570:25:6;1547:21;;;658:4307:51;1570:25:6;;658:4307:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;658:4307:51;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;658:4307:51;;;;;23185:65:3;658:4307:51;;:::i;:::-;;;;;;:::i;:::-;-1:-1:-1;658:4307:51;;;;;;;;:::i;:::-;-1:-1:-1;658:4307:51;;735:10:30;658:4307:51;;23185:65:3;:::i;:::-;658:4307:51;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;658:4307:51;;;;;;;;;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;658:4307:51;;;;;;:::i;:::-;;;;;;;:::i;:::-;-1:-1:-1;;;;;658:4307:51;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;-1:-1:-1;;658:4307:51;;;;;;:::i;:::-;-1:-1:-1;;;;;658:4307:51;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;20988:53:3;658:4307:51;;;;;;;;;:::i;:::-;;;;;:::i;:::-;735:10:30;;658:4307:51;;20988:53:3;:::i;658:4307:51:-;;;;;;-1:-1:-1;;658:4307:51;;;;;1885:64:10;658:4307:51;;1885:64:10;:::i;658:4307:51:-;;;;;;;:::o;:::-;;;;;;-1:-1:-1;;658:4307:51;;;;;;;;;:::i;:::-;3420:72:3;;:::i;:::-;2816:12:7;658:4307:51;2801:44:7;658:4307:51;;;;;;;;;;;;;;;;;;2801:44:7;-1:-1:-1;;658:4307:51;;2816:12:7;658:4307:51;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;:::i;:::-;;;-1:-1:-1;;;;;658:4307:51;;;;;;;;23185:65:3;658:4307:51;;;;;;:::i;:::-;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;658:4307:51;;;;-1:-1:-1;;;;;658:4307:51;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2653:54;658:4307;;;;;;;;;;;:::i;:::-;2653:54;;:::i;658:4307::-;;;;;;-1:-1:-1;;658:4307:51;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;658:4307:51;624:7:32;658:4307:51;;;;-1:-1:-1;658:4307:51;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;658:4307:51;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;6198:41:38;:5;:41;:::i;:::-;658:4307:51;6653:47:38;:8;:47;:::i;:::-;658:4307:51;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;5689:13:38;;658:4307:51;;;;5724:4:38;658:4307:51;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;658:4307:51;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;658:4307:51;;;;21304:204:3;658:4307:51;21523:6:3;658:4307:51;;;;;;:::i;:::-;-1:-1:-1;;;;;658:4307:51;;-1:-1:-1;658:4307:51;;;1121:7:32;658:4307:51;;;;;;;;;;;;;21373:102:3;;658:4307:51;;;21400:73:3;;658:4307:51;1489:81:3;658:4307:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21400:73:3;;;;;:::i;:::-;658:4307:51;21390:84:3;;21373:102;:::i;:::-;21304:204;;:::i;21523:6::-;21519:75;;658:4307:51;21611:41:3;658:4307:51;;;;;:::i;:::-;21611:41:3;;:::i;21519:75::-;658:4307:51;;-1:-1:-1;;;21552:31:3;;-1:-1:-1;;;;;658:4307:51;;;21552:31:3;;658:4307:51;;;18484:42:3;658:4307:51;;;;;;-1:-1:-1;;658:4307:51;;;;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;;2146:3:10;658:4307:51;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;658:4307:51;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;658:4307:51;;-1:-1:-1;;;1998:40:9;;-1:-1:-1;;;;;658:4307:51;;;;1998:40:9;;658:4307:51;;;;;;;;;;;;;867:6:9;658:4307:51;1998:40:9;;;;;;658:4307:51;1998:40:9;-1:-1:-1;1998:40:9;;;658:4307:51;-1:-1:-1;658:4307:51;;;;;;;;;;;;;1998:40:9;;;;658:4307:51;1998:40:9;;;;;;;;;:::i;:::-;;;;658:4307:51;;;;;;-1:-1:-1;;658:4307:51;;;;;-1:-1:-1;;;;;1634:32:10;;:::i;:::-;658:4307:51;;;;;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;;;;:::i;:::-;3420:72:3;;:::i;:::-;6267:9:8;658:4307:51;6244:56:8;658:4307:51;;;;;;;;;;;;;;;;;;;;;;6244:56:8;-1:-1:-1;;;;;;658:4307:51;;6267:9:8;658:4307:51;;;;;;;6224:57:3;658:4307:51;;;:::i;:::-;6224:57:3;;;;;:::i;658:4307:51:-;;;;;;-1:-1:-1;;658:4307:51;;;;;;;3221:4:8;658:4307:51;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;-1:-1:-1;658:4307:51;;;;;;8574:33:3;658:4307:51;-1:-1:-1;658:4307:51;8574:33:3;658:4307:51;;;;;;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;1641:18:7;658:4307:51;;;;;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;;;:::i;:::-;;;;;:::i;:::-;-1:-1:-1;;;;;658:4307:51;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;-1:-1:-1;;;;;;658:4307:51;;;;;;;;;;;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;;;;:::i;:::-;;;-1:-1:-1;;658:4307:51;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;658:4307:51;;;;-1:-1:-1;658:4307:51;;;24959:45:3;658:4307:51;;;;;;:::i;:::-;3420:72:3;;;:::i;:::-;658:4307:51;;;;;;;;;;;;;24918:31:3;658:4307:51;;;24918:31:3;;;;;:::i;:::-;24959:45;;:::i;658:4307:51:-;;;;;;-1:-1:-1;;658:4307:51;;;;3032:9:8;658:4307:51;;;-1:-1:-1;;;;;658:4307:51;;;;;;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;658:4307:51;;;;;;;1489:81:3;658:4307:51;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;;;;;;;;;;;3420:72:3;;:::i;:::-;3092:20:7;;3088:88;;3190:47;658:4307:51;;;3206:13:7;658:4307:51;;;;;;;;;;;;;;;3190:47:7;658:4307:51;;;;;;;;3206:13:7;658:4307:51;-1:-1:-1;658:4307:51;;3088:88:7;658:4307:51;;-1:-1:-1;;;3135:30:7;;-1:-1:-1;658:4307:51;3135:30:7;;658:4307:51;;;3135:30:7;658:4307:51;;;;;;-1:-1:-1;;658:4307:51;;;;;;;;;;;:::i;:::-;-1:-1:-1;658:4307:51;;;;;:::i;:::-;;;;-1:-1:-1;;;1998:40:9;;-1:-1:-1;;;;;658:4307:51;;;;1998:40:9;;658:4307:51;;;;;;;;;;;;;867:6:9;658:4307:51;1998:40:9;;;;;;658:4307:51;1998:40:9;-1:-1:-1;1998:40:9;;;-1:-1:-1;658:4307:51;;;;;;;;;;;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;3420:72:3;;:::i;:::-;3529:18:7;658:4307:51;;;;;;;;;;;;;3508:62:7;;;3529:18;658:4307:51;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;;;:::i;:::-;;;;;:::i;:::-;;;-1:-1:-1;;;;;658:4307:51;;;;;;;;;;;:::i;:::-;-1:-1:-1;3032:9:8;658:4307:51;-1:-1:-1;;;;;658:4307:51;26108:4:3;26085:28;26081:91;;658:4307:51;;-1:-1:-1;;;658:4307:51;;;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;;-1:-1:-1;;;2402:37:10;;658:4307:51;;;2402:37:10;;;658:4307:51;;;;;;;;867:6:9;-1:-1:-1;;;;;658:4307:51;2402:37:10;;;;;;658:4307:51;2402:37:10;2390:99;2402:37;-1:-1:-1;2402:37:10;;;658:4307:51;1885:64:10;;;;:::i;:::-;2390:99;;:::i;2402:37::-;1885:64;2402:37;;;;;658:4307:51;2402:37:10;;;;;;;;;:::i;:::-;;;;;658:4307:51;;;;;;-1:-1:-1;;658:4307:51;;;;;;867:6:9;-1:-1:-1;;;;;658:4307:51;;;;;;3798:142:3;3032:9:8;658:4307:51;-1:-1:-1;;;;;658:4307:51;3870:4:3;3847:28;3843:91;;3798:142::o;658:4307:51:-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;658:4307:51;;:::o;:::-;;;;;;;;;;;;;;;-1:-1:-1;658:4307:51;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;;;658:4307:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;658:4307:51;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;5642:299:3;;;658:4307:51;5642:299:3;5877:55;5642:299;658:4307:51;;5877:55:3;;;658:4307:51;;5877:55:3;;;658:4307:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;5877:55:3;;;;;;;;:::i;:::-;658:4307:51;5867:66:3;;5642:299;:::o;658:4307:51:-;;;;;;;;;;;;8030:178:3;-1:-1:-1;658:4307:51;8131:10:3;658:4307:51;;;-1:-1:-1;658:4307:51;;;;;;;;;;;;;;;;;;;;;8030:178:3;:::o;658:4307:51:-;;:::i;:::-;-1:-1:-1;;658:4307:51;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;:::i;21743:950:3:-;;;;;;;22014:516;22545:6;21743:950;22083:414;22334:16;;;658:4307:51;;;;;;-1:-1:-1;658:4307:51;1121:7:32;658:4307:51;;;-1:-1:-1;658:4307:51;;;;;;;;;759:395:32;;22334:16:3;658:4307:51;;;;;:::i;:::-;;;;;;22376:24:3;658:4307:51;;;;;22426:17:3;658:4307:51;;;22148:317:3;658:4307:51;22148:317:3;;658:4307:51;1635:138:3;658:4307:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22148:317:3;;;;;:::i;22083:414::-;22014:516;;:::i;22545:6::-;22541:75;;22633:53;658:4307:51;;;;;;;;:::i;:::-;22633:53:3;;:::i;22541:75::-;658:4307:51;;-1:-1:-1;;;22574:31:3;;-1:-1:-1;;;;;658:4307:51;;22574:31:3;;;658:4307:51;;;18484:42:3;23002:255;;23185:65;23002:255;;658:4307:51;;;;;;:::i;:::-;;;;23185:65:3;:::i;658:4307:51:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;23539:769:3:-;;;;2397:23:51;;;:::i;:::-;658:4307;;;;;;;27300:1:3;658:4307:51;;;;27819:48:3;:62;27815:172;;658:4307:51;;-1:-1:-1;658:4307:51;7923:10:3;658:4307:51;;2454:864:6;;7916:39:3;7923:32;658:4307:51;-1:-1:-1;658:4307:51;;;;;;;;;7923:32:3;658:4307:51;;;;7916:39:3;2454:864:6;;:::i;:::-;;;;;:::i;:::-;658:4307:51;;;24015:18:3;24011:226;24015:13;;;658:4307:51;24054:59:3;;658:4307:51;;;;;;;;;;;;;24054:59:3;;;:::i;:::-;;;;23539:769;:::o;24011:226::-;24149:77;658:4307:51;24149:77:3;658:4307:51;;;;;;;;;;;;;24149:77:3;;;:::i;27815:172::-;658:4307:51;;-1:-1:-1;;;27904:72:3;;;;;658:4307:51;;;;;;;;;;;;:::i;:::-;;;;;;27904:72:3;658:4307:51;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;-1:-1:-1;658:4307:51;;;;:::o;:::-;;;:::o;9051:446:3:-;3032:9:8;658:4307:51;-1:-1:-1;;;;;658:4307:51;735:10:30;9110:27:3;;9106:99;;9241:4;9218:28;9214:277;;9051:446::o;9214:277::-;658:4307:51;842:8:30;658:4307:51;:::i;:::-;;;;;;;:::i;:::-;842:8:30;658:4307:51;;;;;842:8:30;;-1:-1:-1;658:4307:51;;-1:-1:-1;658:4307:51;842:8:30;658:4307:51;;;;;9284:21:3;;9429:52;9436:26;;;:::i;:::-;:41;9429:52;9436:41;;9051:446::o;9106:99::-;658:4307:51;;-1:-1:-1;;;9160:34:3;;735:10:30;9160:34:3;;;658:4307:51;;;9160:34:3;26438:338;3032:9:8;658:4307:51;-1:-1:-1;;;;;658:4307:51;26653:4:3;26630:28;26626:91;;-1:-1:-1;;;658:4307:51;26438:338:3:o;658:4307:51:-;;;;12945:32:3;658:4307:51;;;;;;;;;;;;;;:::i;:::-;;;:::o;27638:384:3:-;2397:23:51;;;:::i;:::-;658:4307;;;;;;;;27300:1:3;658:4307:51;;;;27819:48:3;:62;27815:172;;27996:19;27638:384;:::o;27815:172::-;658:4307:51;;;;;27904:72:3;;;;;;;;;658:4307:51;;;;;;:::i;:::-;;;;;;27904:72:3;27638:384;2397:23:51;;;:::i;:::-;658:4307;;;;;;;15961:86:3;27300:1;658:4307:51;;;;27819:48:3;:62;27815:172;;27996:19;27638:384;:::o;27815:172::-;658:4307:51;;;;;27904:72:3;;;;;;;;;658:4307:51;;;;;;:::i;:::-;15961:86:3;658:4307:51;;;;27904:72:3;658:4307:51;;10000:1:46;658:4307:51;;;;;;;:::o;:::-;;;;;;;;;;:::o;2454:864:6:-;2707:26;2454:864;;;;658:4307:51;;2707:14:6;658:4307:51;;;;;;;2707:26:6;2748:21;;;;:30;;;;658:4307:51;;;;;;;;;;;;;;;;2748:30:6;658:4307:51;;;;;2748:30:6;2744:100;;2853:30;658:4307:51;2853:30:6;;:37;:30;658:4307:51;;;;;;;;;;;;;;;;2853:30:6;658:4307:51;;-1:-1:-1;;658:4307:51;2886:4:6;658:4307:51;;;;2853:37:6;658:4307:51;2905:34:6;;;658:4307:51;2955:40:6;658:4307:51;;;2955:40:6;:::i;:::-;658:4307:51;;2454:864:6;:::o;2901:382::-;2886:4;3016:30;;2886:4;;3062:21;2886:4;3062:21;:36;658:4307:51;;;3062:36:6;:::i;3012:271::-;3136:16;3119:34;3136:16;;;3169:25;:40;658:4307:51;;;3169:40:6;:::i;3115:168::-;658:4307:51;;-1:-1:-1;;;3247:25:6;;;;;2744:100;658:4307:51;;-1:-1:-1;;;2801:32:6;;-1:-1:-1;;;;;658:4307:51;;2801:32:6;;;658:4307:51;;;18484:42:3;658:4307:51;;;;;;;;;;1057:224:9;658:4307:51;;-1:-1:-1;;;1134:15:9;;;658:4307:51;1134:15:9;658:4307:51;867:6:9;-1:-1:-1;;;;;658:4307:51;1134:15:9;;;;;;;1057:224;-1:-1:-1;1130:145:9;;1020:12:48;1002:31;1020:12;1002:31;:::i;1134:15:9:-;;;;;;;;;;;;;;;;;:::i;:::-;;;658:4307:51;;;;;;;;;:::i;:::-;1134:15:9;;;;;;;-1:-1:-1;1134:15:9;;658:4307:51;;;;;;;:::i;:::-;;;;;;;;;:::o;1436:261:9:-;658:4307:51;;-1:-1:-1;;;1525:20:9;;;;658:4307:51;1525:20:9;658:4307:51;867:6:9;-1:-1:-1;;;;;658:4307:51;1525:20:9;;;;;;;;1436:261;-1:-1:-1;;1521:170:9;;658:4307:51;;;:::i;1525:20:9:-;;;;;;;;;;;;;;:::i;:::-;;;658:4307:51;;;;;;;;;;;-1:-1:-1;;;;;658:4307:51;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1525:20:9;;;;;658:4307:51;;;;;;;;;;;;;;;;;;;:::o;1822:223:9:-;658:4307:51;;-1:-1:-1;;;1998:40:9;;-1:-1:-1;;;;;658:4307:51;;;1998:40:9;;;658:4307:51;;;;;;;;1998:40:9;;658:4307:51;;;;;;867:6:9;658:4307:51;1998:40:9;;;;;;;-1:-1:-1;1998:40:9;;;1991:47;1822:223;:::o;1998:40::-;;;;;;;;;;;;;;:::i;3722:460:10:-;4054:24;;:::i;:::-;4095:80;-1:-1:-1;;;658:4307:51;;;;4095:16:10;-1:-1:-1;4095:16:10;;:80;;;;-1:-1:-1;;;;;658:4307:51;;3722:460:10:o;4095:80::-;4146:28;;;;;;:::i;:::-;1914:23;658:4307:51;9738:15:46;;9763:18;;9802:1;9796:7;;9792:234;;4095:80:10;10050:53:46;;;;;:::i;:::-;10121:8;;;:63;4095:80:10;;10121:63:46;10136:48;10169:7;;;10136:41;10169:7;;:::i;:::-;1914:23:10;14441:109:46;;-1:-1:-1;;;;;;;;;;;14441:109:46;14291:265;;10136:41;658:4307:51;;;;;10136:48:46;4095:80:10;;9792:234:46;9839:14;;;;;:::i;:::-;658:4307:51;;;;;;;10050:53:46;14441:109;1914:23:10;14441:109:46;;;;-1:-1:-1;;;;;;;;;;;14441:109:46;658:4307:51;;;;;9871:48:46;9867:149;658:4307:51;;;9939:10:46;9867:149;;9792:234;;;9867:149;9994:7;;;;;;:::i;:::-;9867:149;;;5221:224:29;;;;5337:8;;-1:-1:-1;658:4307:51;;5690:21:29;:17;;5815:158;;;;;;5686:354;658:4307:51;;-1:-1:-1;;;6010:19:29;;;;;5017:176:38;3993:249:39;5017:176:38;5153:20;;:::i;:::-;3993:249:39;;;;-1:-1:-1;;;3993:249:39;;;;;;;;;;;5017:176:38;:::o;3945:262::-;4029:4;4038:11;-1:-1:-1;;;;;658:4307:51;4021:28:38;;:63;;3945:262;4017:184;;;4107:22;4100:29;:::o;4017:184::-;658:4307:51;;4304:80:38;;;658:4307:51;2079:95:38;658:4307:51;;4326:11:38;658:4307:51;2079:95:38;;658:4307:51;4339:14:38;2079:95;;;658:4307:51;4355:13:38;2079:95;;;658:4307:51;4029:4:38;658:4307:51;2079:95:38;;658:4307:51;;4304:80:38;;;;;:::i;4021:63::-;4070:14;;4053:13;:31;4021:63;;3368:267:34;1390:66;3491:46;;1390:66;;;2625:40;;2679:11;2688:2;2679:11;;2675:69;;658:4307:51;;;;;;:::i;:::-;2324:106:34;;2311:2;658:4307:51;;2324:106:34;3553:22;:::o;2675:69::-;658:4307:51;;-1:-1:-1;;;2713:20:34;;;;;3487:142;658:4307:51;;;-1:-1:-1;658:4307:51;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;1390:66:34;;;;;;;:::i;658:4307:51:-;-1:-1:-1;658:4307:51;;;-1:-1:-1;;658:4307:51;;;;;;;-1:-1:-1;1390:66:34;;-1:-1:-1;;658:4307:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1390:66:34;658:4307:51;;;;;;;;;;;;;;;;;;;;3368:267:34;1390:66;3491:46;;1390:66;;;2625:40;;2679:11;2688:2;2679:11;;2675:69;;658:4307:51;;;;;;:::i;3487:142:34:-;658:4307:51;;;-1:-1:-1;6683:16:38;;658:4307:51;;;;;;;:::i;:::-;;;;;;;;;6683:16:38;;;;658:4307:51;;;;;1390:66:34;;;;;;;:::i;658:4307:51:-;-1:-1:-1;658:4307:51;;;-1:-1:-1;;658:4307:51;;;;;;;-1:-1:-1;1390:66:34;;-1:-1:-1;;658:4307:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;658:4307:51;;;:::o;1041:429:40:-;;;1167:18;;;;1254:33;;;;:::i;:::-;658:4307:51;;;;:::i;:::-;1308:33:40;:56;;;;1301:63;;;:::o;1308:56::-;-1:-1:-1;;;;;658:4307:51;;;;;1345:19:40;;1301:63;-1:-1:-1;1301:63:40:o;1163:301::-;1189:1;658:4307:51;;;;;2105:60:40;;658:4307:51;2105:60:40;;;;;;;;;;;;;;658:4307:51;;;;;;;;;;;:::i;:::-;2105:60:40;658:4307:51;;2105:60:40;;;;;;:::i;:::-;2074:101;;;;;;;:::i;:::-;2193:42;;;1163:301;2193:134;;;1395:58;;;:::o;2193:134::-;2251:29;658:4307:51;;;2105:60:40;658:4307:51;;;2251:29:40;;;;;;:::i;:::-;:76;1395:58;:::o;2193:42::-;658:4307:51;;2105:60:40;658:4307:51;;2216:19:40;;2193:42;;;2129:778:37;658:4307:51;;;2129:778:37;2319:2;2299:22;;2319:2;;2751:25;2535:196;;;;;;;;;;;;;;;-1:-1:-1;2535:196:37;2751:25;;:::i;:::-;2744:32;;;;;:::o;2295:606::-;2807:83;;2823:1;2807:83;2827:35;2807:83;;:::o;5203:1551::-;;;6283:66;6270:79;;6266:164;;658:4307:51;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6541:24:37;;;;;;;;;;;;;;-1:-1:-1;;;;;658:4307:51;;6579:20:37;6575:113;;6698:49;;5203:1551;:::o;6575:113::-;6615:62;;;6541:24;6615:62;;:::o;6266:164::-;6365:54;;;6381:1;6365:54;6385:30;6365:54;;:::o;14296:213:44:-;658:4307:51;14374:24:44;;;;14370:103;;658:4307:51;14296:213:44;:::o;14370:103::-;658:4307:51;;;;4302:42:44;;;;14421:41;;14452:2;14421:41;;;658:4307:51;;;;;14421:41:44;658:4307:51;-1:-1:-1;;658:4307:51;;;;;;;;:::o;:::-;;;;;;;:::o;:::-;;;;;;;;;;;;20567:5181:43;20733:1;20728:6;;;20724:53;;20733:1;21704:14;-1:-1:-1;;;21765:16:43;;;21761:92;;20567:5181;25314:18;25204;25094;24985;24874;24765;25703:28;21870:15;22385:6;21870:15;-1:-1:-1;;;25724:6:43;21870:15;;;21866:90;;20567:5181;21980:7;21973:15;;;21969:90;;20567:5181;22083:7;22076:15;;;22072:89;;20567:5181;22185:6;22178:14;;;22174:87;;20567:5181;22285:6;22278:14;;;22274:87;;20567:5181;22378:14;;22374:61;;20567:5181;22861:1;658:4307:51;20733:1:43;658:4307:51;24771:6:43;;;;:::i;:::-;658:4307:51;;;;;24765:18:43;24880:6;;;;:::i;24874:18::-;24991:6;;;;:::i;24985:18::-;25100:6;;;;:::i;25094:18::-;25210:6;;;;:::i;25204:18::-;25320:6;;;;:::i;25314:18::-;25724:6;;;:::i;:::-;25719:11;;;658:4307:51;25703:28:43;658:4307:51;;20567:5181:43;:::o;22374:61::-;20733:1;658:4307:51;22374:61:43;;22274:87;658:4307:51;;;;;22274:87:43;;;22174;658:4307:51;;;;;22174:87:43;;;22072:89;658:4307:51;;;;;22072:89:43;;;21969:90;658:4307:51;;;;;21969:90:43;;;21866;658:4307:51;;;;;21866:90:43;;;21761:92;-1:-1:-1;;;;658:4307:51;-1:-1:-1;21772:8:43;658:4307:51;;;21761:92:43;;10311:206:46;1634:23:10;658:4307:51;10406:17:46;;10447:8;;;:63;;10406:17;10311:206;:::o;10447:63::-;658:4307:51;;;;;;;;1634:23:10;14441:109:46;;;;658:4307:51;;;10311:206:46;:::o;10696:389::-;1914:23:10;658:4307:51;10872:8:46;;;10896:20;10834:17;10896:20;10834:17;10896:20;10834:17;10896:20;:::o;10868:211::-;658:4307:51;;;;;;;;1914:23:10;658:4307:51;14441:109:46;;;658:4307:51;11015:1:46;;658:4307:51;;;;;;;11031:37:46:o;658:4307:51:-;1634:23:10;658:4307:51;;-1:-1:-1;;;658:4307:51;;;;;;;;;1634:23:10;658:4307:51;;;;;;;;1634:23:10;-1:-1:-1;658:4307:51;-1:-1:-1;;;;;;;;;;;658:4307:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;658:4307:51;;;;;11659:922:46;1634:23:10;658:4307:51;11659:922:46;;;11866:7;;;;11938;11918:28;11938:7;;:::i;11918:28::-;658:4307:51;;;;;;;;;;;;12105:13:46;;;12101:89;;12253:14;;;;;12287:19;;;658:4307:51;;;;;;;;;;;;;;;;;12287:19:46;658:4307:51;;12425:25:46;;:::o;12249:163::-;658:4307:51;;12345:52:46;658:4307:51;12355:41:46;658:4307:51;;:::i;:::-;;;;;;;;12355:41:46;-1:-1:-1;;;;;658:4307:51;;12355:41:46;;;658:4307:51;12345:52:46;:::i;:::-;12249:163;;12101:89;658:4307:51;;-1:-1:-1;;;12145:30:46;;;;;11862:713;658:4307:51;12481:52:46;658:4307:51;12491:41:46;658:4307:51;;:::i;12491:41:46:-;-1:-1:-1;;;;;658:4307:51;;12491:41:46;;;658:4307:51;12345:52:46;:::i;12481:::-;11872:1;12547:17;;:::o;12931:433::-;;13114:10;;;;;;13346:11;;12931:433;:::o;13107:230::-;5967:5:43;;;;;5977;;;;658:4307:51;;;;;;;;;1914:23:10;-1:-1:-1;14441:109:46;658:4307:51;14441:109:46;;-1:-1:-1;;;;;;;;;;;14441:109:46;658:4307:51;;;;;-1:-1:-1;13191:136:46;658:4307:51;;;13250:10:46;13191:136;;13107:230;;;13191:136;13305:7;;;;;;:::i;:::-;13191:136;;;1637:317:47;16026:20:3;658:4307:51;;;;;1801:1:47;658:4307:51;;;-1:-1:-1;;;;;658:4307:51;;;;;;1789:29:47;1785:68;;-1:-1:-1;1536:4:33;1867:11:47;1536:4:33;;;-1:-1:-1;1536:4:33;658:4307:51;16026:20:3;1536:4:33;;-1:-1:-1;;;;;1536:4:33;;658:4307:51;1536:4:33;;;;;16026:20:3;1536:4:33;1637:317:47:o;1785:68::-;1829:135:33;-1:-1:-1;1829:135:33;1536:4;1829:135;;;;;3149:373:47;9436:15:3;658:4307:51;;-1:-1:-1;;;;;658:4307:51;;;;;;3313:24:47;;3309:64;;1536:4:33;-1:-1:-1;1536:4:33;3395:11:47;1536:4:33;;3395:11:47;1536:4:33;-1:-1:-1;1536:4:33;1315;-1:-1:-1;1315:4:33;;;;658:4307:51;;-1:-1:-1;;;;;1536:4:33;9436:15:3;1315:4:33;;;9436:15:3;1315:4:33;3149:373:47:o;3309:64::-;1829:135:33;-1:-1:-1;1829:135:33;1315:4;1829:135;;;;;7242:3683:43;-1:-1:-1;;1412:159:43;;;;;;;;;;;;;;;;;7498:9;;7494:365;;7969:19;2146:3:10;7969:19:43;;7965:142;;658:4307:51;8390:308:43;2146:3:10;8390:308:43;;;;;;;;658:4307:51;;8390:308:43;;8962:384;;9409:18;658:4307:51;7242:3683:43;:::o;7965:142::-;1829:135:33;658:4307:51;1829:135:33;5306:42:43;1829:135:33;;;;;7494:365:43;658:4307:51;;2146:3:10;658:4307:51;;;7820:24:43;:::o;658:4307:51:-;;;;;;;;;;;;;;;;;;:::o;2122:740:8:-;2249:23;;;:::i;:::-;658:4307:51;;;;:::i;:::-;2303:20:8;2287:36;;2283:86;;2397:24;;;658:4307:51;;3664:12:8;658:4307:51;;;;;;;2397:24:8;1315:4:33;2435:9:8;658:4307:51;2435:28:8;;-1:-1:-1;;;;;658:4307:51;;;2435:28:8;658:4307:51;;-1:-1:-1;;;2435:37:8;;;;;658:4307:51;;;2435:37:8;;658:4307:51;;2435:37:8;658:4307:51;;;;2435:37:8;;;;;;;-1:-1:-1;2435:37:8;;;2122:740;-1:-1:-1;2431:425:8;;;2488:27;;;2303:20;2488:27;:::o;2431:425::-;658:4307:51;;-1:-1:-1;;;2536:34:8;;2435:37;2536:34;;658:4307:51;;;;;;;;;;;;2536:34:8;;;;;;;-1:-1:-1;2536:34:8;;;2431:425;-1:-1:-1;;2532:324:8;;;2678:22;2671:29;:::o;2532:324::-;2823:22;2816:29;:::o;2536:34::-;;;;;;-1:-1:-1;2536:34:8;;;;;;;:::i;:::-;;;;;:::i;:::-;;;;;;;;;;2435:37;;;;;;;;;;;;;;:::i;:::-;;;;2283:86;2339:19;;:::o;6345:1248:3:-;6559:22;;658:4307:51;;;;;;;;;;6559:22:3;658:4307:51;;;;;;6694:76:3;;658:4307:51;;6780:76:3;;7916:39;7923:32;:22;;658:4307:51;;;;;;;;;;7923:22:3;658:4307:51;;;;;;;7916:39:3;6928:13;;6924:90;;7024:34;7051:7;;:::i;7024:34::-;7073:28;;;;7069:87;;7185:28;;;:::i;:::-;7228;;;7272:27;7279:20;7272:27;:::o;7224:363::-;7320:27;7321:26;;;:::i;7320:27::-;:58;;;;7224:363;7316:271;;;7394:29;7401:22;7394:29;:::o;7316:271::-;8574:33;;:22;8567:40;8574:22;658:4307:51;;;;;;;;;;8574:22:3;:33;658:4307:51;;;;;8567:40:3;8574:33;;6559:10;7488:30;:::o;7440:147::-;7556:20;7549:27;:::o;7320:58::-;7352:26;7351:27;7352:26;;-1:-1:-1;658:4307:51;2214:14:6;658:4307:51;;;-1:-1:-1;658:4307:51;2258:21:6;;;658:4307:51;;;-1:-1:-1;2078:236:6;;7351:27:3;7320:58;;7069:87;7117:28;;-1:-1:-1;7117:28:3;:::o;6924:90::-;658:4307:51;;-1:-1:-1;;;6964:39:3;;6559:10;6964:39;;658:4307:51;;;;;18484:42:3;6780:76;6816:29;6823:22;6816:29;:::o;6694:76::-;6730:29;;6737:22;6730:29;:::o;1668:276:6:-;-1:-1:-1;658:4307:51;1804:14:6;658:4307:51;;;-1:-1:-1;658:4307:51;7923:10:3;658:4307:51;;;;-1:-1:-1;658:4307:51;;;;;;;;;;2402:37:10;;;7923:10:3;2402:37:10;;658:4307:51;;;;;;;;;;867:6:9;658:4307:51;2402:37:10;;;;;;1888:49:6;2402:37:10;2390:99;2402:37;-1:-1:-1;2402:37:10;;;1885:64;;;;:::i;2390:99::-;1888:21:6;1912:25;658:4307:51;1888:21:6;;658:4307:51;1912:25:6;;658:4307:51;1888:49:6;;:::i;:::-;-1:-1:-1;1848:89:6;1668:276;:::o;11346:863:3:-;;;;;;11636:53;735:10:30;;11636:53:3;:::i;:::-;11635:54;11631:128;;1641:18:7;658:4307:51;11863:18:3;;11859:267;;11346:863;12143:59;735:10:30;;;;12143:59:3;;:::i;11859:267::-;658:4307:51;-1:-1:-1;;658:4307:51;11940:7:3;;:::i;:::-;658:4307:51;;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;1998:40:9;;735:10:30;1998:40:9;;;658:4307:51;;;;;;;;;;;867:6:9;-1:-1:-1;;;;;658:4307:51;1998:40:9;;;;;;;658:4307:51;1998:40:9;;;11859:267:3;11970:30;;;;11966:150;;11859:267;;;11966:150;658:4307:51;;-1:-1:-1;;;12027:74:3;;735:10:30;1998:40:9;12027:74:3;;658:4307:51;;;;;;;;;;;;;;;;18484:42:3;1998:40:9;;;;658:4307:51;1998:40:9;;;;;;;;;:::i;:::-;;;;11631:128:3;658:4307:51;;-1:-1:-1;;;11712:36:3;;735:10:30;11712:36:3;;;658:4307:51;;;11712:36:3;658:4307:51;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;658:4307:51;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;12386:1374:3;;;;;;;6224:57;658:4307:51;;;;;12683:29:3;6224:57;;;;:::i;:::-;658:4307:51;;;;;12728:31:3;;;;;;:69;;;12386:1374;12728:92;;;;12386:1374;12724:208;;658:4307:51;;;12945:22:3;;:32;:22;;658:4307:51;;;;;;;;;;12945:32:3;658:4307:51;12941:149:3;;13423:257;13119:7;13423:257;13119:7;658:4307:51;13119:23:3;:7;;:::i;:::-;1289:12:7;658:4307:51;;;;;;;13119:23:3;:::i;:::-;658:4307:51;;;;13356:51:3;13228:22;;658:4307:51;;;;;;;;;;13228:22:3;658:4307:51;;-1:-1:-1;;;;;;658:4307:51;-1:-1:-1;;;;;658:4307:51;;;;;13298:48:3;13319:27;;;:::i;:::-;658:4307:51;;-1:-1:-1;;;;658:4307:51;;;;;;-1:-1:-1;;;658:4307:51;;;;;13298:48:3;13380:27;;;:::i;:::-;658:4307:51;;-1:-1:-1;;;;658:4307:51;;;;;;-1:-1:-1;;;658:4307:51;;;;;13356:51:3;13626:19;13539:28;658:4307:51;;13539:28:3;:::i;:::-;13626:19;;;:::i;:::-;658:4307:51;;;13423:257:3;;;;;;:::i;:::-;;;;12386:1374::o;12941:149::-;2397:23:51;;;;:::i;:::-;658:4307;;-1:-1:-1;;;13005:74:3;;658:4307:51;;;13005:74:3;;12945:10;13005:74;;;:::i;12724:208::-;658:4307:51;;;;-1:-1:-1;;;12843:78:3;;;;;658:4307:51;;;;;;;;;;;;;;;;;18484:42:3;12728:92;12801:19;;;12728:92;;:69;658:4307:51;;;12763:34:3;;;12728:69;;29148:999;;658:4307:51;;29466:2:3;29457:11;;29453:61;;-1:-1:-1;;31714:95:3;;;;;-1:-1:-1;;;;;;658:4307:51;-1:-1:-1;;;29790:31:3;29786:81;;30019:57;;-1:-1:-1;;658:4307:51;;;30019:57:3;:::i;:::-;30097:8;;658:4307:51;;;30097:33:3;;30090:40;;29148:999;:::o;29786:81::-;29841:11;;;29848:4;29841:11;:::o;658:4307:51:-;;;;;;;;;15735:1:36;658:4307:51;;;;;;;:::o;:::-;;;;;;;;;13398:2:36;658:4307:51;;;;;;;:::o;15249:889:36:-;;;658:4307:51;;15419:25:36;;:40;;;;15249:889;15415:72;;15522:9;;;:::i;:::-;15516:15;;15515:88;;;15249:889;15714:22;34863:71:44;;;15714:22:36;:::i;:::-;15709:2;658:4307:51;;15709:2:36;658:4307:51;;;;;;;;;;;15801:29:36;15709:27;;15969:50;;;:::i;:::-;16033:31;;-1:-1:-1;;;;;658:4307:51;;;;16033:31:36:o;15797:335::-;16095:26;;;-1:-1:-1;16095:26:36;-1:-1:-1;16095:26:36;:::o;15515:88::-;-1:-1:-1;31714:95:3;;;;;;-1:-1:-1;;;;;;658:4307:51;-1:-1:-1;;;15536:67:36;15515:88;;15419:40;15448:11;;;;15419:40;;12680:1052;;;;12967:9;;;:::i;:::-;12961:15;;12960:82;;;12680:1052;13140:22;34863:71:44;;;13140:22:36;:::i;:::-;13173:18;-1:-1:-1;658:4307:51;;;;;;;;13206:26:36;;;13234:7;;;;;;13704:21;;;12975:1;13704:21;12680:1052;:::o;13243:3::-;31714:95:3;;;;658:4307:51;13274:55:36;13287:41;31714:95:3;;;;;;658:4307:51;;;;;;13287:41:36;13274:55;:::i;:::-;658:4307:51;13347:8:36;13353:2;13347:8;;13343:31;;13388:12;;13243:3;13388:12;;:::i;:::-;658:4307:51;13243:3:36;;:::i;:::-;13206:26;;;;;13343:31;-1:-1:-1;;;;;;;;;13357:17:36:o;12960:82::-;-1:-1:-1;31714:95:3;;;;;;-1:-1:-1;;;;;;658:4307:51;-1:-1:-1;;;12981:61:36;12960:82;;16144:524;658:4307:51;;16437:2:36;16429:10;;:24;;;16144:524;16425:203;;;-1:-1:-1;;658:4307:51;;;16144:524:36;:::o;16425:203::-;16497:2;16489:10;;:25;;;16425:203;16485:143;;;-1:-1:-1;;658:4307:51;;;;16144:524:36:o;16485:143::-;16558:2;16550:10;;:24;;;16485:143;16546:82;;;-1:-1:-1;;658:4307:51;;;;:::o;16546:82:36:-;16606:22;658:4307:51;16606:22:36;:::o;16550:24::-;16564:10;16572:2;16564:10;;16550:24;;16489:25;16503:11;16511:3;16503:11;;16489:25;;16429:24;16443:10;16451:2;16443:10;;16429:24;;15296:213:44;658:4307:51;15374:24:44;;;;15370:103;;658:4307:51;15296:213:44;:::o;15370:103::-;658:4307:51;;;;4302:42:44;;;;15421:41;;15452:2;15421:41;;;658:4307:51;;;;;15421:41:44;4907:554:8;;6224:57:3;4907:554:8;;;6224:57:3;:::i;:::-;2397:23:51;;;:::i;:::-;658:4307;;;;;;19238:208:3;27300:1;658:4307:51;;;;27819:48:3;:62;27815:172;;19467:22;:38;:22;;658:4307:51;;;;;;;;;;19467:22:3;2021:56;;-1:-1:-1;;;;;2021:56:3;-1:-1:-1;;;2021:56:3;;;;19467:38;658:4307:51;;;;;19520:28:3;;658:4307:51;;19520:28:3;5229:24:8;;658:4307:51;;3664:12:8;658:4307:51;;;;;;;5229:24:8;1315:4:33;5267:15:8;5263:164;;5437:17;4907:554;:::o;5263:164::-;5320:9;658:4307:51;5320:16:8;;-1:-1:-1;;;;;658:4307:51;;;5320:16:8;:28;;;;;658:4307:51;;-1:-1:-1;;;5320:28:8;;658:4307:51;5320:28:8;;658:4307:51;;;;-1:-1:-1;;658:4307:51;;;;;;-1:-1:-1;;5320:28:8;;;;;;;;5263:164;-1:-1:-1;;658:4307:51;;;3664:12:8;658:4307:51;;;;;1315:4:33;4907:554:8;:::o;5320:28::-;;;;;;:::i;:::-;;;;27815:172:3;658:4307:51;;;;;;27904:72:3;;;;;;;;;658:4307:51;;;;;;:::i;:::-;19238:208:3;658:4307:51;;;;27904:72:3;658:4307:51;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;-1:-1:-1;658:4307:51;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;-1:-1:-1;658:4307:51;;;;;;;;;;:::o;4066:432:8:-;;;;;658:4307:51;;;;;4317:9:8;658:4307:51;;4317:103:8;;;;;;-1:-1:-1;658:4307:51;4317:103:8;658:4307:51;;;;;;;;;;;;4317:103:8;;658:4307:51;;6676:4:8;658:4307:51;;;6660:40:8;4317:103;;;;;:::i;:::-;;4347:9;;4317:103;;;;;;;;-1:-1:-1;4317:103:8;4467:24;4317:103;;;4066:432;4467:24;658:4307:51;;3664:12:8;658:4307:51;;;;;;;4467:24:8;1315:4:33;4066:432:8:o;4317:103::-;;;;:::i;:::-;;;"},"methodIdentifiers":{"BALLOT_TYPEHASH()":"deaaa7cc","CLOCK_MODE()":"4bf5d7e9","COUNTING_MODE()":"dd4e2ba5","EXTENDED_BALLOT_TYPEHASH()":"2fe3e261","cancel(address[],uint256[],bytes[],bytes32)":"452115d6","castVote(uint256,uint8)":"56781388","castVoteBySig(uint256,uint8,address,bytes)":"8ff262e3","castVoteWithReason(uint256,uint8,string)":"7b3c71d3","castVoteWithReasonAndParams(uint256,uint8,string,bytes)":"5f398a14","castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)":"5b8d0e0d","clock()":"91ddadf4","eip712Domain()":"84b0196e","execute(address[],uint256[],bytes[],bytes32)":"2656227d","getProposalId(address[],uint256[],bytes[],bytes32)":"a8f8a668","getVotes(address,uint256)":"eb9019d4","getVotesWithParams(address,uint256,bytes)":"9a802a6d","hasVoted(uint256,address)":"43859632","hashProposal(address[],uint256[],bytes[],bytes32)":"c59057e4","name()":"06fdde03","nonces(address)":"7ecebe00","onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)":"bc197c81","onERC1155Received(address,address,uint256,uint256,bytes)":"f23a6e61","onERC721Received(address,address,uint256,bytes)":"150b7a02","proposalDeadline(uint256)":"c01f9e37","proposalEta(uint256)":"ab58fb8e","proposalNeedsQueuing(uint256)":"a9a95294","proposalProposer(uint256)":"143489d0","proposalSnapshot(uint256)":"2d63f693","proposalThreshold()":"b58131b0","proposalVotes(uint256)":"544ffc9c","propose(address[],uint256[],bytes[],string)":"7d5e81e2","queue(address[],uint256[],bytes[],bytes32)":"160cbed7","quorum(uint256)":"f8ce560a","quorumDenominator()":"97c3d334","quorumNumerator()":"a7713a70","quorumNumerator(uint256)":"60c4247f","relay(address,uint256,bytes)":"c28bc2fa","setProposalThreshold(uint256)":"ece40cc1","setVotingDelay(uint48)":"79051887","setVotingPeriod(uint32)":"e540d01d","state(uint256)":"3e4f49e6","supportsInterface(bytes4)":"01ffc9a7","timelock()":"d33219b4","token()":"fc0c546a","updateQuorumNumerator(uint256)":"06f3f9e6","updateTimelock(address)":"a890c910","version()":"54fd4d50","votingDelay()":"3932abb1","votingPeriod()":"02a251a3"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"contract IVotes\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"contract TimelockController\",\"name\":\"_timelock\",\"type\":\"address\"},{\"internalType\":\"uint48\",\"name\":\"_votingDelay\",\"type\":\"uint48\"},{\"internalType\":\"uint32\",\"name\":\"_votingPeriod\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"_proposalThreshold\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_quorumPercentage\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"CheckpointUnorderedInsertion\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorAlreadyCastVote\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorAlreadyQueuedProposal\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorDisabledDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"votes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"threshold\",\"type\":\"uint256\"}],\"name\":\"GovernorInsufficientProposerVotes\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"calldatas\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"values\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidProposalLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"quorumNumerator\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"quorumDenominator\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidQuorumFraction\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"}],\"name\":\"GovernorInvalidSignature\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteParams\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorInvalidVoteType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"votingPeriod\",\"type\":\"uint256\"}],\"name\":\"GovernorInvalidVotingPeriod\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNonexistentProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"GovernorNotQueuedProposal\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorOnlyExecutor\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"GovernorQueueNotImplemented\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"}],\"name\":\"GovernorRestrictedProposer\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"GovernorUnableToCancel\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"current\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"expectedStates\",\"type\":\"bytes32\"}],\"name\":\"GovernorUnexpectedProposalState\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"proposer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"indexed\":false,\"internalType\":\"string[]\",\"name\":\"signatures\",\"type\":\"string[]\"},{\"indexed\":false,\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteStart\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"voteEnd\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"ProposalCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"ProposalExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"etaSeconds\",\"type\":\"uint256\"}],\"name\":\"ProposalQueued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldProposalThreshold\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newProposalThreshold\",\"type\":\"uint256\"}],\"name\":\"ProposalThresholdSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldQuorumNumerator\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newQuorumNumerator\",\"type\":\"uint256\"}],\"name\":\"QuorumNumeratorUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"oldTimelock\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newTimelock\",\"type\":\"address\"}],\"name\":\"TimelockChange\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"VoteCast\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"weight\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"VoteCastWithParams\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldVotingDelay\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newVotingDelay\",\"type\":\"uint256\"}],\"name\":\"VotingDelaySet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldVotingPeriod\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newVotingPeriod\",\"type\":\"uint256\"}],\"name\":\"VotingPeriodSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"CLOCK_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COUNTING_MODE\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXTENDED_BALLOT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"}],\"name\":\"castVote\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"castVoteWithReason\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"support\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"voter\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"castVoteWithReasonAndParamsBySig\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"clock\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"getProposalId\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"params\",\"type\":\"bytes\"}],\"name\":\"getVotesWithParams\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasVoted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"hashProposal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155BatchReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC1155Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalDeadline\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalEta\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalNeedsQueuing\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalProposer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalSnapshot\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proposalThreshold\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"proposalVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"againstVotes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"forVotes\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"abstainVotes\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"}],\"name\":\"propose\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"targets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"values\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"calldatas\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes32\",\"name\":\"descriptionHash\",\"type\":\"bytes32\"}],\"name\":\"queue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"}],\"name\":\"quorum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"quorumDenominator\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timepoint\",\"type\":\"uint256\"}],\"name\":\"quorumNumerator\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"quorumNumerator\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"relay\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"newProposalThreshold\",\"type\":\"uint256\"}],\"name\":\"setProposalThreshold\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint48\",\"name\":\"newVotingDelay\",\"type\":\"uint48\"}],\"name\":\"setVotingDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"newVotingPeriod\",\"type\":\"uint32\"}],\"name\":\"setVotingPeriod\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"proposalId\",\"type\":\"uint256\"}],\"name\":\"state\",\"outputs\":[{\"internalType\":\"enum IGovernor.ProposalState\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"timelock\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"token\",\"outputs\":[{\"internalType\":\"contract IERC5805\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"newQuorumNumerator\",\"type\":\"uint256\"}],\"name\":\"updateQuorumNumerator\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract TimelockController\",\"name\":\"newTimelock\",\"type\":\"address\"}],\"name\":\"updateTimelock\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"version\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"votingPeriod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"\\u041a\\u043e\\u043d\\u0442\\u0440\\u0430\\u043a\\u0442 Governor \\u0434\\u043b\\u044f DAO \\u0441 \\u043d\\u0430\\u0441\\u0442\\u0440\\u0430\\u0438\\u0432\\u0430\\u0435\\u043c\\u044b\\u043c\\u0438 \\u043f\\u0430\\u0440\\u0430\\u043c\\u0435\\u0442\\u0440\\u0430\\u043c\\u0438\",\"errors\":{\"CheckpointUnorderedInsertion()\":[{\"details\":\"A value was attempted to be inserted on a past checkpoint.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"GovernorAlreadyCastVote(address)\":[{\"details\":\"The vote was already cast.\"}],\"GovernorAlreadyQueuedProposal(uint256)\":[{\"details\":\"The proposal has already been queued.\"}],\"GovernorDisabledDeposit()\":[{\"details\":\"Token deposits are disabled in this contract.\"}],\"GovernorInsufficientProposerVotes(address,uint256,uint256)\":[{\"details\":\"The `proposer` does not have the required votes to create a proposal.\"}],\"GovernorInvalidProposalLength(uint256,uint256,uint256)\":[{\"details\":\"Empty proposal or a mismatch between the parameters length for a proposal call.\"}],\"GovernorInvalidQuorumFraction(uint256,uint256)\":[{\"details\":\"The quorum set is not a valid fraction.\"}],\"GovernorInvalidSignature(address)\":[{\"details\":\"The provided signature is not valid for the expected `voter`. If the `voter` is a contract, the signature is not valid using {IERC1271-isValidSignature}.\"}],\"GovernorInvalidVoteParams()\":[{\"details\":\"The provided params buffer is not supported by the counting module.\"}],\"GovernorInvalidVoteType()\":[{\"details\":\"The vote type used is not valid for the corresponding counting module.\"}],\"GovernorInvalidVotingPeriod(uint256)\":[{\"details\":\"The voting period set is not a valid period.\"}],\"GovernorNonexistentProposal(uint256)\":[{\"details\":\"The `proposalId` doesn't exist.\"}],\"GovernorNotQueuedProposal(uint256)\":[{\"details\":\"The proposal hasn't been queued yet.\"}],\"GovernorOnlyExecutor(address)\":[{\"details\":\"The `account` is not the governance executor.\"}],\"GovernorQueueNotImplemented()\":[{\"details\":\"Queue operation is not implemented for this governor. Execute should be called directly.\"}],\"GovernorRestrictedProposer(address)\":[{\"details\":\"The `proposer` is not allowed to create a proposal.\"}],\"GovernorUnableToCancel(uint256,address)\":[{\"details\":\"The given `account` is unable to cancel the proposal with given `proposalId`.\"}],\"GovernorUnexpectedProposalState(uint256,uint8,bytes32)\":[{\"details\":\"The current state of a proposal is not the required for performing an operation. The `expectedStates` is a bitmap with the bits enabled for each ProposalState enum position counting from right to left. NOTE: If `expectedState` is `bytes32(0)`, the proposal is expected to not be in any state (i.e. not exist). This is the case when a proposal that is expected to be unset is already initiated (the proposal is duplicated). See {Governor-_encodeStateBitmap}.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}]},\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"ProposalCanceled(uint256)\":{\"details\":\"Emitted when a proposal is canceled.\"},\"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)\":{\"details\":\"Emitted when a proposal is created.\"},\"ProposalExecuted(uint256)\":{\"details\":\"Emitted when a proposal is executed.\"},\"ProposalQueued(uint256,uint256)\":{\"details\":\"Emitted when a proposal is queued.\"},\"TimelockChange(address,address)\":{\"details\":\"Emitted when the timelock controller used for proposal execution is modified.\"},\"VoteCast(address,uint256,uint8,uint256,string)\":{\"details\":\"Emitted when a vote is cast without params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.\"},\"VoteCastWithParams(address,uint256,uint8,uint256,string,bytes)\":{\"details\":\"Emitted when a vote is cast with params. Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used. `params` are additional encoded parameters. Their interpretation also depends on the voting module used.\"}},\"kind\":\"dev\",\"methods\":{\"CLOCK_MODE()\":{\"details\":\"Machine-readable description of the clock as specified in ERC-6372.\"},\"COUNTING_MODE()\":{\"details\":\"See {IGovernor-COUNTING_MODE}.\"},\"cancel(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-cancel}.\"},\"castVote(uint256,uint8)\":{\"details\":\"See {IGovernor-castVote}.\"},\"castVoteBySig(uint256,uint8,address,bytes)\":{\"details\":\"See {IGovernor-castVoteBySig}.\"},\"castVoteWithReason(uint256,uint8,string)\":{\"details\":\"See {IGovernor-castVoteWithReason}.\"},\"castVoteWithReasonAndParams(uint256,uint8,string,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParams}.\"},\"castVoteWithReasonAndParamsBySig(uint256,uint8,address,string,bytes,bytes)\":{\"details\":\"See {IGovernor-castVoteWithReasonAndParamsBySig}.\"},\"clock()\":{\"details\":\"Clock (as specified in ERC-6372) is set to match the token's clock. Fallback to block numbers if the token does not implement ERC-6372.\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"execute(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-execute}.\"},\"getProposalId(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-getProposalId}.\"},\"getVotes(address,uint256)\":{\"details\":\"See {IGovernor-getVotes}.\"},\"getVotesWithParams(address,uint256,bytes)\":{\"details\":\"See {IGovernor-getVotesWithParams}.\"},\"hasVoted(uint256,address)\":{\"details\":\"See {IGovernor-hasVoted}.\"},\"hashProposal(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-hashProposal}. The proposal id is produced by hashing the ABI encoded `targets` array, the `values` array, the `calldatas` array and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in advance, before the proposal is submitted. Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the same proposal (with same operation and same description) will have the same id if submitted on multiple governors across multiple networks. This also means that in order to execute the same operation twice (on the same governor) the proposer will have to change the description in order to avoid proposal id conflicts.\"},\"name()\":{\"details\":\"See {IGovernor-name}.\"},\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"},\"onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155BatchReceived}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC1155Received(address,address,uint256,uint256,bytes)\":{\"details\":\"See {IERC1155Receiver-onERC1155Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"See {IERC721Receiver-onERC721Received}. Receiving tokens is disabled if the governance executor is other than the governor itself (eg. when using with a timelock).\"},\"proposalDeadline(uint256)\":{\"details\":\"See {IGovernor-proposalDeadline}.\"},\"proposalEta(uint256)\":{\"details\":\"See {IGovernor-proposalEta}.\"},\"proposalNeedsQueuing(uint256)\":{\"details\":\"\\u0424\\u0443\\u043d\\u043a\\u0446\\u0438\\u044f \\u0434\\u043b\\u044f \\u043e\\u043f\\u0440\\u0435\\u0434\\u0435\\u043b\\u0435\\u043d\\u0438\\u044f, \\u0442\\u0440\\u0435\\u0431\\u0443\\u0435\\u0442\\u0441\\u044f \\u043b\\u0438 \\u043f\\u043e\\u0441\\u0442\\u0430\\u043d\\u043e\\u0432\\u043a\\u0430 \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u044f \\u0432 \\u043e\\u0447\\u0435\\u0440\\u0435\\u0434\\u044c\"},\"proposalProposer(uint256)\":{\"details\":\"See {IGovernor-proposalProposer}.\"},\"proposalSnapshot(uint256)\":{\"details\":\"See {IGovernor-proposalSnapshot}.\"},\"proposalVotes(uint256)\":{\"details\":\"Accessor to the internal vote counts.\"},\"propose(address[],uint256[],bytes[],string)\":{\"details\":\"See {IGovernor-propose}. This function has opt-in frontrunning protection, described in {_isValidDescriptionForProposer}.\"},\"queue(address[],uint256[],bytes[],bytes32)\":{\"details\":\"See {IGovernor-queue}.\"},\"quorumDenominator()\":{\"details\":\"Returns the quorum denominator. Defaults to 100, but may be overridden.\"},\"quorumNumerator()\":{\"details\":\"Returns the current quorum numerator. See {quorumDenominator}.\"},\"quorumNumerator(uint256)\":{\"details\":\"Returns the quorum numerator at a specific timepoint. See {quorumDenominator}.\"},\"relay(address,uint256,bytes)\":{\"details\":\"Relays a transaction or function call to an arbitrary target. In cases where the governance executor is some contract other than the governor itself, like when using a timelock, this function can be invoked in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake. Note that if the executor is simply the governor itself, use of `relay` is redundant.\"},\"setProposalThreshold(uint256)\":{\"details\":\"Update the proposal threshold. This operation can only be performed through a governance proposal. Emits a {ProposalThresholdSet} event.\"},\"setVotingDelay(uint48)\":{\"details\":\"Update the voting delay. This operation can only be performed through a governance proposal. Emits a {VotingDelaySet} event.\"},\"setVotingPeriod(uint32)\":{\"details\":\"Update the voting period. This operation can only be performed through a governance proposal. Emits a {VotingPeriodSet} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"timelock()\":{\"details\":\"Public accessor to check the address of the timelock\"},\"token()\":{\"details\":\"The token that voting power is sourced from.\"},\"updateQuorumNumerator(uint256)\":{\"details\":\"Changes the quorum numerator. Emits a {QuorumNumeratorUpdated} event. Requirements: - Must be called through a governance proposal. - New numerator must be smaller or equal to the denominator.\"},\"updateTimelock(address)\":{\"details\":\"Public endpoint to update the underlying timelock instance. Restricted to the timelock itself, so updates must be proposed, scheduled, and executed through governance proposals. CAUTION: It is not recommended to change the timelock while there are other queued governance proposals.\"},\"version()\":{\"details\":\"See {IGovernor-version}.\"}},\"title\":\"GovernorContract\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/GovernorContract.sol\":\"GovernorContract\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xc1bebdee8943bd5e9ef1e0f2e63296aa1dd4171a66b9e74d0286220e891e1458\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://928cf2f0042c606f3dcb21bd8a272573f462a215cd65285d2d6b407f31e9bd67\",\"dweb:/ipfs/QmWGxjckno6sfjHPX5naPnsfsyisgy4PJDf46eLw9umfpx\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0x4d9a2b261b56a1e4a37bb038151dec98b952fed16de2bdfdda27e38e2b12b530\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f724110f7aeb6151af800ab8c12e6060b29bda9e013f0ccb331eb754d6a7cbf0\",\"dweb:/ipfs/QmUcjzCZpxtUPdEThtAzE1f9LvuJiUGZxTdH9N6bHrb5Cf\"]},\"@openzeppelin/contracts/governance/Governor.sol\":{\"keccak256\":\"0x2dcd108a0d2f822523460cb704ad11bda9d916d493475d92b9e2b46e55015329\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8c01464f71e183c0712a7a47dd516a6a99423b16553622d473813af4c345cf23\",\"dweb:/ipfs/QmSbXJ2DAE5iWEYFD7uYNJejrggrKpS8G3ryV3XryfyVna\"]},\"@openzeppelin/contracts/governance/IGovernor.sol\":{\"keccak256\":\"0xeb587bd3f646da7897e80f4ea71dc5ee324e985ca2d17136021aa2443f41a73f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://230f29f8a38f45150616864c0988e0ef3c269e651eefeb0ad3778e3ae387b0fd\",\"dweb:/ipfs/QmTgFRV3XAPDjXA6Gp2ug1ifwyiZGUeFDYivHJ61eJg73g\"]},\"@openzeppelin/contracts/governance/TimelockController.sol\":{\"keccak256\":\"0x42ce53c97c0d57628662c1a6e277a6eee113aeedd0cae61805e0513ac2866daf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fff5babafc1100625c7f60ee3694fe98b73446992211a30dbfbc2b98cced16\",\"dweb:/ipfs/QmRU8ThthE6USLbEgLNf6jVKp36qJNAkzDZ5RBoYSN7bLC\"]},\"@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol\":{\"keccak256\":\"0xdc21c15a8582ca58529bf4b63209718a86fd944cbb206a492687333fe8cce0ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4a4a30ef6ff3d7165c00a6f41a37569035a8b1602b77ecac8453a6ef2cf7c149\",\"dweb:/ipfs/QmZjt4yg3vWWeDMQ6avpXLYLMjctv3jwaWgrH4c5ozSg83\"]},\"@openzeppelin/contracts/governance/extensions/GovernorSettings.sol\":{\"keccak256\":\"0x1e0810708b8f5de8d3db73240ccee2d36a305cb904aa5acd4588834ebce6acce\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9758197a4d3cb1aa3036a9bd0edbf34a2eba82e484d3d519da495e495d752dee\",\"dweb:/ipfs/QmYtV61Sp55bfcW4DZvsRuDo2EKb5PekqoY3nx5STJn6Zt\"]},\"@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol\":{\"keccak256\":\"0xa5690e95962c9ce88129b64e25de1a9be912a916e3b7097de44e0fe4177290b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fb99742d3ac1efaf266f63bfc43fbbeaa6bce9a6c2067c4d87bc6d261e425f4a\",\"dweb:/ipfs/Qmcdkp6ESPBxMUGnptMD3qjzGoHFjTLK1kJYFxty9cqnpc\"]},\"@openzeppelin/contracts/governance/extensions/GovernorVotes.sol\":{\"keccak256\":\"0x6fc0e9e0c3ed137dc2281a120cdc01b92010a26e6fd5fc4e6af08fc0f28bdb9e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2de2620f20f2ec0f52b14b241bec63815a5e5c42a76198a754d899fedfbdb97a\",\"dweb:/ipfs/QmTPcYhinbDv9T6T1hzNjbZrWNWSFYauoug4zdPvDTXect\"]},\"@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol\":{\"keccak256\":\"0xa04c3f5bd34e0d4a07deb6b132d9e108782caa1d86c8474319358cf86ddd9a11\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3c344331d87e523c9f2eafa31cc027ffc8f4f6228d553683966deff60c1ac872\",\"dweb:/ipfs/QmaZZBPVDhEJ2rA7vbJrHLGRLkccBfrGVb717uDTrNYiTN\"]},\"@openzeppelin/contracts/governance/utils/IVotes.sol\":{\"keccak256\":\"0x5e2b397ae88fd5c68e4f6762eb9f65f65c36702eb57796495f471d024ce70947\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://348fc8e291d54314bb22437b532f443d5dbfb80c8cc9591567c1af6554ccf856\",\"dweb:/ipfs/QmP8ZTyitZinxcpwAHeYHhwj7u21zPpKXSiww38V74sXC2\"]},\"@openzeppelin/contracts/interfaces/IERC1271.sol\":{\"keccak256\":\"0x3d4cd07258d675b6dfa3d9dfd623a77b38fb9935f4a5381ff4bc969948720976\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://30abb60a4d98ad9a33de4fa5e9072342e12df3a79e9c71b5f59ce049ae8cd535\",\"dweb:/ipfs/QmT6NXJDjsf8H14nPYQsFELDB8q5ZTmG9cjdX2bEQJW7ST\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/IERC5805.sol\":{\"keccak256\":\"0x4b9b89f91adbb7d3574f85394754cfb08c5b4eafca8a7061e2094a019ab8f818\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7373d5dbb8eb2381aa0883a456fac89283fcaf52f42fa805d4188f270716742a\",\"dweb:/ipfs/QmVnZDmT4ABvNhRJMaQnbCzsCA8HpyHPVaxi4fCi92LFv2\"]},\"@openzeppelin/contracts/interfaces/IERC6372.sol\":{\"keccak256\":\"0xeb2857b7dafb7e0d8526dbfe794e6c047df2851c9e6ee91dc4a55f3c34af5d33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49bf13f6c2a38a9bcc7b852d4e2b9cebb4068b832642cce61069cdb5f06bb2fb\",\"dweb:/ipfs/QmdKAJVE7rR2kENCZnEM1yKswrGii7WuE9gZpsQvnXJhwn\"]},\"@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol\":{\"keccak256\":\"0x61a23d601c2ab69dd726ac55058604cbda98e1d728ba31a51c379a3f9eeea715\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d8cbb06152d82ebdd5ba1d33454e5759492040f309a82637c7e99c948a04fa20\",\"dweb:/ipfs/QmQQuLr6WSfLu97pMEh6XLefk99TSj9k5Qu1zXGPepwGiK\"]},\"@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol\":{\"keccak256\":\"0xe103e95f854ef0cd1bba5f469175f67cd332f5c2561941f165e3dd65cee94d6d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6cf8cc5d07cf8003255f9d766fe8188b9f6e33b6240e126a605f0d061566b23e\",\"dweb:/ipfs/Qmd7okDCSoUt1L4G9hmb5c4W8kWUnfpAa2jyBKUp4xKErd\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol\":{\"keccak256\":\"0xaad20f8713b5cd98114278482d5d91b9758f9727048527d582e8e88fd4901fd8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5396e8dbb000c2fada59b7d2093b9c7c870fd09413ab0fdaba45d882959c6244\",\"dweb:/ipfs/QmXQn5XckSiUsUBpMYuiFeqnojRX4rKa9jmgjCPeTuPmhh\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x1fcf8cceb1a67e6c8512267e780933c4a3f63ef44756e6c818fda79be51c8402\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://617d7d57f6f9cd449068b4d23daf485676d083aae648e038d05eb3a13291de35\",\"dweb:/ipfs/QmPADWPiGaSzZDFNpFEUx4ZPqhzPkYncBpHyTfAGcfsqzy\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x0c60057e7351874f086db8dc9291b7ada9ad62cb7725befd2991430d04a74572\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33cdfd1fc36410d45046f88ff9864350146b194736c32834baa38d99b843ffbe\",\"dweb:/ipfs/QmdVmqgFKjgEBURy4KUwWDA6J1LEg1BKcHcXsx4nkeHAD2\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol\":{\"keccak256\":\"0xbdc3bb48ccedb818cd75a6d74a16df55a822e9f6d3cc54c59f576f10aab67b5f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2284f25f2478f419d7781573b17a89d0e7c5589a865d55e2d6ed5163aee23aa8\",\"dweb:/ipfs/QmNsr2625APBQiNKpYnX5VcSnYgfUHR9Uzzp9pRXjoDqK7\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"@openzeppelin/contracts/utils/structs/Checkpoints.sol\":{\"keccak256\":\"0x93ce66a307d66cb14e95dbc8f20641cedf48b2d060bf3bda431d62a4493e6e8d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://10d4122ee13fd8dcd2f468a86031665345d2dfdda76993d1f51201bdeb746f9d\",\"dweb:/ipfs/QmWxbbYEgyDCjwT4ZtNwujJwB4vdnR2qEKwL2Zrz9JoSDU\"]},\"@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol\":{\"keccak256\":\"0x1e1d74658d7f4eab3d4f8fb0c6c5953bc5f629d9425e978d557dabff7b58b217\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be0175d00008d452d3d553890f73a3d5d51dff4372f720336c8b98f26822fcdb\",\"dweb:/ipfs/QmUkE8g5xPExWoSAKwdi5ww1qJJVtEWtjSF93G2LMQkgD3\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]},\"contracts/GovernorContract.sol\":{\"keccak256\":\"0x5b1b22b444d6973135f3c1e4df098f5cb480af9416243d10afc059522132d5ae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3fae8b397319f97aea63bf4361ddb2f4a61a83929efc3fb96fff8e327b2dfbba\",\"dweb:/ipfs/Qmc1qov8NjRKT1pB8qRLSCJU6DYPBGNXFrAU2K44avpcMa\"]}},\"version\":1}"}}}}} \ No newline at end of file diff --git a/backend/artifacts/contracts/GovernanceTimelock.sol/GovernanceTimelock.dbg.json b/backend/artifacts/contracts/GovernanceTimelock.sol/GovernanceTimelock.dbg.json new file mode 100644 index 0000000..3e8c78c --- /dev/null +++ b/backend/artifacts/contracts/GovernanceTimelock.sol/GovernanceTimelock.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/contracts/GovernanceTimelock.sol/GovernanceTimelock.json b/backend/artifacts/contracts/GovernanceTimelock.sol/GovernanceTimelock.json new file mode 100644 index 0000000..91179f4 --- /dev/null +++ b/backend/artifacts/contracts/GovernanceTimelock.sol/GovernanceTimelock.json @@ -0,0 +1,1007 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "GovernanceTimelock", + "sourceName": "contracts/GovernanceTimelock.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "uint256", + "name": "minDelay", + "type": "uint256" + }, + { + "internalType": "address[]", + "name": "proposers", + "type": "address[]" + }, + { + "internalType": "address[]", + "name": "executors", + "type": "address[]" + }, + { + "internalType": "address", + "name": "admin", + "type": "address" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "inputs": [], + "name": "AccessControlBadConfirmation", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "neededRole", + "type": "bytes32" + } + ], + "name": "AccessControlUnauthorizedAccount", + "type": "error" + }, + { + "inputs": [], + "name": "FailedCall", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "delay", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "minDelay", + "type": "uint256" + } + ], + "name": "TimelockInsufficientDelay", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "targets", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "payloads", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "values", + "type": "uint256" + } + ], + "name": "TimelockInvalidOperationLength", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "caller", + "type": "address" + } + ], + "name": "TimelockUnauthorizedCaller", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "predecessorId", + "type": "bytes32" + } + ], + "name": "TimelockUnexecutedPredecessor", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "operationId", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "expectedStates", + "type": "bytes32" + } + ], + "name": "TimelockUnexpectedOperationState", + "type": "error" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "CallExecuted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + } + ], + "name": "CallSalt", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "uint256", + "name": "index", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "data", + "type": "bytes" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "predecessor", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "delay", + "type": "uint256" + } + ], + "name": "CallScheduled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + } + ], + "name": "Cancelled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "oldDuration", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newDuration", + "type": "uint256" + } + ], + "name": "MinDelayChange", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "previousAdminRole", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "newAdminRole", + "type": "bytes32" + } + ], + "name": "RoleAdminChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleGranted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "RoleRevoked", + "type": "event" + }, + { + "inputs": [], + "name": "CANCELLER_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "DEFAULT_ADMIN_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "EXECUTOR_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "PROPOSER_ROLE", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + } + ], + "name": "cancel", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "payload", + "type": "bytes" + }, + { + "internalType": "bytes32", + "name": "predecessor", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + } + ], + "name": "execute", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "payloads", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "predecessor", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + } + ], + "name": "executeBatch", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [], + "name": "getMinDelay", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + } + ], + "name": "getOperationState", + "outputs": [ + { + "internalType": "enum TimelockController.OperationState", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + } + ], + "name": "getRoleAdmin", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + } + ], + "name": "getTimestamp", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "grantRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasRole", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + }, + { + "internalType": "bytes32", + "name": "predecessor", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + } + ], + "name": "hashOperation", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "payloads", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "predecessor", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + } + ], + "name": "hashOperationBatch", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + } + ], + "name": "isOperation", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + } + ], + "name": "isOperationDone", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + } + ], + "name": "isOperationPending", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "id", + "type": "bytes32" + } + ], + "name": "isOperationReady", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155BatchReceived", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC721Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "callerConfirmation", + "type": "address" + } + ], + "name": "renounceRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "role", + "type": "bytes32" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "revokeRole", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + }, + { + "internalType": "bytes32", + "name": "predecessor", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "delay", + "type": "uint256" + } + ], + "name": "schedule", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "payloads", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "predecessor", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "delay", + "type": "uint256" + } + ], + "name": "scheduleBatch", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "newDelay", + "type": "uint256" + } + ], + "name": "updateDelay", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "stateMutability": "payable", + "type": "receive" + } + ], + "bytecode": "0x6080604052346200017c5762001a74803803806200001d8162000181565b9283398101906080818303126200017c57805160208201516001600160401b03908181116200017c578462000054918501620001d2565b9360408401519182116200017c57620000766060916200007e938601620001d2565b9301620001bd565b906200008a3062000295565b506001600160a01b039180831662000169575b5060005b8451811015620000f05780620000c984620000c1620000ea94896200026a565b511662000315565b50620000e384620000db83896200026a565b5116620003b7565b5062000244565b620000a1565b50925060005b8251811015620001245780620000e383620001166200011e94876200026a565b511662000454565b620000f6565b7f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d560408580600255815190600082526020820152a16040516115629081620004f28239f35b620001749062000295565b50386200009d565b600080fd5b6040519190601f01601f191682016001600160401b03811183821017620001a757604052565b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036200017c57565b81601f820112156200017c578051916001600160401b038311620001a7578260051b60209283806200020681850162000181565b8097815201928201019283116200017c578301905b8282106200022a575050505090565b8380916200023884620001bd565b8152019101906200021b565b6000198114620002545760010190565b634e487b7160e01b600052601160045260246000fd5b80518210156200027f5760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b031660008181527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205490919060ff166200031157818052816020526040822081835260205260408220600160ff19825416179055339160008051602062001a548339815191528180a4600190565b5090565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260408120549091907fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff16620003b257808352826020526040832082845260205260408320600160ff1982541617905560008051602062001a54833981519152339380a4600190565b505090565b6001600160a01b031660008181527fc3ad33e20b0c56a223ad5104fff154aa010f8715b9c981fd38fdc60a4d1a52fb60205260408120549091907ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7839060ff16620003b257808352826020526040832082845260205260408320600160ff1982541617905560008051602062001a54833981519152339380a4600190565b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d706960205260408120549091907fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e639060ff16620003b257808352826020526040832082845260205260408320600160ff1982541617905560008051602062001a54833981519152339380a460019056fe60406080815260049081361015610020575b5050361561001e57600080fd5b005b600091823560e01c90816301d5062a14610b0c57816301ffc9a714610a9957816307bd026514610a7057838263134008d3146109c65750816313bc9f20146109a6578163150b7a0214610951578163248a9ca3146109275781632ab0f529146109075781632f2ff15d146108dd57816331d50750146108bd57816336568abe14610877578163584b153e1461084e57816364d62353146107e25781637958004c1461079f5781638065657f1461077d5781638f2a0bb0146105e05781638f61f4f5146105a557816391d148541461055f578163a217fddf14610544578163b08e51c014610509578163b1c5f427146104dd578163bc197c8114610457578163c4d252f514610388578163d45c443514610360578163d547741f1461031b578163e38335e5146101d8578163f23a6e6114610180575063f27a0c9203610011573461017c578160031936011261017c576020906002549051908152f35b5080fd5b8284346101d55760a03660031901126101d55761019b610bea565b506101a4610c05565b50608435906001600160401b0382116101d557506020926101c791369101610ce8565b505163f23a6e6160e01b8152f35b80fd5b90506101e336610d5f565b90989495919392969760008051602061150d8339815191528b528a602052858b208b805260205260ff868c2054161561030d575b838314801590610303575b6102d5575061023a610241918a868a878b888f611158565b988961145b565b885b81811061025757896102548a6114c1565b80f35b80808a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b588a8a6102c86102b08f988c6102a9828e6102a38f6102d09f61029e9185916112f3565b611319565b976112f3565b359561132d565b906102bd82828787611406565b8d51948594856113df565b0390a36112ce565b610243565b85516001624fcdef60e01b031981529081019283526020830185905260408301849052918291506060010390fd5b5084831415610222565b61031633610ea9565b610217565b9190503461035c578060031936011261035c5761035891356103536001610340610c05565b9383875286602052862001543390610efc565b610fab565b5080f35b8280fd5b90503461035c57602036600319011261035c5760209282913581526001845220549051908152f35b9190503461035c57602036600319011261035c578135917ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838085528460205282852033865260205260ff83862054161561043c57506103e68361104d565b156104205750829082825260016020528120557fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb708280a280f35b826044925191635ead8eb560e01b835282015260066024820152fd5b604492519163e2517d3f60e01b835233908301526024820152fd5b8284346101d55760a03660031901126101d557610472610bea565b5061047b610c05565b506001600160401b039060443582811161017c5761049c9036908601610dc0565b5060643582811161017c576104b49036908601610dc0565b506084359182116101d557506020926104cf91369101610ce8565b505163bc197c8160e01b8152f35b50503461017c576020906105026104f336610d5f565b96959095949194939293611158565b9051908152f35b50503461017c578160031936011261017c57602090517ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838152f35b50503461017c578160031936011261017c5751908152602090f35b90503461035c578160031936011261035c578160209360ff92610580610c05565b903582528186528282206001600160a01b039091168252855220549151911615158152f35b50503461017c578160031936011261017c57602090517fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc18152f35b9190503461035c5760c036600319011261035c576001600160401b03908235828111610779576106139036908501610d2f565b936024358481116107755761062b9036908301610d2f565b94604435908111610771576106439036908401610d2f565b606493919335906084359760a4359361065b33610e26565b818b14801590610767575b610739575061067c89848489858f8b908e611158565b99610687858c61136e565b8a8c5b8a8382106106d0578e838e838161069f578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a28180808380f35b610732927f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b6102c88f8c88978f92898f8f8f6107209161071a61029e868094610727996112f3565b9a6112f3565b359861132d565b915196879687611296565b8b9061068a565b88516001624fcdef60e01b031981529081018b81526020810184905260408101929092529081906060010390fd5b50828b1415610666565b8780fd5b8680fd5b8480fd5b50503461017c5760209061050261079336610c48565b94939093929192611103565b83833461017c57602036600319011261017c576107bc83356110a6565b905191838210156107cf57602083838152f35b634e487b7160e01b815260218452602490fd5b9190503461035c57602036600319011261035c5781359130330361083857507f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5906002548151908152836020820152a160025580f35b602491519063e2850c5960e01b82523390820152fd5b8284346101d55760203660031901126101d5575061086e6020923561104d565b90519015158152f35b83833461017c578060031936011261017c57610891610c05565b90336001600160a01b038316036108ae5750610358919235610fab565b5163334bd91960e11b81528390fd5b8284346101d55760203660031901126101d5575061086e60209235611020565b9190503461035c578060031936011261035c5761035891356109026001610340610c05565b610f2d565b8284346101d55760203660031901126101d5575061086e6020923561108e565b90503461035c57602036600319011261035c57816020936001923581528085522001549051908152f35b8284346101d55760803660031901126101d55761096c610bea565b50610975610c05565b50606435906001600160401b0382116101d5575060209261099891369101610ce8565b5051630a85bd0160e11b8152f35b8284346101d55760203660031901126101d5575061086e60209235611076565b610254610a4482610a5a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b58610a3b896109fe36610c48565b60008051602061150d8339815191528b9a9697939598929a528a602052828b208b805260205260ff838c20541615610a62575b8985858a8a611103565b998a988961145b565b610a5083838888611406565b51948594856113df565b0390a36114c1565b610a6b33610ea9565b610a31565b50503461017c578160031936011261017c576020905160008051602061150d8339815191528152f35b90503461035c57602036600319011261035c57359063ffffffff60e01b821680920361035c5760209250630271189760e51b8214918215610ade575b50519015158152f35b909150637965db0b60e01b8114908115610afb575b509038610ad5565b6301ffc9a760e01b14905038610af3565b9190503461035c5760c036600319011261035c57610b28610bea565b90836024356044356001600160401b03811161035c577f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca95610b6c91369101610c1b565b95909160643595610bad6084359760a43590610b8733610e26565b610b958a828d8a8989611103565b9a8b97610ba2848a61136e565b8a5196879687611296565b0390a381610bb9578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a23880808380f35b600435906001600160a01b0382168203610c0057565b600080fd5b602435906001600160a01b0382168203610c0057565b9181601f84011215610c00578235916001600160401b038311610c005760208381860195010111610c0057565b60a0600319820112610c00576004356001600160a01b0381168103610c00579160243591604435906001600160401b038211610c0057610c8a91600401610c1b565b90916064359060843590565b90601f801991011681019081106001600160401b03821117610cb757604052565b634e487b7160e01b600052604160045260246000fd5b6001600160401b038111610cb757601f01601f191660200190565b81601f82011215610c0057803590610cff82610ccd565b92610d0d6040519485610c96565b82845260208383010111610c0057816000926020809301838601378301015290565b9181601f84011215610c00578235916001600160401b038311610c00576020808501948460051b010111610c0057565b9060a0600319830112610c00576001600160401b03600435818111610c005783610d8b91600401610d2f565b93909392602435838111610c005782610da691600401610d2f565b93909392604435918211610c0057610c8a91600401610d2f565b9080601f83011215610c00578135906001600160401b038211610cb7578160051b60405193602093610df485840187610c96565b85528380860192820101928311610c00578301905b828210610e17575050505090565b81358152908301908301610e09565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260409020547fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff1615610e8b575050565b604492506040519163e2517d3f60e01b835260048301526024820152fd5b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d7069602052604090205460008051602061150d8339815191529060ff1615610e8b575050565b80600052600060205260406000209160018060a01b0316918260005260205260ff6040600020541615610e8b575050565b9060009180835282602052604083209160018060a01b03169182845260205260ff60408420541615600014610fa657808352826020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b9060009180835282602052604083209160018060a01b03169182845260205260ff604084205416600014610fa65780835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b611029906110a6565b600481101561103757151590565b634e487b7160e01b600052602160045260246000fd5b611056906110a6565b6004811015611037576001811490811561106e575090565b600291501490565b61107f906110a6565b60048110156110375760021490565b611097906110a6565b60048110156110375760031490565b600052600160205260406000205480156000146110c35750600090565b600181036110d15750600390565b4210156110dd57600190565b600290565b908060209392818452848401376000828201840152601f01601f1916010190565b9461113961115294959293604051968795602087019960018060a01b03168a52604087015260a0606087015260c08601916110e2565b91608084015260a083015203601f198101835282610c96565b51902090565b969294909695919560405196602091828901998060c08b0160a08d525260e08a01919060005b81811061126e57505050601f19898203810160408b0152888252976001600160fb1b038111610c00579089969495939897929160051b80928a830137019380888601878703606089015252604085019460408260051b82010195836000925b848410611205575050505050506111529550608084015260a083015203908101835282610c96565b9193969850919398999496603f198282030184528935601e1984360301811215610c005783018681019190356001600160401b038111610c00578036038313610c0057611257889283926001956110e2565b9b0194019401918b98969394919a9997959a6111dd565b90919283359060018060a01b038216809203610c00579081528501928501919060010161117e565b9290936112c4926080959897969860018060a01b03168552602085015260a0604085015260a08401916110e2565b9460608201520152565b60001981146112dd5760010190565b634e487b7160e01b600052601160045260246000fd5b91908110156113035760051b0190565b634e487b7160e01b600052603260045260246000fd5b356001600160a01b0381168103610c005790565b91908110156113035760051b81013590601e1981360301821215610c005701908135916001600160401b038311610c00576020018236038113610c00579190565b9061137882611020565b6113bf576002548082106113a157504201908142116112dd576000526001602052604060002055565b6044925060405191635433660960e01b835260048301526024820152fd5b604051635ead8eb560e01b81526004810183905260016024820152604490fd5b611403949260609260018060a01b03168252602082015281604082015201916110e2565b90565b61145093600093928493826040519384928337810185815203925af13d15611453573d9061143382610ccd565b916114416040519384610c96565b82523d6000602084013e6114e1565b50565b6060906114e1565b61146481611076565b156114a2575080151580611492575b61147a5750565b6024906040519063121534c360e31b82526004820152fd5b5061149c8161108e565b15611473565b60449060405190635ead8eb560e01b8252600482015260046024820152fd5b6114ca81611076565b156114a25760005260016020526001604060002055565b90919061150a57508051156114f857805190602001fd5b60405163d6bda27560e01b8152600490fd5b56fed8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63a2646970667358221220328b51d9a5ef216ec4f19ae7fb403dc671eaa3ab5eafa7cdd9b4aba6e61a180164736f6c634300081400332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d", + "deployedBytecode": "0x60406080815260049081361015610020575b5050361561001e57600080fd5b005b600091823560e01c90816301d5062a14610b0c57816301ffc9a714610a9957816307bd026514610a7057838263134008d3146109c65750816313bc9f20146109a6578163150b7a0214610951578163248a9ca3146109275781632ab0f529146109075781632f2ff15d146108dd57816331d50750146108bd57816336568abe14610877578163584b153e1461084e57816364d62353146107e25781637958004c1461079f5781638065657f1461077d5781638f2a0bb0146105e05781638f61f4f5146105a557816391d148541461055f578163a217fddf14610544578163b08e51c014610509578163b1c5f427146104dd578163bc197c8114610457578163c4d252f514610388578163d45c443514610360578163d547741f1461031b578163e38335e5146101d8578163f23a6e6114610180575063f27a0c9203610011573461017c578160031936011261017c576020906002549051908152f35b5080fd5b8284346101d55760a03660031901126101d55761019b610bea565b506101a4610c05565b50608435906001600160401b0382116101d557506020926101c791369101610ce8565b505163f23a6e6160e01b8152f35b80fd5b90506101e336610d5f565b90989495919392969760008051602061150d8339815191528b528a602052858b208b805260205260ff868c2054161561030d575b838314801590610303575b6102d5575061023a610241918a868a878b888f611158565b988961145b565b885b81811061025757896102548a6114c1565b80f35b80808a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b588a8a6102c86102b08f988c6102a9828e6102a38f6102d09f61029e9185916112f3565b611319565b976112f3565b359561132d565b906102bd82828787611406565b8d51948594856113df565b0390a36112ce565b610243565b85516001624fcdef60e01b031981529081019283526020830185905260408301849052918291506060010390fd5b5084831415610222565b61031633610ea9565b610217565b9190503461035c578060031936011261035c5761035891356103536001610340610c05565b9383875286602052862001543390610efc565b610fab565b5080f35b8280fd5b90503461035c57602036600319011261035c5760209282913581526001845220549051908152f35b9190503461035c57602036600319011261035c578135917ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838085528460205282852033865260205260ff83862054161561043c57506103e68361104d565b156104205750829082825260016020528120557fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb708280a280f35b826044925191635ead8eb560e01b835282015260066024820152fd5b604492519163e2517d3f60e01b835233908301526024820152fd5b8284346101d55760a03660031901126101d557610472610bea565b5061047b610c05565b506001600160401b039060443582811161017c5761049c9036908601610dc0565b5060643582811161017c576104b49036908601610dc0565b506084359182116101d557506020926104cf91369101610ce8565b505163bc197c8160e01b8152f35b50503461017c576020906105026104f336610d5f565b96959095949194939293611158565b9051908152f35b50503461017c578160031936011261017c57602090517ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7838152f35b50503461017c578160031936011261017c5751908152602090f35b90503461035c578160031936011261035c578160209360ff92610580610c05565b903582528186528282206001600160a01b039091168252855220549151911615158152f35b50503461017c578160031936011261017c57602090517fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc18152f35b9190503461035c5760c036600319011261035c576001600160401b03908235828111610779576106139036908501610d2f565b936024358481116107755761062b9036908301610d2f565b94604435908111610771576106439036908401610d2f565b606493919335906084359760a4359361065b33610e26565b818b14801590610767575b610739575061067c89848489858f8b908e611158565b99610687858c61136e565b8a8c5b8a8382106106d0578e838e838161069f578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a28180808380f35b610732927f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b6102c88f8c88978f92898f8f8f6107209161071a61029e868094610727996112f3565b9a6112f3565b359861132d565b915196879687611296565b8b9061068a565b88516001624fcdef60e01b031981529081018b81526020810184905260408101929092529081906060010390fd5b50828b1415610666565b8780fd5b8680fd5b8480fd5b50503461017c5760209061050261079336610c48565b94939093929192611103565b83833461017c57602036600319011261017c576107bc83356110a6565b905191838210156107cf57602083838152f35b634e487b7160e01b815260218452602490fd5b9190503461035c57602036600319011261035c5781359130330361083857507f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5906002548151908152836020820152a160025580f35b602491519063e2850c5960e01b82523390820152fd5b8284346101d55760203660031901126101d5575061086e6020923561104d565b90519015158152f35b83833461017c578060031936011261017c57610891610c05565b90336001600160a01b038316036108ae5750610358919235610fab565b5163334bd91960e11b81528390fd5b8284346101d55760203660031901126101d5575061086e60209235611020565b9190503461035c578060031936011261035c5761035891356109026001610340610c05565b610f2d565b8284346101d55760203660031901126101d5575061086e6020923561108e565b90503461035c57602036600319011261035c57816020936001923581528085522001549051908152f35b8284346101d55760803660031901126101d55761096c610bea565b50610975610c05565b50606435906001600160401b0382116101d5575060209261099891369101610ce8565b5051630a85bd0160e11b8152f35b8284346101d55760203660031901126101d5575061086e60209235611076565b610254610a4482610a5a7fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b58610a3b896109fe36610c48565b60008051602061150d8339815191528b9a9697939598929a528a602052828b208b805260205260ff838c20541615610a62575b8985858a8a611103565b998a988961145b565b610a5083838888611406565b51948594856113df565b0390a36114c1565b610a6b33610ea9565b610a31565b50503461017c578160031936011261017c576020905160008051602061150d8339815191528152f35b90503461035c57602036600319011261035c57359063ffffffff60e01b821680920361035c5760209250630271189760e51b8214918215610ade575b50519015158152f35b909150637965db0b60e01b8114908115610afb575b509038610ad5565b6301ffc9a760e01b14905038610af3565b9190503461035c5760c036600319011261035c57610b28610bea565b90836024356044356001600160401b03811161035c577f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca95610b6c91369101610c1b565b95909160643595610bad6084359760a43590610b8733610e26565b610b958a828d8a8989611103565b9a8b97610ba2848a61136e565b8a5196879687611296565b0390a381610bb9578380f35b7f20fda5fd27a1ea7bf5b9567f143ac5470bb059374a27e8f67cb44f946f6d03879160209151908152a23880808380f35b600435906001600160a01b0382168203610c0057565b600080fd5b602435906001600160a01b0382168203610c0057565b9181601f84011215610c00578235916001600160401b038311610c005760208381860195010111610c0057565b60a0600319820112610c00576004356001600160a01b0381168103610c00579160243591604435906001600160401b038211610c0057610c8a91600401610c1b565b90916064359060843590565b90601f801991011681019081106001600160401b03821117610cb757604052565b634e487b7160e01b600052604160045260246000fd5b6001600160401b038111610cb757601f01601f191660200190565b81601f82011215610c0057803590610cff82610ccd565b92610d0d6040519485610c96565b82845260208383010111610c0057816000926020809301838601378301015290565b9181601f84011215610c00578235916001600160401b038311610c00576020808501948460051b010111610c0057565b9060a0600319830112610c00576001600160401b03600435818111610c005783610d8b91600401610d2f565b93909392602435838111610c005782610da691600401610d2f565b93909392604435918211610c0057610c8a91600401610d2f565b9080601f83011215610c00578135906001600160401b038211610cb7578160051b60405193602093610df485840187610c96565b85528380860192820101928311610c00578301905b828210610e17575050505090565b81358152908301908301610e09565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260409020547fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff1615610e8b575050565b604492506040519163e2517d3f60e01b835260048301526024820152fd5b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d7069602052604090205460008051602061150d8339815191529060ff1615610e8b575050565b80600052600060205260406000209160018060a01b0316918260005260205260ff6040600020541615610e8b575050565b9060009180835282602052604083209160018060a01b03169182845260205260ff60408420541615600014610fa657808352826020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b9060009180835282602052604083209160018060a01b03169182845260205260ff604084205416600014610fa65780835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b611029906110a6565b600481101561103757151590565b634e487b7160e01b600052602160045260246000fd5b611056906110a6565b6004811015611037576001811490811561106e575090565b600291501490565b61107f906110a6565b60048110156110375760021490565b611097906110a6565b60048110156110375760031490565b600052600160205260406000205480156000146110c35750600090565b600181036110d15750600390565b4210156110dd57600190565b600290565b908060209392818452848401376000828201840152601f01601f1916010190565b9461113961115294959293604051968795602087019960018060a01b03168a52604087015260a0606087015260c08601916110e2565b91608084015260a083015203601f198101835282610c96565b51902090565b969294909695919560405196602091828901998060c08b0160a08d525260e08a01919060005b81811061126e57505050601f19898203810160408b0152888252976001600160fb1b038111610c00579089969495939897929160051b80928a830137019380888601878703606089015252604085019460408260051b82010195836000925b848410611205575050505050506111529550608084015260a083015203908101835282610c96565b9193969850919398999496603f198282030184528935601e1984360301811215610c005783018681019190356001600160401b038111610c00578036038313610c0057611257889283926001956110e2565b9b0194019401918b98969394919a9997959a6111dd565b90919283359060018060a01b038216809203610c00579081528501928501919060010161117e565b9290936112c4926080959897969860018060a01b03168552602085015260a0604085015260a08401916110e2565b9460608201520152565b60001981146112dd5760010190565b634e487b7160e01b600052601160045260246000fd5b91908110156113035760051b0190565b634e487b7160e01b600052603260045260246000fd5b356001600160a01b0381168103610c005790565b91908110156113035760051b81013590601e1981360301821215610c005701908135916001600160401b038311610c00576020018236038113610c00579190565b9061137882611020565b6113bf576002548082106113a157504201908142116112dd576000526001602052604060002055565b6044925060405191635433660960e01b835260048301526024820152fd5b604051635ead8eb560e01b81526004810183905260016024820152604490fd5b611403949260609260018060a01b03168252602082015281604082015201916110e2565b90565b61145093600093928493826040519384928337810185815203925af13d15611453573d9061143382610ccd565b916114416040519384610c96565b82523d6000602084013e6114e1565b50565b6060906114e1565b61146481611076565b156114a2575080151580611492575b61147a5750565b6024906040519063121534c360e31b82526004820152fd5b5061149c8161108e565b15611473565b60449060405190635ead8eb560e01b8252600482015260046024820152fd5b6114ca81611076565b156114a25760005260016020526001604060002055565b90919061150a57508051156114f857805190602001fd5b60405163d6bda27560e01b8152600490fd5b56fed8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63a2646970667358221220328b51d9a5ef216ec4f19ae7fb403dc671eaa3ab5eafa7cdd9b4aba6e61a180164736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/contracts/GovernanceToken.sol/GovernanceToken.dbg.json b/backend/artifacts/contracts/GovernanceToken.sol/GovernanceToken.dbg.json new file mode 100644 index 0000000..3e8c78c --- /dev/null +++ b/backend/artifacts/contracts/GovernanceToken.sol/GovernanceToken.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/contracts/GovernanceToken.sol/GovernanceToken.json b/backend/artifacts/contracts/GovernanceToken.sol/GovernanceToken.json new file mode 100644 index 0000000..a304c2c --- /dev/null +++ b/backend/artifacts/contracts/GovernanceToken.sol/GovernanceToken.json @@ -0,0 +1,974 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "GovernanceToken", + "sourceName": "contracts/GovernanceToken.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "symbol", + "type": "string" + }, + { + "internalType": "address", + "name": "initialOwner", + "type": "address" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "inputs": [], + "name": "CheckpointUnorderedInsertion", + "type": "error" + }, + { + "inputs": [], + "name": "ECDSAInvalidSignature", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "length", + "type": "uint256" + } + ], + "name": "ECDSAInvalidSignatureLength", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "ECDSAInvalidSignatureS", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "increasedSupply", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "cap", + "type": "uint256" + } + ], + "name": "ERC20ExceededSafeSupply", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "allowance", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "needed", + "type": "uint256" + } + ], + "name": "ERC20InsufficientAllowance", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "balance", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "needed", + "type": "uint256" + } + ], + "name": "ERC20InsufficientBalance", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "approver", + "type": "address" + } + ], + "name": "ERC20InvalidApprover", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "receiver", + "type": "address" + } + ], + "name": "ERC20InvalidReceiver", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "sender", + "type": "address" + } + ], + "name": "ERC20InvalidSender", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "ERC20InvalidSpender", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + } + ], + "name": "ERC2612ExpiredSignature", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "signer", + "type": "address" + }, + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "ERC2612InvalidSigner", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + }, + { + "internalType": "uint48", + "name": "clock", + "type": "uint48" + } + ], + "name": "ERC5805FutureLookup", + "type": "error" + }, + { + "inputs": [], + "name": "ERC6372InconsistentClock", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "currentNonce", + "type": "uint256" + } + ], + "name": "InvalidAccountNonce", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidShortString", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "OwnableInvalidOwner", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "OwnableUnauthorizedAccount", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint8", + "name": "bits", + "type": "uint8" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "SafeCastOverflowedUintDowncast", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "string", + "name": "str", + "type": "string" + } + ], + "name": "StringTooLong", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "expiry", + "type": "uint256" + } + ], + "name": "VotesExpiredSignature", + "type": "error" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "delegator", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "fromDelegate", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "toDelegate", + "type": "address" + } + ], + "name": "DelegateChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "delegate", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "previousVotes", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newVotes", + "type": "uint256" + } + ], + "name": "DelegateVotesChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [], + "name": "EIP712DomainChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [], + "name": "CLOCK_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "DOMAIN_SEPARATOR", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint32", + "name": "pos", + "type": "uint32" + } + ], + "name": "checkpoints", + "outputs": [ + { + "components": [ + { + "internalType": "uint48", + "name": "_key", + "type": "uint48" + }, + { + "internalType": "uint208", + "name": "_value", + "type": "uint208" + } + ], + "internalType": "struct Checkpoints.Checkpoint208", + "name": "", + "type": "tuple" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "clock", + "outputs": [ + { + "internalType": "uint48", + "name": "", + "type": "uint48" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "delegatee", + "type": "address" + } + ], + "name": "delegate", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "delegatee", + "type": "address" + }, + { + "internalType": "uint256", + "name": "nonce", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "expiry", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "v", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "r", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "delegateBySig", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "delegates", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "eip712Domain", + "outputs": [ + { + "internalType": "bytes1", + "name": "fields", + "type": "bytes1" + }, + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "version", + "type": "string" + }, + { + "internalType": "uint256", + "name": "chainId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "verifyingContract", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + }, + { + "internalType": "uint256[]", + "name": "extensions", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "getPastTotalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "getPastVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "getVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "partners", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "amounts", + "type": "uint256[]" + } + ], + "name": "mintInitialSupply", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "nonces", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "numCheckpoints", + "outputs": [ + { + "internalType": "uint32", + "name": "", + "type": "uint32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "deadline", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "v", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "r", + "type": "bytes32" + }, + { + "internalType": "bytes32", + "name": "s", + "type": "bytes32" + } + ], + "name": "permit", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x610160604081815234620004a55762002c098038038091620000228286620004aa565b84398201606083820312620004a55782516001600160401b039190828111620004a5578162000053918601620004f3565b9160209182860151828111620004a557859162000072918801620004f3565b9501516001600160a01b03808216929091839003620004a55785519386850185811083821117620003a457875260019485815281810195603160f81b87528751848111620003a45760038054918383811c931680156200049a575b868410146200048457601f9283811162000439575b508086848211600114620003c657600091620003ba575b5060001982841b1c191690841b1781555b8b5191868311620003a45760049c8d548581811c9116801562000399575b8882101462000384578e83821162000339575b50508d87928511600114620002ce5750938394918492600095620002c2575b50501b92600019911b1c19161789555b62000175876200054e565b956101209687526200018782620006f3565b97610140988952838151910120918260e0525190209861010099808b524660a0528951938401927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f84528a85015260608401524660808401523060a084015260a0835260c083019383851090851117620002ad5750828852815190206080523060c052831562000296575050600b80546001600160a01b031981168417909155945194167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a36123be93846200084b853960805184611796015260a05184611851015260c05184611760015260e051846117e50152518361180b015251826107750152518161079e0152f35b631e4fbdf760e01b8252600060c490910152602490fd5b604190634e487b7160e01b6000525260246000fd5b0151935038806200015a565b929190601f1985169360005284886000209460005b8a8983831062000321575050501062000306575b50505050811b0189556200016a565b01519060f884600019921b161c1916905538808080620002f7565b868601518955909701969485019488935001620002e3565b600052876000208380870160051c8201928a88106200037a575b0160051c019086905b8281106200036d5750508e6200013b565b600081550186906200035c565b9250819262000353565b60228f634e487b7160e01b6000525260246000fd5b90607f169062000128565b634e487b7160e01b600052604160045260246000fd5b90508b015138620000f9565b8592508c90601f1983168560005289600020928a6000915b83831062000417575050508311620003fe575b5050811b0181556200010a565b8d015160001983861b60f8161c191690553880620003f1565b948482949597989293960151815501940192019087949392918f8b90620003de565b82600052866000208480840160051c8201928985106200047a575b0160051c019085905b8281106200046d575050620000e2565b600081550185906200045d565b9250819262000454565b634e487b7160e01b600052602260045260246000fd5b92607f1692620000cd565b600080fd5b601f909101601f19168101906001600160401b03821190821017620003a457604052565b60005b838110620004e25750506000910152565b8181015183820152602001620004d1565b81601f82011215620004a55780516001600160401b038111620003a457604051926200052a601f8301601f191660200185620004aa565b81845260208284010111620004a5576200054b9160208085019101620004ce565b90565b80516020919082811015620005ce575090601f8251116200058c57808251920151908083106200057d57501790565b82600019910360031b1b161790565b604490620005c09260405193849263305a27a960e01b845280600485015282519283918260248701528686019101620004ce565b601f01601f19168101030190fd5b6001600160401b038111620003a4576005928354926001938481811c91168015620006e8575b838210146200048457601f8111620006b1575b5081601f84116001146200064757509282939183926000946200063b575b50501b916000199060031b1c191617905560ff90565b01519250388062000625565b919083601f1981168760005284600020946000905b888383106200069657505050106200067c575b505050811b01905560ff90565b015160001960f88460031b161c191690553880806200066f565b8587015188559096019594850194879350908101906200065c565b8560005284601f846000209201871c820191601f8601881c015b828110620006db57505062000607565b60008155018590620006cb565b90607f1690620005f4565b805160209081811015620007205750601f8251116200058c57808251920151908083106200057d57501790565b906001600160401b038211620003a457600654926001938481811c911680156200083f575b838210146200048457601f811162000805575b5081601f84116001146200079957509282939183926000946200078d575b50501b916000199060031b1c19161760065560ff90565b01519250388062000776565b919083601f198116600660005284600020946000905b88838310620007ea5750505010620007d0575b505050811b0160065560ff90565b015160001960f88460031b161c19169055388080620007c2565b858701518855909601959485019487935090810190620007af565b600660005284601f84600020920160051c820191601f860160051c015b8281106200083257505062000758565b6000815501859062000822565b90607f16906200074556fe6080604052600436101561001257600080fd5b60003560e01c806306fdde03146101c7578063095ea7b3146101c257806318160ddd146101bd57806323b872dd146101b8578063313ce567146101b35780633644e515146101ae5780633a46b1a8146101a95780634bf5d7e9146101a4578063587cde1e1461019f5780635c19a95c1461019a5780636fcfff451461019557806370a0823114610190578063715018a61461018b5780637ecebe001461018657806384b0196e146101815780638da5cb5b1461017c5780638e539e8c1461017757806391ddadf41461017257806395d89b411461016d5780639ab24eb0146101685780639df2c95d14610163578063a9059cbb1461015e578063c3cda52014610159578063d505accf14610154578063dd62ed3e1461014f578063f1127ed81461014a5763f2fde38b1461014557600080fd5b610f90565b610edd565b610e85565b610d51565b610c88565b610c42565b610b98565b610a1d565b610976565b61094a565b61087b565b610852565b61075a565b610720565b6106ff565b6106c6565b61065e565b61063a565b6105ff565b61056d565b610485565b610462565b610446565b610399565b61037b565b61034a565b610220565b919082519283825260005b8481106101f8575050826000602080949584010152601f8019910116010190565b6020818301810151848301820152016101d7565b90602061021d9281815201906101cc565b90565b34610305576000806003193601126103025760405190806003546102438161135f565b808552916001918083169081156102d8575060011461027d575b6102798561026d81870382610af1565b6040519182918261020c565b0390f35b9250600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8284106102c057505050810160200161026d8261027961025d565b805460208587018101919091529093019281016102a5565b8695506102799693506020925061026d94915060ff191682840152151560051b820101929361025d565b80fd5b600080fd5b600435906001600160a01b038216820361030557565b602435906001600160a01b038216820361030557565b35906001600160a01b038216820361030557565b346103055760403660031901126103055761037061036661030a565b60243590336114ab565b602060405160018152f35b34610305576000366003190112610305576020600254604051908152f35b34610305576060366003190112610305576103b261030a565b6103ba610320565b6001600160a01b03821660009081526001602090815260408083203384529091529020604435919054926000198410610404575b6103f89350611399565b60405160018152602090f35b8284106104205761041b836103f89503338361155f565b6103ee565b604051637dc7a0d960e11b81523360048201526024810185905260448101849052606490fd5b3461030557600036600319011261030557602060405160128152f35b3461030557600036600319011261030557602061047d61175d565b604051908152f35b34610305576040366003190112610305576001600160a01b036104a661030a565b166000908152600960205260408120906104c160243561109e565b91805482938160058111610513575b50906020946104df9284611f9a565b806104f95750505b6040516001600160d01b039091168152f35b91610505849293611ab5565b92815220015460301c6104e7565b9461051d86611aff565b8603958611610568576020956104df9385875265ffffffffffff80838a8a20015416908516106000146105565750915b919250946104d0565b92915061056290611ac4565b9061054d565b611349565b346103055760003660031901126103055761058743611a83565b65ffffffffffff8061059843611a83565b169116036105ed576102796040516105af81610a7c565b601d81527f6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c7400000060208201526040519182916020835260208301906101cc565b6040516301bfc1c560e61b8152600490fd5b346103055760203660031901126103055760206001600160a01b038061062361030a565b166000526008825260406000205416604051908152f35b346103055760203660031901126103055761065c61065661030a565b336110df565b005b34610305576020366003190112610305576001600160a01b0361067f61030a565b16600052600960205260406000205463ffffffff908181116106a75760209160405191168152f35b604490604051906306dfcc6560e41b8252602060048301526024820152fd5b3461030557602036600319011261030557602061047d6106e461030a565b6001600160a01b031660009081526020819052604090205490565b346103055760003660031901126103055761071861102e565b61065c61105a565b34610305576020366003190112610305576001600160a01b0361074161030a565b1660005260076020526020604060002054604051908152f35b346103055760008060031936011261030257610804906107997f000000000000000000000000000000000000000000000000000000000000000061189d565b6107c27f0000000000000000000000000000000000000000000000000000000000000000611996565b91604051916107d083610a9d565b818352604051948594600f60f81b86526107f660209360e08589015260e08801906101cc565b9086820360408801526101cc565b904660608601523060808601528260a086015284820360c08601528080855193848152019401925b82811061083b57505050500390f35b83518552869550938101939281019260010161082c565b3461030557600036600319011261030557600b546040516001600160a01b039091168152602090f35b346103055760203660031901126103055761089760043561109e565b600a549060008291600584116108ef575b6108b29350611f31565b6000816108c757505060405160008152602090f35b600a6108d4602093611ab5565b9152600080516020612369833981519152015460301c6104e7565b91926108fa81611aff565b8103908111610568576108b293600a835265ffffffffffff8083600080516020612369833981519152015416908516106000146109385750916108a8565b92915061094490611ac4565b906108a8565b3461030557600036600319011261030557602061096643611a83565b65ffffffffffff60405191168152f35b34610305576000806003193601126103025760405190806004546109998161135f565b808552916001918083169081156102d857506001146109c2576102798561026d81870382610af1565b9250600483527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610a0557505050810160200161026d8261027961025d565b805460208587018101919091529093019281016109ea565b34610305576020366003190112610305576001600160a01b03610a3e61030a565b166000526009602052602060018060d01b03610a5d6040600020611c74565b16604051908152f35b634e487b7160e01b600052604160045260246000fd5b6040810190811067ffffffffffffffff821117610a9857604052565b610a66565b6020810190811067ffffffffffffffff821117610a9857604052565b60a0810190811067ffffffffffffffff821117610a9857604052565b60c0810190811067ffffffffffffffff821117610a9857604052565b90601f8019910116810190811067ffffffffffffffff821117610a9857604052565b60405190610b2082610a7c565b565b67ffffffffffffffff8111610a985760051b60200190565b81601f8201121561030557803591610b5183610b22565b92610b5f6040519485610af1565b808452602092838086019260051b820101928311610305578301905b828210610b89575050505090565b81358152908301908301610b7b565b346103055760403660031901126103055767ffffffffffffffff6004358181116103055736602382011215610305578060040135610bd581610b22565b91610be36040519384610af1565b81835260209160248385019160051b8301019136831161030557602401905b828210610c2b576024358587821161030557610c2561065c923690600401610b3a565b90611ffb565b838091610c3784610336565b815201910190610c02565b3461030557604036600319011261030557610370610c5e61030a565b6024359033611399565b6064359060ff8216820361030557565b6084359060ff8216820361030557565b346103055760c036600319011261030557610ca161030a565b60443590602435610cb0610c68565b834211610d3857610d2c61065c94610d33926040519060208201927fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf845260018060a01b0388166040840152866060840152608083015260808252610d1482610ab9565b610d2760a4359360843593519020611877565b611608565b91826115b2565b6110df565b604051632341d78760e11b815260048101859052602490fd5b346103055760e036600319011261030557610d6a61030a565b610d72610320565b60443590606435610d81610c78565b814211610e6c576001600160a01b0385811660008181526007602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c99281019283529283019390935292861660608201526080810187905260a081019190915260c080820194909452928352610e25929091610e1260e083610af1565b610d2760c4359360a43593519020611877565b6001600160a01b0384811690821603610e42575061065c926114ab565b6040516325c0072360e11b81526001600160a01b0391821660048201529084166024820152604490fd5b60405163313c898160e11b815260048101839052602490fd5b34610305576040366003190112610305576020610ed4610ea361030a565b610eab610320565b6001600160a01b0391821660009081526001855260408082209290931681526020919091522090565b54604051908152f35b3461030557604036600319011261030557610ef661030a565b6024359063ffffffff821682036103055761027991610f4691610f17611599565b50610f20611599565b506001600160a01b03166000908152600960205260409020610f40611599565b50611cb8565b5060405190610f5482610a7c565b5465ffffffffffff811680835260309190911c60209283019081526040805192835290516001600160d01b031692820192909252918291820190565b3461030557602036600319011261030557610fa961030a565b610fb161102e565b6001600160a01b0390811690811561100557600b54826bffffffffffffffffffffffff60a01b821617600b55167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3005b604051631e4fbdf760e01b815260006004820152602490fd5b61102661102e565b610b2061105a565b600b546001600160a01b0316330361104257565b60405163118cdaa760e01b8152336004820152602490fd5b600b80546001600160a01b031981169091556000906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3565b65ffffffffffff6110ae43611a83565b16808210156110c1575061021d90611a83565b6044925060405191637669fc0f60e11b835260048301526024820152fd5b6001600160a01b03818116600081815260086020526040812080548685166001600160a01b031982168117909255610b209694169461115c9390928691907f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9080a46001600160a01b031660009081526020819052604090205490565b915b6001600160a01b038083169392919081169081851415806112a7575b611186575b5050505050565b8161120b575b50508261119b575b808061117f565b6001600160a01b031660009081526009602052604090207fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724916111e8916111e29091611a50565b906112b0565b604080516001600160d01b039384168152919092166020820152a2388080611194565b6001600160a01b0316600090815260096020526040902061122b84611a50565b61123443611a83565b6001600160d01b0391828061124886611c74565b169116900392828411610568577fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7249361129d9261128492611e75565b6040805192851683529316602082015291829190820190565b0390a2388061118c565b5083151561117a565b906112ba43611a83565b6001600160d01b039182806112ce86611c74565b16911601918211610568576112e292611e75565b9091565b6112ef43611a83565b906001600160d01b03908180611303611c2a565b16911601908111610568576112e291611d8c565b61132043611a83565b906001600160d01b03908180611334611c2a565b1691169003908111611349576112e291611d8c565b634e487b7160e01b600052601160045260246000fd5b90600182811c9216801561138f575b602083101461137957565b634e487b7160e01b600052602260045260246000fd5b91607f169161136e565b6001600160a01b03808216949392919085156114925782168015611479576001600160a01b0382166000908152602081905260409020549584871061144a5784610b209697036113fb8460018060a01b03166000526000602052604060002090565b556001600160a01b0384166000908152602081815260409182902080548801905590518681527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a36122fd565b60405163391434e360e21b81526001600160a01b03841660048201526024810188905260448101869052606490fd5b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b6001600160a01b03808216929190831561154657821693841561152d57806115237f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259461150c60209560018060a01b03166000526001602052604060002090565b9060018060a01b0316600052602052604060002090565b55604051908152a3565b604051634a1406b160e11b815260006004820152602490fd5b60405163e602df0560e01b815260006004820152602490fd5b906001600160a01b03808316156115465781161561152d5761150c6115969260018060a01b03166000526001602052604060002090565b55565b604051906115a682610a7c565b60006020838281520152565b6001600160a01b038116600090815260076020526040902080546001810190915590918190036115e0575050565b6040516301d4b62360e61b81526001600160a01b039092166004830152602482015260449150fd5b9161021d939161161793611620565b909291926116d0565b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084116116a457926020929160ff608095604051948552168484015260408301526060820152600092839182805260015afa156116985780516001600160a01b0381161561168f57918190565b50809160019190565b604051903d90823e3d90fd5b50505060009160039190565b600411156116ba57565b634e487b7160e01b600052602160045260246000fd5b6116d9816116b0565b806116e2575050565b6116eb816116b0565b600181036117055760405163f645eedf60e01b8152600490fd5b61170e816116b0565b6002810361172f5760405163fce698f760e01b815260048101839052602490fd5b8061173b6003926116b0565b146117435750565b6040516335e2f38360e21b81526004810191909152602490fd5b307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316148061184e575b156117b8577f000000000000000000000000000000000000000000000000000000000000000090565b60405160208101907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82527f000000000000000000000000000000000000000000000000000000000000000060408201527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260a0815261184881610ad5565b51902090565b507f0000000000000000000000000000000000000000000000000000000000000000461461178f565b60429061188261175d565b906040519161190160f01b8352600283015260228201522090565b60ff81146118db5760ff811690601f82116118c957604051916118bf83610a7c565b8252602082015290565b604051632cd44ac360e21b8152600490fd5b506040516005548160006118ee8361135f565b808352926001908181169081156119745750600114611915575b5061021d92500382610af1565b6005600090815291507f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db05b848310611959575061021d935050810160200138611908565b81935090816020925483858901015201910190918492611940565b90506020925061021d94915060ff191682840152151560051b82010138611908565b60ff81146119b85760ff811690601f82116118c957604051916118bf83610a7c565b506040516006548160006119cb8361135f565b8083529260019081811690811561197457506001146119f1575061021d92500382610af1565b6006600090815291507ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f5b848310611a35575061021d935050810160200138611908565b81935090816020925483858901015201910190918492611a1c565b6001600160d01b0390818111611a64571690565b604490604051906306dfcc6560e41b825260d060048301526024820152fd5b65ffffffffffff90818111611a96571690565b604490604051906306dfcc6560e41b8252603060048301526024820152fd5b60001981019190821161056857565b906001820180921161056857565b9190820180921161056857565b8115611ae9570490565b634e487b7160e01b600052601260045260246000fd5b600181111561021d57600181600160801b811015611c18575b611bc0611bb6611bac611ba2611b98611b8e611bcc97600488600160401b611bc79a1015611c0b575b640100000000811015611bfe575b62010000811015611bf1575b610100811015611be5575b6010811015611bd9575b1015611bd1575b60030260011c611b87818b611adf565b0160011c90565b611b87818a611adf565b611b878189611adf565b611b878188611adf565b611b878187611adf565b611b878186611adf565b8093611adf565b821190565b900390565b60011b611b77565b811c9160021b91611b70565b60081c91811b91611b66565b60101c9160081b91611b5b565b60201c9160101b91611b4f565b60401c9160201b91611b41565b50600160401b9050608082901c611b18565b600a5460009080611c3c575050600090565b8060001981011161056857600a7fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a79252015460301c90565b805460009181611c8657505050600090565b6000199282848101116105685760209181522001015460301c90565b634e487b7160e01b600052603260045260246000fd5b8054821015611cd05760005260206000200190600090565b611ca2565b600a5490600160401b821015610a98576001820180600a55821015611cd057600a600052805160209091015160301b65ffffffffffff191665ffffffffffff919091161760008051602061236983398151915290910155565b8054600160401b811015610a9857611d4b91600182018155611cb8565b611d7657815160209092015160301b65ffffffffffff191665ffffffffffff92909216919091179055565b634e487b7160e01b600052600060045260246000fd5b600a549192918015611e4b57611da4611dbc91611ab5565b600a6000526000805160206123698339815191520190565b9081549165ffffffffffff90818416918316808311611e3957869203611e0157611dfa92509065ffffffffffff82549181199060301b169116179055565b60301c9190565b5050611e3490611e20611e12610b13565b65ffffffffffff9092168252565b6001600160d01b0385166020820152611cd5565b611dfa565b604051632520601d60e01b8152600490fd5b50611e6f90611e5b611e12610b13565b6001600160d01b0384166020820152611cd5565b60009190565b80549293928015611f0c57611e8c611e9991611ab5565b8260005260206000200190565b9182549265ffffffffffff91828516928116808411611e3957879303611ed85750611dfa92509065ffffffffffff82549181199060301b169116179055565b915050611e3491611ef8611eea610b13565b65ffffffffffff9093168352565b6001600160d01b0386166020830152611d2e565b5090611e6f91611f1d611eea610b13565b6001600160d01b0385166020830152611d2e565b905b828110611f3f57505090565b90918082169080831860011c820180921161056857600a60005265ffffffffffff808360008051602061236983398151915201541690851610600014611f885750915b90611f33565b929150611f9490611ac4565b90611f82565b91905b838210611faa5750505090565b9091928083169080841860011c82018092116105685760008581526020902082015465ffffffffffff9081169084161015611fe95750925b9190611f9d565b939250611ff590611ac4565b91611fe2565b91909161200661102e565b80518351036120c25761201b81511515612100565b6000805b82518210156120b5576120886120af9161206261205b61204f612042878961214a565b516001600160a01b031690565b6001600160a01b031690565b151561215e565b61207761206f858961214a565b511515612199565b612081848861214a565b5190611ad2565b916120aa612099612042838761214a565b6120a3838961214a565b51906121d3565b61213b565b9061201f565b5050509050610b2061101e565b60405162461bcd60e51b8152602060048201526016602482015275082e4e4c2f2e640d8cadccee8d040dad2e6dac2e8c6d60531b6044820152606490fd5b1561210757565b60405162461bcd60e51b815260206004820152600c60248201526b456d7074792061727261797360a01b6044820152606490fd5b60001981146105685760010190565b8051821015611cd05760209160051b010190565b1561216557565b60405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606490fd5b156121a057565b60405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b6044820152606490fd5b91906001600160a01b038316801561147957600254828101809111610568576002556001600160a01b038416600090815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a3600254926001600160d01b03841161225957610b2092935061227f565b604051630e58ae9360e11b8152600481018590526001600160d01b036024820152604490fd5b90610b209161229561229083611a50565b6112e6565b50506001600160a01b039081169081156122e5575b60086020527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c75460009283526040909220548116911661115e565b6122f66122f184611a50565b611317565b50506122aa565b610b2092916001600160a01b03918216919081908315612355575b16918215612342575b6000526008602052806040600020541691600052604060002054169061115e565b61234e6122f185611a50565b5050612321565b61236161229086611a50565b505061231856fec65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8a26469706673582212200116234fdedb856572cf71350ec48e0cd04d30b316abca3f0da91dc1800ce6fa64736f6c63430008140033", + "deployedBytecode": "0x6080604052600436101561001257600080fd5b60003560e01c806306fdde03146101c7578063095ea7b3146101c257806318160ddd146101bd57806323b872dd146101b8578063313ce567146101b35780633644e515146101ae5780633a46b1a8146101a95780634bf5d7e9146101a4578063587cde1e1461019f5780635c19a95c1461019a5780636fcfff451461019557806370a0823114610190578063715018a61461018b5780637ecebe001461018657806384b0196e146101815780638da5cb5b1461017c5780638e539e8c1461017757806391ddadf41461017257806395d89b411461016d5780639ab24eb0146101685780639df2c95d14610163578063a9059cbb1461015e578063c3cda52014610159578063d505accf14610154578063dd62ed3e1461014f578063f1127ed81461014a5763f2fde38b1461014557600080fd5b610f90565b610edd565b610e85565b610d51565b610c88565b610c42565b610b98565b610a1d565b610976565b61094a565b61087b565b610852565b61075a565b610720565b6106ff565b6106c6565b61065e565b61063a565b6105ff565b61056d565b610485565b610462565b610446565b610399565b61037b565b61034a565b610220565b919082519283825260005b8481106101f8575050826000602080949584010152601f8019910116010190565b6020818301810151848301820152016101d7565b90602061021d9281815201906101cc565b90565b34610305576000806003193601126103025760405190806003546102438161135f565b808552916001918083169081156102d8575060011461027d575b6102798561026d81870382610af1565b6040519182918261020c565b0390f35b9250600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8284106102c057505050810160200161026d8261027961025d565b805460208587018101919091529093019281016102a5565b8695506102799693506020925061026d94915060ff191682840152151560051b820101929361025d565b80fd5b600080fd5b600435906001600160a01b038216820361030557565b602435906001600160a01b038216820361030557565b35906001600160a01b038216820361030557565b346103055760403660031901126103055761037061036661030a565b60243590336114ab565b602060405160018152f35b34610305576000366003190112610305576020600254604051908152f35b34610305576060366003190112610305576103b261030a565b6103ba610320565b6001600160a01b03821660009081526001602090815260408083203384529091529020604435919054926000198410610404575b6103f89350611399565b60405160018152602090f35b8284106104205761041b836103f89503338361155f565b6103ee565b604051637dc7a0d960e11b81523360048201526024810185905260448101849052606490fd5b3461030557600036600319011261030557602060405160128152f35b3461030557600036600319011261030557602061047d61175d565b604051908152f35b34610305576040366003190112610305576001600160a01b036104a661030a565b166000908152600960205260408120906104c160243561109e565b91805482938160058111610513575b50906020946104df9284611f9a565b806104f95750505b6040516001600160d01b039091168152f35b91610505849293611ab5565b92815220015460301c6104e7565b9461051d86611aff565b8603958611610568576020956104df9385875265ffffffffffff80838a8a20015416908516106000146105565750915b919250946104d0565b92915061056290611ac4565b9061054d565b611349565b346103055760003660031901126103055761058743611a83565b65ffffffffffff8061059843611a83565b169116036105ed576102796040516105af81610a7c565b601d81527f6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c7400000060208201526040519182916020835260208301906101cc565b6040516301bfc1c560e61b8152600490fd5b346103055760203660031901126103055760206001600160a01b038061062361030a565b166000526008825260406000205416604051908152f35b346103055760203660031901126103055761065c61065661030a565b336110df565b005b34610305576020366003190112610305576001600160a01b0361067f61030a565b16600052600960205260406000205463ffffffff908181116106a75760209160405191168152f35b604490604051906306dfcc6560e41b8252602060048301526024820152fd5b3461030557602036600319011261030557602061047d6106e461030a565b6001600160a01b031660009081526020819052604090205490565b346103055760003660031901126103055761071861102e565b61065c61105a565b34610305576020366003190112610305576001600160a01b0361074161030a565b1660005260076020526020604060002054604051908152f35b346103055760008060031936011261030257610804906107997f000000000000000000000000000000000000000000000000000000000000000061189d565b6107c27f0000000000000000000000000000000000000000000000000000000000000000611996565b91604051916107d083610a9d565b818352604051948594600f60f81b86526107f660209360e08589015260e08801906101cc565b9086820360408801526101cc565b904660608601523060808601528260a086015284820360c08601528080855193848152019401925b82811061083b57505050500390f35b83518552869550938101939281019260010161082c565b3461030557600036600319011261030557600b546040516001600160a01b039091168152602090f35b346103055760203660031901126103055761089760043561109e565b600a549060008291600584116108ef575b6108b29350611f31565b6000816108c757505060405160008152602090f35b600a6108d4602093611ab5565b9152600080516020612369833981519152015460301c6104e7565b91926108fa81611aff565b8103908111610568576108b293600a835265ffffffffffff8083600080516020612369833981519152015416908516106000146109385750916108a8565b92915061094490611ac4565b906108a8565b3461030557600036600319011261030557602061096643611a83565b65ffffffffffff60405191168152f35b34610305576000806003193601126103025760405190806004546109998161135f565b808552916001918083169081156102d857506001146109c2576102798561026d81870382610af1565b9250600483527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610a0557505050810160200161026d8261027961025d565b805460208587018101919091529093019281016109ea565b34610305576020366003190112610305576001600160a01b03610a3e61030a565b166000526009602052602060018060d01b03610a5d6040600020611c74565b16604051908152f35b634e487b7160e01b600052604160045260246000fd5b6040810190811067ffffffffffffffff821117610a9857604052565b610a66565b6020810190811067ffffffffffffffff821117610a9857604052565b60a0810190811067ffffffffffffffff821117610a9857604052565b60c0810190811067ffffffffffffffff821117610a9857604052565b90601f8019910116810190811067ffffffffffffffff821117610a9857604052565b60405190610b2082610a7c565b565b67ffffffffffffffff8111610a985760051b60200190565b81601f8201121561030557803591610b5183610b22565b92610b5f6040519485610af1565b808452602092838086019260051b820101928311610305578301905b828210610b89575050505090565b81358152908301908301610b7b565b346103055760403660031901126103055767ffffffffffffffff6004358181116103055736602382011215610305578060040135610bd581610b22565b91610be36040519384610af1565b81835260209160248385019160051b8301019136831161030557602401905b828210610c2b576024358587821161030557610c2561065c923690600401610b3a565b90611ffb565b838091610c3784610336565b815201910190610c02565b3461030557604036600319011261030557610370610c5e61030a565b6024359033611399565b6064359060ff8216820361030557565b6084359060ff8216820361030557565b346103055760c036600319011261030557610ca161030a565b60443590602435610cb0610c68565b834211610d3857610d2c61065c94610d33926040519060208201927fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf845260018060a01b0388166040840152866060840152608083015260808252610d1482610ab9565b610d2760a4359360843593519020611877565b611608565b91826115b2565b6110df565b604051632341d78760e11b815260048101859052602490fd5b346103055760e036600319011261030557610d6a61030a565b610d72610320565b60443590606435610d81610c78565b814211610e6c576001600160a01b0385811660008181526007602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c99281019283529283019390935292861660608201526080810187905260a081019190915260c080820194909452928352610e25929091610e1260e083610af1565b610d2760c4359360a43593519020611877565b6001600160a01b0384811690821603610e42575061065c926114ab565b6040516325c0072360e11b81526001600160a01b0391821660048201529084166024820152604490fd5b60405163313c898160e11b815260048101839052602490fd5b34610305576040366003190112610305576020610ed4610ea361030a565b610eab610320565b6001600160a01b0391821660009081526001855260408082209290931681526020919091522090565b54604051908152f35b3461030557604036600319011261030557610ef661030a565b6024359063ffffffff821682036103055761027991610f4691610f17611599565b50610f20611599565b506001600160a01b03166000908152600960205260409020610f40611599565b50611cb8565b5060405190610f5482610a7c565b5465ffffffffffff811680835260309190911c60209283019081526040805192835290516001600160d01b031692820192909252918291820190565b3461030557602036600319011261030557610fa961030a565b610fb161102e565b6001600160a01b0390811690811561100557600b54826bffffffffffffffffffffffff60a01b821617600b55167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3005b604051631e4fbdf760e01b815260006004820152602490fd5b61102661102e565b610b2061105a565b600b546001600160a01b0316330361104257565b60405163118cdaa760e01b8152336004820152602490fd5b600b80546001600160a01b031981169091556000906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3565b65ffffffffffff6110ae43611a83565b16808210156110c1575061021d90611a83565b6044925060405191637669fc0f60e11b835260048301526024820152fd5b6001600160a01b03818116600081815260086020526040812080548685166001600160a01b031982168117909255610b209694169461115c9390928691907f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9080a46001600160a01b031660009081526020819052604090205490565b915b6001600160a01b038083169392919081169081851415806112a7575b611186575b5050505050565b8161120b575b50508261119b575b808061117f565b6001600160a01b031660009081526009602052604090207fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724916111e8916111e29091611a50565b906112b0565b604080516001600160d01b039384168152919092166020820152a2388080611194565b6001600160a01b0316600090815260096020526040902061122b84611a50565b61123443611a83565b6001600160d01b0391828061124886611c74565b169116900392828411610568577fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7249361129d9261128492611e75565b6040805192851683529316602082015291829190820190565b0390a2388061118c565b5083151561117a565b906112ba43611a83565b6001600160d01b039182806112ce86611c74565b16911601918211610568576112e292611e75565b9091565b6112ef43611a83565b906001600160d01b03908180611303611c2a565b16911601908111610568576112e291611d8c565b61132043611a83565b906001600160d01b03908180611334611c2a565b1691169003908111611349576112e291611d8c565b634e487b7160e01b600052601160045260246000fd5b90600182811c9216801561138f575b602083101461137957565b634e487b7160e01b600052602260045260246000fd5b91607f169161136e565b6001600160a01b03808216949392919085156114925782168015611479576001600160a01b0382166000908152602081905260409020549584871061144a5784610b209697036113fb8460018060a01b03166000526000602052604060002090565b556001600160a01b0384166000908152602081815260409182902080548801905590518681527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a36122fd565b60405163391434e360e21b81526001600160a01b03841660048201526024810188905260448101869052606490fd5b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fd5b6001600160a01b03808216929190831561154657821693841561152d57806115237f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259461150c60209560018060a01b03166000526001602052604060002090565b9060018060a01b0316600052602052604060002090565b55604051908152a3565b604051634a1406b160e11b815260006004820152602490fd5b60405163e602df0560e01b815260006004820152602490fd5b906001600160a01b03808316156115465781161561152d5761150c6115969260018060a01b03166000526001602052604060002090565b55565b604051906115a682610a7c565b60006020838281520152565b6001600160a01b038116600090815260076020526040902080546001810190915590918190036115e0575050565b6040516301d4b62360e61b81526001600160a01b039092166004830152602482015260449150fd5b9161021d939161161793611620565b909291926116d0565b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084116116a457926020929160ff608095604051948552168484015260408301526060820152600092839182805260015afa156116985780516001600160a01b0381161561168f57918190565b50809160019190565b604051903d90823e3d90fd5b50505060009160039190565b600411156116ba57565b634e487b7160e01b600052602160045260246000fd5b6116d9816116b0565b806116e2575050565b6116eb816116b0565b600181036117055760405163f645eedf60e01b8152600490fd5b61170e816116b0565b6002810361172f5760405163fce698f760e01b815260048101839052602490fd5b8061173b6003926116b0565b146117435750565b6040516335e2f38360e21b81526004810191909152602490fd5b307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316148061184e575b156117b8577f000000000000000000000000000000000000000000000000000000000000000090565b60405160208101907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82527f000000000000000000000000000000000000000000000000000000000000000060408201527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260a0815261184881610ad5565b51902090565b507f0000000000000000000000000000000000000000000000000000000000000000461461178f565b60429061188261175d565b906040519161190160f01b8352600283015260228201522090565b60ff81146118db5760ff811690601f82116118c957604051916118bf83610a7c565b8252602082015290565b604051632cd44ac360e21b8152600490fd5b506040516005548160006118ee8361135f565b808352926001908181169081156119745750600114611915575b5061021d92500382610af1565b6005600090815291507f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db05b848310611959575061021d935050810160200138611908565b81935090816020925483858901015201910190918492611940565b90506020925061021d94915060ff191682840152151560051b82010138611908565b60ff81146119b85760ff811690601f82116118c957604051916118bf83610a7c565b506040516006548160006119cb8361135f565b8083529260019081811690811561197457506001146119f1575061021d92500382610af1565b6006600090815291507ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f5b848310611a35575061021d935050810160200138611908565b81935090816020925483858901015201910190918492611a1c565b6001600160d01b0390818111611a64571690565b604490604051906306dfcc6560e41b825260d060048301526024820152fd5b65ffffffffffff90818111611a96571690565b604490604051906306dfcc6560e41b8252603060048301526024820152fd5b60001981019190821161056857565b906001820180921161056857565b9190820180921161056857565b8115611ae9570490565b634e487b7160e01b600052601260045260246000fd5b600181111561021d57600181600160801b811015611c18575b611bc0611bb6611bac611ba2611b98611b8e611bcc97600488600160401b611bc79a1015611c0b575b640100000000811015611bfe575b62010000811015611bf1575b610100811015611be5575b6010811015611bd9575b1015611bd1575b60030260011c611b87818b611adf565b0160011c90565b611b87818a611adf565b611b878189611adf565b611b878188611adf565b611b878187611adf565b611b878186611adf565b8093611adf565b821190565b900390565b60011b611b77565b811c9160021b91611b70565b60081c91811b91611b66565b60101c9160081b91611b5b565b60201c9160101b91611b4f565b60401c9160201b91611b41565b50600160401b9050608082901c611b18565b600a5460009080611c3c575050600090565b8060001981011161056857600a7fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a79252015460301c90565b805460009181611c8657505050600090565b6000199282848101116105685760209181522001015460301c90565b634e487b7160e01b600052603260045260246000fd5b8054821015611cd05760005260206000200190600090565b611ca2565b600a5490600160401b821015610a98576001820180600a55821015611cd057600a600052805160209091015160301b65ffffffffffff191665ffffffffffff919091161760008051602061236983398151915290910155565b8054600160401b811015610a9857611d4b91600182018155611cb8565b611d7657815160209092015160301b65ffffffffffff191665ffffffffffff92909216919091179055565b634e487b7160e01b600052600060045260246000fd5b600a549192918015611e4b57611da4611dbc91611ab5565b600a6000526000805160206123698339815191520190565b9081549165ffffffffffff90818416918316808311611e3957869203611e0157611dfa92509065ffffffffffff82549181199060301b169116179055565b60301c9190565b5050611e3490611e20611e12610b13565b65ffffffffffff9092168252565b6001600160d01b0385166020820152611cd5565b611dfa565b604051632520601d60e01b8152600490fd5b50611e6f90611e5b611e12610b13565b6001600160d01b0384166020820152611cd5565b60009190565b80549293928015611f0c57611e8c611e9991611ab5565b8260005260206000200190565b9182549265ffffffffffff91828516928116808411611e3957879303611ed85750611dfa92509065ffffffffffff82549181199060301b169116179055565b915050611e3491611ef8611eea610b13565b65ffffffffffff9093168352565b6001600160d01b0386166020830152611d2e565b5090611e6f91611f1d611eea610b13565b6001600160d01b0385166020830152611d2e565b905b828110611f3f57505090565b90918082169080831860011c820180921161056857600a60005265ffffffffffff808360008051602061236983398151915201541690851610600014611f885750915b90611f33565b929150611f9490611ac4565b90611f82565b91905b838210611faa5750505090565b9091928083169080841860011c82018092116105685760008581526020902082015465ffffffffffff9081169084161015611fe95750925b9190611f9d565b939250611ff590611ac4565b91611fe2565b91909161200661102e565b80518351036120c25761201b81511515612100565b6000805b82518210156120b5576120886120af9161206261205b61204f612042878961214a565b516001600160a01b031690565b6001600160a01b031690565b151561215e565b61207761206f858961214a565b511515612199565b612081848861214a565b5190611ad2565b916120aa612099612042838761214a565b6120a3838961214a565b51906121d3565b61213b565b9061201f565b5050509050610b2061101e565b60405162461bcd60e51b8152602060048201526016602482015275082e4e4c2f2e640d8cadccee8d040dad2e6dac2e8c6d60531b6044820152606490fd5b1561210757565b60405162461bcd60e51b815260206004820152600c60248201526b456d7074792061727261797360a01b6044820152606490fd5b60001981146105685760010190565b8051821015611cd05760209160051b010190565b1561216557565b60405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b6044820152606490fd5b156121a057565b60405162461bcd60e51b815260206004820152600b60248201526a16995c9bc8185b5bdd5b9d60aa1b6044820152606490fd5b91906001600160a01b038316801561147957600254828101809111610568576002556001600160a01b038416600090815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a3600254926001600160d01b03841161225957610b2092935061227f565b604051630e58ae9360e11b8152600481018590526001600160d01b036024820152604490fd5b90610b209161229561229083611a50565b6112e6565b50506001600160a01b039081169081156122e5575b60086020527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c75460009283526040909220548116911661115e565b6122f66122f184611a50565b611317565b50506122aa565b610b2092916001600160a01b03918216919081908315612355575b16918215612342575b6000526008602052806040600020541691600052604060002054169061115e565b61234e6122f185611a50565b5050612321565b61236161229086611a50565b505061231856fec65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8a26469706673582212200116234fdedb856572cf71350ec48e0cd04d30b316abca3f0da91dc1800ce6fa64736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/artifacts/contracts/GovernorContract.sol/GovernorContract.dbg.json b/backend/artifacts/contracts/GovernorContract.sol/GovernorContract.dbg.json new file mode 100644 index 0000000..3e8c78c --- /dev/null +++ b/backend/artifacts/contracts/GovernorContract.sol/GovernorContract.dbg.json @@ -0,0 +1,4 @@ +{ + "_format": "hh-sol-dbg-1", + "buildInfo": "../../build-info/f3f069df8eac5bd54bd69f81015dcedb.json" +} diff --git a/backend/artifacts/contracts/GovernorContract.sol/GovernorContract.json b/backend/artifacts/contracts/GovernorContract.sol/GovernorContract.json new file mode 100644 index 0000000..6e670d4 --- /dev/null +++ b/backend/artifacts/contracts/GovernorContract.sol/GovernorContract.json @@ -0,0 +1,1694 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "GovernorContract", + "sourceName": "contracts/GovernorContract.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "string", + "name": "_name", + "type": "string" + }, + { + "internalType": "contract IVotes", + "name": "_token", + "type": "address" + }, + { + "internalType": "contract TimelockController", + "name": "_timelock", + "type": "address" + }, + { + "internalType": "uint48", + "name": "_votingDelay", + "type": "uint48" + }, + { + "internalType": "uint32", + "name": "_votingPeriod", + "type": "uint32" + }, + { + "internalType": "uint256", + "name": "_proposalThreshold", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_quorumPercentage", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "inputs": [], + "name": "CheckpointUnorderedInsertion", + "type": "error" + }, + { + "inputs": [], + "name": "FailedCall", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "GovernorAlreadyCastVote", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorAlreadyQueuedProposal", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorDisabledDeposit", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "proposer", + "type": "address" + }, + { + "internalType": "uint256", + "name": "votes", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "threshold", + "type": "uint256" + } + ], + "name": "GovernorInsufficientProposerVotes", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "targets", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "calldatas", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "values", + "type": "uint256" + } + ], + "name": "GovernorInvalidProposalLength", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "quorumNumerator", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "quorumDenominator", + "type": "uint256" + } + ], + "name": "GovernorInvalidQuorumFraction", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "voter", + "type": "address" + } + ], + "name": "GovernorInvalidSignature", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorInvalidVoteParams", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorInvalidVoteType", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "votingPeriod", + "type": "uint256" + } + ], + "name": "GovernorInvalidVotingPeriod", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorNonexistentProposal", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "GovernorNotQueuedProposal", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "GovernorOnlyExecutor", + "type": "error" + }, + { + "inputs": [], + "name": "GovernorQueueNotImplemented", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "proposer", + "type": "address" + } + ], + "name": "GovernorRestrictedProposer", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "GovernorUnableToCancel", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "enum IGovernor.ProposalState", + "name": "current", + "type": "uint8" + }, + { + "internalType": "bytes32", + "name": "expectedStates", + "type": "bytes32" + } + ], + "name": "GovernorUnexpectedProposalState", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "currentNonce", + "type": "uint256" + } + ], + "name": "InvalidAccountNonce", + "type": "error" + }, + { + "inputs": [], + "name": "InvalidShortString", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "uint8", + "name": "bits", + "type": "uint8" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "SafeCastOverflowedUintDowncast", + "type": "error" + }, + { + "inputs": [ + { + "internalType": "string", + "name": "str", + "type": "string" + } + ], + "name": "StringTooLong", + "type": "error" + }, + { + "anonymous": false, + "inputs": [], + "name": "EIP712DomainChanged", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "ProposalCanceled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "address", + "name": "proposer", + "type": "address" + }, + { + "indexed": false, + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "indexed": false, + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "indexed": false, + "internalType": "string[]", + "name": "signatures", + "type": "string[]" + }, + { + "indexed": false, + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "voteStart", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "voteEnd", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "description", + "type": "string" + } + ], + "name": "ProposalCreated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "ProposalExecuted", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "etaSeconds", + "type": "uint256" + } + ], + "name": "ProposalQueued", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "oldProposalThreshold", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newProposalThreshold", + "type": "uint256" + } + ], + "name": "ProposalThresholdSet", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "oldQuorumNumerator", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newQuorumNumerator", + "type": "uint256" + } + ], + "name": "QuorumNumeratorUpdated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "address", + "name": "oldTimelock", + "type": "address" + }, + { + "indexed": false, + "internalType": "address", + "name": "newTimelock", + "type": "address" + } + ], + "name": "TimelockChange", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "weight", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "reason", + "type": "string" + } + ], + "name": "VoteCast", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "weight", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "VoteCastWithParams", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "oldVotingDelay", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newVotingDelay", + "type": "uint256" + } + ], + "name": "VotingDelaySet", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint256", + "name": "oldVotingPeriod", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "newVotingPeriod", + "type": "uint256" + } + ], + "name": "VotingPeriodSet", + "type": "event" + }, + { + "inputs": [], + "name": "BALLOT_TYPEHASH", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "CLOCK_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "COUNTING_MODE", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [], + "name": "EXTENDED_BALLOT_TYPEHASH", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "cancel", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + } + ], + "name": "castVote", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "castVoteBySig", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + } + ], + "name": "castVoteWithReason", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "castVoteWithReasonAndParams", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "uint8", + "name": "support", + "type": "uint8" + }, + { + "internalType": "address", + "name": "voter", + "type": "address" + }, + { + "internalType": "string", + "name": "reason", + "type": "string" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "castVoteWithReasonAndParamsBySig", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "clock", + "outputs": [ + { + "internalType": "uint48", + "name": "", + "type": "uint48" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "eip712Domain", + "outputs": [ + { + "internalType": "bytes1", + "name": "fields", + "type": "bytes1" + }, + { + "internalType": "string", + "name": "name", + "type": "string" + }, + { + "internalType": "string", + "name": "version", + "type": "string" + }, + { + "internalType": "uint256", + "name": "chainId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "verifyingContract", + "type": "address" + }, + { + "internalType": "bytes32", + "name": "salt", + "type": "bytes32" + }, + { + "internalType": "uint256[]", + "name": "extensions", + "type": "uint256[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "execute", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "getProposalId", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "getVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "params", + "type": "bytes" + } + ], + "name": "getVotesWithParams", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + }, + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "hasVoted", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "hashProposal", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + } + ], + "name": "nonces", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "uint256[]", + "name": "", + "type": "uint256[]" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155BatchReceived", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC1155Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "address", + "name": "", + "type": "address" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "onERC721Received", + "outputs": [ + { + "internalType": "bytes4", + "name": "", + "type": "bytes4" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalDeadline", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalEta", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalNeedsQueuing", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalProposer", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalSnapshot", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "proposalThreshold", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "proposalVotes", + "outputs": [ + { + "internalType": "uint256", + "name": "againstVotes", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "forVotes", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "abstainVotes", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "string", + "name": "description", + "type": "string" + } + ], + "name": "propose", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address[]", + "name": "targets", + "type": "address[]" + }, + { + "internalType": "uint256[]", + "name": "values", + "type": "uint256[]" + }, + { + "internalType": "bytes[]", + "name": "calldatas", + "type": "bytes[]" + }, + { + "internalType": "bytes32", + "name": "descriptionHash", + "type": "bytes32" + } + ], + "name": "queue", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "blockNumber", + "type": "uint256" + } + ], + "name": "quorum", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "quorumDenominator", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "timepoint", + "type": "uint256" + } + ], + "name": "quorumNumerator", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "quorumNumerator", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "target", + "type": "address" + }, + { + "internalType": "uint256", + "name": "value", + "type": "uint256" + }, + { + "internalType": "bytes", + "name": "data", + "type": "bytes" + } + ], + "name": "relay", + "outputs": [], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "newProposalThreshold", + "type": "uint256" + } + ], + "name": "setProposalThreshold", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint48", + "name": "newVotingDelay", + "type": "uint48" + } + ], + "name": "setVotingDelay", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32", + "name": "newVotingPeriod", + "type": "uint32" + } + ], + "name": "setVotingPeriod", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "proposalId", + "type": "uint256" + } + ], + "name": "state", + "outputs": [ + { + "internalType": "enum IGovernor.ProposalState", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes4", + "name": "interfaceId", + "type": "bytes4" + } + ], + "name": "supportsInterface", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "timelock", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "token", + "outputs": [ + { + "internalType": "contract IERC5805", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "newQuorumNumerator", + "type": "uint256" + } + ], + "name": "updateQuorumNumerator", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "contract TimelockController", + "name": "newTimelock", + "type": "address" + } + ], + "name": "updateTimelock", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "version", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "votingDelay", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "votingPeriod", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "stateMutability": "payable", + "type": "receive" + } + ], + "bytecode": "0x61018060405234620000b7576200002362000019620001c1565b9094919362000295565b604051613c6a908162000cf0823960805181612749015260a051816127fe015260c05181612713015260e05181612798015261010051816127be015261012051816113a9015261014051816113d501526101605181818161162701528181611aa801528181611bdd01528181611c67015281816123b5015281816124820152818161258b0152818161330b01526133db0152f35b600080fd5b634e487b7160e01b600052604160045260246000fd5b604081019081106001600160401b03821117620000ee57604052565b620000bc565b60c081019081106001600160401b03821117620000ee57604052565b601f909101601f19168101906001600160401b03821190821017620000ee57604052565b604051906200014382620000d2565b565b6001600160401b038111620000ee57601f01601f191660200190565b60005b838110620001755750506000910152565b818101518382015260200162000164565b51906001600160a01b0382168203620000b757565b519065ffffffffffff82168203620000b757565b519063ffffffff82168203620000b757565b6200499a8038038060405192620001d9828562000110565b8339810160e082820312620000b75781516001600160401b038111620000b757820181601f82011215620000b7578051620002148162000145565b9262000224604051948562000110565b81845260208284010111620000b75762000245916020808501910162000161565b620002536020830162000186565b92620002626040840162000186565b9262000271606082016200019b565b926200028060808301620001af565b9260c060a08401519301519196959493929190565b94620003726200038b956200036c62000378949662000366620001439b604051620002c081620000d2565b6001815260208101603160f81b8152620002da83620008b0565b61012052620002e982620009be565b6101405282516020840120918260e05251902080610100524660a0526040519060208201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8452604083015260608201524660808201523060a082015260a081526200035681620000f4565b5190206080523060c052620004db565b620005ce565b6200061c565b620006a0565b6001600160a01b03166101605262000728565b620006d9565b90600182811c92168015620003c3575b6020831014620003ad57565b634e487b7160e01b600052602260045260246000fd5b91607f1691620003a1565b601f8111620003db575050565b6000906003825260208220906020601f850160051c830194106200041c575b601f0160051c01915b8281106200041057505050565b81815560010162000403565b9092508290620003fa565b601f811162000434575050565b60009081805260208220906020601f850160051c8301941062000474575b601f0160051c01915b8281106200046857505050565b8181556001016200045b565b909250829062000452565b90601f82116200048d575050565b60019160009083825260208220906020601f850160051c83019410620004d0575b601f0160051c01915b828110620004c55750505050565b8181558301620004b7565b9092508290620004ae565b80519091906001600160401b038111620000ee5762000507816200050160035462000391565b620003ce565b602080601f83116001146200054657508192936000926200053a575b50508160011b916000199060031b1c191617600355565b01519050388062000523565b6003600052601f198316949091907fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b926000905b878210620005b55750508360019596106200059b575b505050811b01600355565b015160001960f88460031b161c1916905538808062000590565b806001859682949686015181550195019301906200057a565b6008547fc565b045403dc03c2eea82b81a0465edad9e2e7fc4d97e11421c209da93d7a93604080519365ffffffffffff9081851686521693846020820152a165ffffffffffff191617600855565b63ffffffff80821691821562000687577f7e3f7f0708a84de9203036abaa450dccc85ad5ff52f78c170f3edb55cf5e8828604069ffffffff00000000000093600854958251918760301c1682526020820152a160301b169069ffffffff000000000000191617600855565b60405163f1cfbf0560e01b815260006004820152602490fd5b60075460408051918252602082018390527fccb45da8d5717e6c4544694297c4ba5cf151d455c9bb0ed4fc7a38411bc0546191a1600755565b600b547f08f74ea46ef7894f65eabfb5e6e695de773a000b47c529ab559178069b226401604060018060a01b038094169381519084168152846020820152a16001600160a01b03191617600b55565b9060648211620007dc57600a5460009290806200079557506000805160206200497a83398151915291925060005b6200077662000764620007fc565b6200076f8462000b21565b9062000bf3565b5050604080516001600160d01b039290921682526020820192909252a1565b600019908082810111620007c857602085600a6000805160206200497a8339815191529697522001015460301c62000756565b634e487b7160e01b85526011600452602485fd5b60405163243e544560e01b81526004810183905260646024820152604490fd5b610160516040516324776b7d60e21b815290602090829060049082906001600160a01b03165afa600091816200086a575b5062000867575065ffffffffffff8043116200084857431690565b6040516306dfcc6560e41b815260306004820152436024820152604490fd5b90565b90916020823d8211620008a7575b81620008876020938362000110565b81010312620008a457506200089c906200019b565b90386200082d565b80fd5b3d915062000878565b908151602090818110600014620008cf57505090620008679062000ab2565b6001600160401b038111620000ee57600091620008f882620008f2855462000391565b62000427565b80601f83116001146200093757508293948293926200092b575b50508160011b916000199060031b1c191617905560ff90565b01519050388062000912565b60008052601f198316957f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563929185905b888210620009a5575050836001959697106200098b575b505050811b01905560ff90565b015160001960f88460031b161c191690553880806200097e565b8060018596829496860151815501950193019062000967565b908151602090818110600014620009dd57505090620008679062000ab2565b6001600160401b038111620000ee5760019162000a068262000a00855462000391565b6200047f565b80601f831160011462000a4557508192939460009262000a39575b5050600019600383901b1c191690821b17905560ff90565b01519050388062000a21565b6001600052601f198316959091907fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6926000905b88821062000a9a57505083859697106200098b57505050811b01905560ff90565b80878596829496860151815501950193019062000a79565b601f81511162000ae057602081519101516020821062000ad0571790565b6000198260200360031b1b161790565b6044604051809263305a27a960e01b82526020600483015262000b13815180928160248601526020868601910162000161565b601f01601f19168101030190fd5b6001600160d01b039081811162000b36571690565b604490604051906306dfcc6560e41b825260d060048301526024820152fd5b60001981019190821162000b6557565b634e487b7160e01b600052601160045260246000fd5b600a549068010000000000000000821015620000ee576001820180600a5582101562000bdd57600a60005280516020919091015160301b65ffffffffffff191665ffffffffffff91909116176000805160206200495a83398151915290910155565b634e487b7160e01b600052603260045260246000fd5b600a54919291801562000cc05762000c0f62000c289162000b55565b600a6000526000805160206200495a8339815191520190565b9081549165ffffffffffff9081841691831680831162000cae5786920362000c705762000c6992509065ffffffffffff82549181199060301b169116179055565b60301c9190565b505062000ca89062000c9362000c8562000134565b65ffffffffffff9092168252565b6001600160d01b038516602082015262000b7b565b62000c69565b604051632520601d60e01b8152600490fd5b5062000ce99062000cd462000c8562000134565b6001600160d01b038416602082015262000b7b565b6000919056fe60806040526004361015610023575b361561001957600080fd5b610021611c96565b005b60003560e01c806301ffc9a71461032e57806302a251a31461032957806306f3f9e61461032457806306fdde031461031f578063143489d01461031a578063150b7a0214610315578063160cbed7146103105780632656227d1461030b5780632d63f693146103065780632fe3e261146103015780633932abb1146102fc5780633e4f49e6146102f757806343859632146102f2578063452115d6146102ed5780634bf5d7e9146102e8578063544ffc9c146102e357806354fd4d50146102de57806356781388146102d95780635b8d0e0d146102d45780635f398a14146102cf57806360c4247f146102ca57806379051887146102c55780637b3c71d3146102c05780637d5e81e2146102bb5780637ecebe00146102b657806384b0196e146102b15780638ff262e3146102ac57806391ddadf4146102a757806397c3d334146102a25780639a802a6d1461029d578063a7713a7014610298578063a890c91014610293578063a8f8a66814610270578063a9a952941461028e578063ab58fb8e14610289578063b58131b014610284578063bc197c811461027f578063c01f9e371461027a578063c28bc2fa14610275578063c59057e414610270578063d33219b41461026b578063dd4e2ba514610266578063deaaa7cc14610261578063e540d01d1461025c578063eb9019d414610257578063ece40cc114610252578063f23a6e611461024d578063f8ce560a146102485763fc0c546a0361000e57611c51565b611bac565b611b41565b611aec565b611a4c565b6119a3565b611968565b61190a565b6118e1565b61172a565b611875565b611857565b6117b7565b611799565b611762565b611746565b6116b6565b61168a565b6115b9565b61159d565b611572565b61145a565b611390565b61131f565b611286565b611231565b6111be565b611190565b611121565b611099565b61101c565b610fca565b610f7d565b610f4d565b610eaf565b610e56565b610e29565b610dd1565b610d96565b610d5f565b610bf7565b6109ad565b610771565b6105f4565b61050f565b6103eb565b6103c4565b346103b45760203660031901126103b45760043563ffffffff60e01b81168091036103b4576020906366defe7760e11b81149081156103a3575b8115610392575b8115610381575b506040519015158152f35b6301ffc9a760e01b14905038610376565b630271189760e51b8114915061036f565b6332a2ad4360e11b81149150610368565b600080fd5b60009103126103b457565b346103b45760003660031901126103b457602063ffffffff60085460301c16604051908152f35b346103b45760203660031901126103b457600435610407612139565b60648111610494576001600160d01b039081610421612cec565b1661042a6123a0565b92808311610474577f0553476bf02ef2726e8ce5ced78d63e26e602e4a2257b1f559418e24b46339979361046091841690612e12565b5050604080519182526020820192909252a1005b6040516306dfcc6560e41b815260d0600482015260248101849052604490fd5b6044906040519063243e544560e01b8252600482015260646024820152fd5b60005b8381106104c65750506000910152565b81810151838201526020016104b6565b906020916104ef815180928185528580860191016104b3565b601f01601f1916010190565b90602061050c9281815201906104d6565b90565b346103b4576000806003193601126105f157604051908060035461053281611caa565b808552916001918083169081156105c7575060011461056c575b6105688561055c818703826106d4565b604051918291826104fb565b0390f35b9250600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8284106105af57505050810160200161055c8261056861054c565b80546020858701810191909152909301928101610594565b8695506105689693506020925061055c94915060ff191682840152151560051b820101929361054c565b80fd5b346103b45760203660031901126103b4576004356000526004602052602060018060a01b0360406000205416604051908152f35b6001600160a01b038116036103b457565b634e487b7160e01b600052604160045260246000fd5b6001600160401b03811161066257604052565b610639565b604081019081106001600160401b0382111761066257604052565b602081019081106001600160401b0382111761066257604052565b60c081019081106001600160401b0382111761066257604052565b61010081019081106001600160401b0382111761066257604052565b90601f801991011681019081106001600160401b0382111761066257604052565b6040519061070282610667565b565b6001600160401b03811161066257601f01601f191660200190565b92919261072b82610704565b9161073960405193846106d4565b8294818452818301116103b4578281602093846000960137010152565b9080601f830112156103b45781602061050c9335910161071f565b346103b45760803660031901126103b45761078d600435610628565b610798602435610628565b6064356001600160401b0381116103b4576107b7903690600401610756565b50600b546001600160a01b031630036107dc57604051630a85bd0160e11b8152602090f35b604051637485328f60e11b8152600490fd5b6001600160401b0381116106625760051b60200190565b81601f820112156103b45780359161081c836107ee565b9261082a60405194856106d4565b808452602092838086019260051b8201019283116103b4578301905b828210610854575050505090565b838091833561086281610628565b815201910190610846565b81601f820112156103b457803591610884836107ee565b9261089260405194856106d4565b808452602092838086019260051b8201019283116103b4578301905b8282106108bc575050505090565b813581529083019083016108ae565b9080601f830112156103b4578135906108e3826107ee565b926108f160405194856106d4565b828452602092838086019160051b830101928084116103b457848301915b84831061091f5750505050505090565b82356001600160401b0381116103b457869161094084848094890101610756565b81520192019161090f565b60806003198201126103b4576001600160401b03916004358381116103b4578261097791600401610805565b926024358181116103b4578361098f9160040161086d565b926044359182116103b4576109a6916004016108cb565b9060643590565b346103b4576109bb3661094b565b6109c9818385879697611d89565b926109d3846121ea565b50600b546109f1906001600160a01b03165b6001600160a01b031690565b9260409586519363793d064960e11b855260209081866004818a5afa958615610ba657600096610bd8575b506bffffffffffffffffffffffff193060601b161895818951809263b1c5f42760e01b82528180610a538c8a8a8d60048601613af5565b03915afa918215610ba657600092610bab575b5050610a7c87600052600c602052604060002090565b55600b54610a92906001600160a01b03166109e5565b90813b156103b45760008094610abe878b51998a97889687956308f2a0bb60e41b875260048701613b3b565b03925af1908115610ba657610ae292610add92610b8d575b504261229c565b612b60565b65ffffffffffff811615610b7c57917f9a2e42fd6722813d69113e7d0079d3d940171428df7373df9c7f7617cfda2892610b6b84610b4d610568966001610b33886000526004602052604060002090565b019065ffffffffffff1665ffffffffffff19825416179055565b835185815265ffffffffffff90911660208201529081906040820190565b0390a1519081529081906020820190565b8251634844252360e11b8152600490fd5b80610b9a610ba09261064f565b806103b9565b38610ad6565b612394565b610bca9250803d10610bd1575b610bc281836106d4565b81019061254b565b3880610a66565b503d610bb8565b610bf0919650823d8411610bd157610bc281836106d4565b9438610a1c565b610c003661094b565b610c0e818385879597611d89565b92610c188461223c565b50610c43610c30856000526004602052604060002090565b805460ff60f01b1916600160f01b179055565b600b546001600160a01b03939084163003610cf5575b94610c6992916105689686613b89565b600b543091166001600160a01b0316141580610cd0575b610cc1575b6040518181527f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f90602090a16040519081529081906020820190565b610ccb6000600555565b610c85565b50610cf0610cec6005546001600160801b0381169060801c1490565b1590565b610c80565b9290939160005b8451811015610d5557610d319030610d276109e5610d1a848a611e5f565b516001600160a01b031690565b14610d3657611e3a565b610cfc565b610d50610d43828a611e5f565b5160208151910120612f4c565b611e3a565b5091939092610c59565b346103b45760203660031901126103b4576004356000526004602052602065ffffffffffff60406000205460a01c16604051908152f35b346103b45760003660031901126103b45760206040517f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a8118152f35b346103b45760003660031901126103b457602065ffffffffffff60085416604051908152f35b634e487b7160e01b600052602160045260246000fd5b60081115610e1757565b610df7565b906008821015610e175752565b346103b45760203660031901126103b4576020610e47600435613090565b610e546040518092610e1c565bf35b346103b45760403660031901126103b457602060ff610ea3602435610e7a81610628565b6004356000526009845260036040600020019060018060a01b0316600052602052604060002090565b54166040519015158152f35b346103b457610ebd3661094b565b92610ecd84838584969596611d89565b610ed681613090565b6008811015610e17571580610f2e575b15610f0a57610568610efa868686866139b4565b6040519081529081906020820190565b604051638fe5d8a960e01b81526004810191909152336024820152604490fd5b0390fd5b5080600052600460205260018060a01b03604060002054163314610ee6565b346103b45760003660031901126103b457610568610f6961246c565b6040519182916020835260208301906104d6565b346103b45760203660031901126103b45760043560005260096020526040600020805461056860026001840154930154604051938493846040919493926060820195825260208201520152565b346103b45760003660031901126103b457610568604051610fea81610667565b60018152603160f81b60208201526040519182916020835260208301906104d6565b6024359060ff821682036103b457565b346103b45760403660031901126103b457602061106461103a61100c565b60405161104681610682565b600081526040519161105783610682565b6000835233600435611fea565b604051908152f35b9181601f840112156103b4578235916001600160401b0383116103b457602083818601950101116103b457565b346103b45760c03660031901126103b4576110b261100c565b604435906110bf82610628565b6001600160401b03906064358281116103b4576110e090369060040161106c565b6084358481116103b4576110f8903690600401610756565b9160a4359485116103b45761056895611118610efa963690600401610756565b94600435611e78565b346103b45760803660031901126103b45761113a61100c565b6001600160401b03906044358281116103b45761115b90369060040161106c565b90916064359384116103b4576111866110649361117e6020963690600401610756565b93369161071f565b9033600435611fea565b346103b45760203660031901126103b45760206110646004356125d7565b65ffffffffffff8116036103b457565b346103b45760203660031901126103b4576004356111db816111ae565b6111e3612139565b6008547fc565b045403dc03c2eea82b81a0465edad9e2e7fc4d97e11421c209da93d7a93604080519365ffffffffffff9081851686521693846020820152a165ffffffffffff191617600855005b346103b45760603660031901126103b45761124a61100c565b6044356001600160401b0381116103b45760209161127961127261106493369060040161106c565b369161071f565b6040519161105783610682565b346103b45760803660031901126103b4576001600160401b036004358181116103b4576112b7903690600401610805565b906024358181116103b4576112d090369060040161086d565b916044358281116103b4576112e99036906004016108cb565b6064359283116103b457366023840112156103b45761056893611319610efa94369060248160040135910161071f565b92613362565b346103b45760203660031901126103b45760043561133c81610628565b60018060a01b031660005260026020526020604060002054604051908152f35b90815180825260208080930193019160005b82811061137c575050505090565b83518552938101939281019260010161136e565b346103b45760003660031901126103b45761142b6113cd7f0000000000000000000000000000000000000000000000000000000000000000612824565b6105686113f97f000000000000000000000000000000000000000000000000000000000000000061291b565b6114396040519161140983610682565b60008352604051958695600f60f81b875260e0602088015260e08701906104d6565b9085820360408701526104d6565b90466060850152306080850152600060a085015283820360c085015261135c565b346103b45760803660031901126103b45760043561147661100c565b906044359161148483610628565b6064356001600160401b0381116103b457610cec6114a9611536923690600401610756565b6001600160a01b03861660009081526002602052604090208054600181019091556115309060405160208101917ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d7835288604083015260ff8816606083015260018060a01b038a16608083015260a082015260a081526115288161069d565b5190206126ea565b866129dd565b6115515790610efa916105689361154b611ce4565b92611f6e565b6040516394ab6c0760e01b81526001600160a01b0384166004820152602490fd5b346103b45760003660031901126103b457602061158d6123a0565b65ffffffffffff60405191168152f35b346103b45760003660031901126103b457602060405160648152f35b346103b45760603660031901126103b4576004356115d681610628565b6044356001600160401b0381116103b4576044916115fa6020923690600401610756565b50604051630748d63560e31b81526001600160a01b039182166004820152602480359082015292839182907f0000000000000000000000000000000000000000000000000000000000000000165afa8015610ba6576105689160009161166c575b506040519081529081906020820190565b611684915060203d8111610bd157610bc281836106d4565b3861165b565b346103b45760003660031901126103b45760206001600160d01b036116ad612cec565b16604051908152f35b346103b45760203660031901126103b4576004356116d381610628565b6116db612139565b600b547f08f74ea46ef7894f65eabfb5e6e695de773a000b47c529ab559178069b226401604060018060a01b038094169381519084168152846020820152a16001600160a01b03191617600b55005b346103b457602061106461173d3661094b565b92919091611d89565b346103b45760203660031901126103b457602060405160018152f35b346103b45760203660031901126103b4576004356000526004602052602065ffffffffffff60016040600020015416604051908152f35b346103b45760003660031901126103b4576020600754604051908152f35b346103b45760a03660031901126103b4576117d3600435610628565b6117de602435610628565b6001600160401b036044358181116103b4576117fe90369060040161086d565b506064358181116103b45761181790369060040161086d565b506084359081116103b457611830903690600401610756565b5061056861183c6121ad565b6040516001600160e01b031990911681529081906020820190565b346103b45760203660031901126103b4576020611064600435611e03565b60603660031901126103b45760043561188d81610628565b604435906001600160401b0382116103b457600080916118b461002194369060040161106c565b906118bd612139565b81604051928392833781018481520391602435905af16118db612109565b906126c1565b346103b45760003660031901126103b457600b546040516001600160a01b039091168152602090f35b346103b45760003660031901126103b45761056860405161192a81610667565b602081527f737570706f72743d627261766f2671756f72756d3d666f722c6162737461696e60208201526040519182916020835260208301906104d6565b346103b45760003660031901126103b45760206040517ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d78152f35b346103b45760203660031901126103b45760043563ffffffff808216918281036103b4576119cf612139565b8215611a33577f7e3f7f0708a84de9203036abaa450dccc85ad5ff52f78c170f3edb55cf5e8828604069ffffffff00000000000093600854958251918760301c1682526020820152a160301b169069ffffffff000000000000191617600855600080f35b60405163f1cfbf0560e01b815260006004820152602490fd5b346103b45760403660031901126103b45760446020600435611a6d81610628565b6000604051611a7b81610682565b52604051630748d63560e31b81526001600160a01b039182166004820152602480359082015292839182907f0000000000000000000000000000000000000000000000000000000000000000165afa8015610ba6576105689160009161166c57506040519081529081906020820190565b346103b45760203660031901126103b457600435611b08612139565b60075460408051918252602082018390527fccb45da8d5717e6c4544694297c4ba5cf151d455c9bb0ed4fc7a38411bc0546191a1600755005b346103b45760a03660031901126103b457611b5d600435610628565b611b68602435610628565b6084356001600160401b0381116103b457611b87903690600401610756565b50600b546001600160a01b031630036107dc5760405163f23a6e6160e01b8152602090f35b346103b45760203660031901126103b457604051632394e7a360e21b815260048035908201819052906020816024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa8015610ba65761056892610efa92600092611c2d575b50611c27906125d7565b90612fff565b611c27919250611c4a9060203d8111610bd157610bc281836106d4565b9190611c1d565b346103b45760003660031901126103b4576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b600b546001600160a01b031630036107dc57565b90600182811c92168015611cda575b6020831014611cc457565b634e487b7160e01b600052602260045260246000fd5b91607f1691611cb9565b60405190611cf182610682565b60008252565b90815180825260208080930193019160005b828110611d17575050505090565b83516001600160a01b031685529381019392810192600101611d09565b90815180825260208092019182818360051b85019501936000915b848310611d5f5750505050505090565b9091929394958480611d7983856001950387528a516104d6565b9801930193019194939290611d4f565b9290611dd592611de792604051948592611dc5611db2602086019960808b5260a0870190611cf7565b601f19968787830301604088015261135c565b9085858303016060860152611d34565b906080830152039081018352826106d4565b51902090565b634e487b7160e01b600052601160045260246000fd5b600052600460205260406000205465ffffffffffff908163ffffffff8260d01c169160a01c1601818111611e35571690565b611ded565b6000198114611e355760010190565b634e487b7160e01b600052603260045260246000fd5b8051821015611e735760209160051b010190565b611e49565b939092919695610cec611f3291611f2c8a611eae8160018060a01b03166000526002602052604060002080549060018201905590565b611eb936888a61071f565b602081519101208b5160208d0120906040519260208401947f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a81186528d604086015260ff8d16606086015260018060a01b0316608085015260a084015260c083015260e082015260e08152611528816106b8565b8a6129dd565b611f4d5761050c959691611f4791369161071f565b92611fea565b6040516394ab6c0760e01b81526001600160a01b0388166004820152602490fd5b9161050c939160405193611f8185610682565b60008552611fea565b93909260ff611fb69361050c97958752166020860152604085015260a0606085015260a08401906104d6565b9160808184039101526104d6565b909260ff60809361050c96958452166020830152604082015281606082015201906104d6565b929190611ff684613090565b6008811015610e17576002600160ff83161b16156120db575083600052600460205261205261204a612044612039604060002065ffffffffffff905460a01c1690565b65ffffffffffff1690565b8361255a565b8383876122a9565b9480511560001461209f57506120997fb8e138887d0aa13bab447e82de9d5c1777041ecd21ca36ba824ff1e6c07ddda4938660405194859460018060a01b03169785611fc4565b0390a290565b612099907fe2babfbac5889a709b63bb7f598b324e08bc5a4fb9ec647fb3cbc9ec07eb8712948760405195869560018060a01b03169886611f8a565b6040516331b75e4d60e01b815260048101869052606491612100906024830190610e1c565b60026044820152fd5b3d15612134573d9061211a82610704565b9161212860405193846106d4565b82523d6000602084013e565b606090565b600b546001600160a01b031633810361219557300361215457565b61215d36610704565b61216a60405191826106d4565b368152602081019036600083376000602036830101525190205b8061218d612fa7565b036121845750565b6040516347096e4760e01b8152336004820152602490fd5b600b546001600160a01b031630036107dc5763bc197c8160e01b90565b6040906121e66000939594606083019683526020830190610e1c565b0152565b6121f381613090565b906008821015610e17576010600160ff84161b1615612210575090565b612233606492604051926331b75e4d60e01b845260048401526024830190610e1c565b60106044820152fd5b61224581613090565b906008821015610e17576030600160ff84161b1615612262575090565b612285606492604051926331b75e4d60e01b845260048401526024830190610e1c565b60306044820152fd5b9060018201809211611e3557565b91908201809211611e3557565b6122c0909291926000526009602052604060002090565b91600383016122eb6122e483839060018060a01b0316600052602052604060002090565b5460ff1690565b6123735761231160ff939261231e929060018060a01b0316600052602052604060002090565b805460ff19166001179055565b1680612335575061233082825461229c565b905590565b6001810361234c575060010161233082825461229c565b6002036123615760020161233082825461229c565b6040516303599be160e11b8152600490fd5b6040516371c6af4960e01b81526001600160a01b0383166004820152602490fd5b6040513d6000823e3d90fd5b6040516324776b7d60e21b81526020816004817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa600091816123f7575b5061050c575061050c43612b60565b90916020823d821161242b575b81612411602093836106d4565b810103126105f1575051612424816111ae565b90386123e8565b3d9150612404565b6040519061244082610667565b601d82527f6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c740000006020830152565b604051634bf5d7e960e01b8152600080826004817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa909182826124c4575b505061050c575061050c612433565b909192503d8082843e6124d781846106d4565b820191602081840312612543578051906001600160401b038211612547570182601f820112156125435780519161250d83610704565b9361251b60405195866106d4565b838552602084840101116105f157509061253b91602080850191016104b3565b9038806124b5565b5080fd5b8280fd5b908160209103126103b4575190565b604051630748d63560e31b81526001600160a01b0391821660048201526024810192909252602090829060449082907f0000000000000000000000000000000000000000000000000000000000000000165afa908115610ba6576000916125bf575090565b61050c915060203d8111610bd157610bc281836106d4565b6125df612d36565b926000925065ffffffffffff9182168110612604575050505b6001600160d01b031690565b61261091929350612b60565b600a54908390826005811161266b575b5061262b9350612ee3565b8061263657506125f8565b612666915061264761265f91612b92565b600a600052600080516020613c158339815191520190565b5460301c90565b6125f8565b909261267682612bc1565b8203918211611e355761262b94600a87528083600080516020613c15833981519152015416908516106000146126af5750915b38612620565b9291506126bb9061228e565b906126a9565b90919061070257508051156126d857805190602001fd5b60405163d6bda27560e01b8152600490fd5b6042906126f5612710565b906040519161190160f01b8352600283015260228201522090565b307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614806127fb575b1561276b577f000000000000000000000000000000000000000000000000000000000000000090565b60405160208101907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82527f000000000000000000000000000000000000000000000000000000000000000060408201527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260a08152611de78161069d565b507f00000000000000000000000000000000000000000000000000000000000000004614612742565b60ff81146128625760ff811690601f8211612850576040519161284683610667565b8252602082015290565b604051632cd44ac360e21b8152600490fd5b5060405160008181549161287583611caa565b808352926001908181169081156128f9575060011461289c575b5061050c925003826106d4565b600080805291507f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5635b8483106128de575061050c93505081016020013861288f565b819350908160209254838589010152019101909184926128c5565b90506020925061050c94915060ff191682840152151560051b8201013861288f565b60ff811461293d5760ff811690601f8211612850576040519161284683610667565b5060405160008160019182549261295384611caa565b808452938181169081156128f95750600114612976575061050c925003826106d4565b600081815291507fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf65b8483106129b8575061050c93505081016020013861288f565b8193509081602092548385890101520191019091849261299f565b60041115610e1757565b9091813b612a18576129ef9192612aa0565b506129f9816129d3565b159182612a0557505090565b6001600160a01b03918216911614919050565b6000918291604051612a5c81612a4e6020820194630b135d3f60e11b998a875260248401526040604484015260648301906104d6565b03601f1981018352826106d4565b51915afa90612a69612109565b82612a92575b82612a7957505090565b612a8e9192506020808251830101910161254b565b1490565b915060208251101591612a6f565b8151919060418303612ad157612aca92506020820151906060604084015193015160001a90612adc565b9192909190565b505060009160029190565b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411612b5457926020929160ff608095604051948552168484015260408301526060820152600092839182805260015afa15610ba65780516001600160a01b03811615612b4b57918190565b50809160019190565b50505060009160039190565b65ffffffffffff90818111612b73571690565b604490604051906306dfcc6560e41b8252603060048301526024820152fd5b600019810191908211611e3557565b8115612bab570490565b634e487b7160e01b600052601260045260246000fd5b600181111561050c57600181600160801b811015612cda575b612c82612c78612c6e612c64612c5a612c50612c8e97600488600160401b612c899a1015612ccd575b640100000000811015612cc0575b62010000811015612cb3575b610100811015612ca7575b6010811015612c9b575b1015612c93575b60030260011c612c49818b612ba1565b0160011c90565b612c49818a612ba1565b612c498189612ba1565b612c498188612ba1565b612c498187612ba1565b612c498186612ba1565b8093612ba1565b821190565b900390565b60011b612c39565b811c9160021b91612c32565b60081c91811b91612c28565b60101c9160081b91612c1d565b60201c9160101b91612c11565b60401c9160201b91612c03565b50600160401b9050608082901c612bda565b600a5460009080612cfe575050600090565b80600019810111611e3557600a7fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a79252015460301c90565b600a5480612d4a5750600090600090600090565b80600019810111611e3557600a6000527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a7015460019165ffffffffffff82169160301c90565b600a5490600160401b821015610662576001820180600a55821015611e735761070291600a600052600080516020613c158339815191520190612df065ffffffffffff825116839065ffffffffffff1665ffffffffffff19825416179055565b60200151815465ffffffffffff1660309190911b65ffffffffffff1916179055565b600a549192918015612eb957612647612e2a91612b92565b9081549165ffffffffffff90818416918316808311612ea757869203612e6f57612e6892509065ffffffffffff82549181199060301b169116179055565b60301c9190565b5050612ea290612e8e612e806106f5565b65ffffffffffff9092168252565b6001600160d01b0385166020820152612d90565b612e68565b604051632520601d60e01b8152600490fd5b50612edd90612ec9612e806106f5565b6001600160d01b0384166020820152612d90565b60009190565b905b828110612ef157505090565b90918082169080831860011c8201809211611e3557600a60005265ffffffffffff8083600080516020613c1583398151915201541690851610600014612f3a5750915b90612ee5565b929150612f469061228e565b90612f34565b6005548060801c9160018301926001600160801b0380931683851614612f94576000526006602052604060002055600554916001600160801b03199060801b16911617600555565b634e487b7160005260416020526024601cfd5b600554906001600160801b038083169260801c8314612fec57826000526006602052600160406000209360008554955501166001600160801b03196005541617600555565b634e487b7160005260316020526024601cfd5b6000198282098282029182808310920391808303921461306e57816064111561305b577f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c29936064910990828211900360fe1b910360021c170290565b634e487b7160005260116020526024601cfd5b5050606491500490565b908160209103126103b4575180151581036103b45790565b613099816131a2565b906130a382610e0d565b6005820361319e576130c09150600052600c602052604060002090565b54600b546130d6906001600160a01b03166109e5565b604051632c258a9f60e11b81526004810183905260209291908381602481855afa908115610ba657600091613181575b501561311457505050600590565b604051632ab0f52960e01b815260048101929092528290829060249082905afa918215610ba657600092613154575b50501561314f57600790565b600290565b6131739250803d1061317a575b61316b81836106d4565b810190613078565b3880613143565b503d613161565b6131989150843d861161317a5761316b81836106d4565b38613106565b5090565b6131b6816000526004602052604060002090565b5460ff8160f01c166132bf5760f81c6132b9576131f26120396131e3836000526004602052604060002090565b5460a01c65ffffffffffff1690565b80156132a0576132036120396123a0565b809110156132995761321482611e03565b1061321f5750600190565b61322b610cec826132c6565b8015613274575b1561323d5750600390565b6120396001613259613266936000526004602052604060002090565b015465ffffffffffff1690565b61326f57600490565b600590565b50613294610cec8260005260096020526040600020600181015490541090565b613232565b5050600090565b604051636ad0607560e01b815260048101839052602490fd5b50600290565b5050600790565b60005260096020526040600020600460205265ffffffffffff60406000205460a01c16604051632394e7a360e21b815281600482015260208160248160018060a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa8015610ba65761335d9261334c92600092611c2d5750611c27906125d7565b91600260018201549101549061229c565b101590565b9193929093613371823361374e565b1561346757600754948561338d575b61050c9495503393613597565b65ffffffffffff600019816133a06123a0565b160190808211611e355760006040516133b881610682565b52604051630748d63560e31b8152336004820152911660248201526020816044817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa908115610ba657600091613449575b508681106134225750613380565b604051636121770b60e11b8152336004820152602481019190915260448101879052606490fd5b613461915060203d8111610bd157610bc281836106d4565b38613414565b60405163d9b3955760e01b8152336004820152602490fd5b90613489826107ee565b61349660405191826106d4565b82815280926134a7601f19916107ee565b019060005b8281106134b857505050565b8060606020809385010152016134ac565b95926134fc9061350a939b9a9899969592885260209b60018060a01b03168c8901526101208060408a0152880190611cf7565b90868203606088015261135c565b9784890360808601528251808a52818a019180808360051b8d01019501926000905b83821061356957505050505061050c969750906135509184820360a0860152611d34565b9360c083015260e08201526101008184039101526104d6565b909192939583806135888f93600194601f199082030186528a516104d6565b9801920192019093929161352c565b9194939092946135af86516020880120828686611d89565b958351855190818114801590613743575b801561373b575b61371257505065ffffffffffff94856135ed6131e38a6000526004602052604060002090565b166136eb577f7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e0956136e69363ffffffff6136366136286123a0565b60085494808616911661229c565b9260301c166136c46136528c6000526004602052604060002090565b80546001600160a01b0319166001600160a01b038a1617815561369b61367786612b60565b825465ffffffffffff60a01b191660a09190911b65ffffffffffff60a01b16178255565b6136a483613984565b815463ffffffff60d01b191660d09190911b63ffffffff60d01b16179055565b6136d86136d1895161347f565b918461229c565b936040519889988d8a6134c9565b0390a1565b876136f581613090565b6040516331b75e4d60e01b8152918291610f2a91600484016121ca565b8351604051630447b05d60e41b8152600481019290925260248201526044810191909152606490fd5b5080156135c7565b5083518114156135c0565b9080516034811061379b5760131981830101516001600160b01b03191669dc8f8d908f908c9a8dc360b01b0161379b5761378d916029198201906137cf565b9015918215612a0557505090565b505050600190565b908160011b9180830460021490151715611e3557565b908160041b9180830460101490151715611e3557565b9190825182118015613858575b61382f576137e98161228e565b82118061383a575b6137fc9015156137a3565b60280180602811611e3557818303838111611e35570361382f5761381f92613861565b90916001600160a01b0390911690565b505050600090600090565b50828101602001516001600160f01b03191661060f60f31b146137f1565b508181116137dc565b92909261386d8461228e565b8311806138f4575b6138809015156137a3565b936000948101809111611e35579192905b8183106138a15750505060019190565b9092919360ff6138c26138bd6020888601015160ff60f81b1690565b613912565b1690600f82116138e857906138d96138e0926137b9565b0194611e3a565b919290613891565b50600094508493505050565b50808401602001516001600160f01b03191661060f60f31b14613875565b60f81c602f81118061397a575b1561392e57602f190160ff1690565b6060811180613970575b15613947576056190160ff1690565b6040811180613966575b15613960576036190160ff1690565b5060ff90565b5060478110613951565b5060678110613938565b50603a811061391f565b63ffffffff90818111613995571690565b604490604051906306dfcc6560e41b8252602060048301526024820152fd5b906139c0939291611d89565b6139c981613090565b6008811015610e1757603b600160ff83161b1615613ac85750613a0e6139f9826000526004602052604060002090565b80546001600160f81b0316600160f81b179055565b6040518181527f789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c90602090a1613a4e81600052600c602052604060002090565b5480613a58575090565b600b54613a6d906001600160a01b03166109e5565b803b156103b45760405163c4d252f560e01b815260048101929092526000908290602490829084905af18015610ba657613ab5575b506000818152600c602052604081205590565b80610b9a613ac29261064f565b38613aa2565b90613aec606492604051926331b75e4d60e01b845260048401526024830190610e1c565b603b6044820152fd5b949392613b21608093613b13613b2f9460a08a5260a08a0190611cf7565b9088820360208a015261135c565b908682036040880152611d34565b93600060608201520152565b9192613b6a60a094613b5c613b78949998979960c0875260c0870190611cf7565b90858203602087015261135c565b908382036040850152611d34565b946000606083015260808201520152565b9290939160018060a01b03600b541690813b156103b457600093613bd86040519788958694859463e38335e560e01b86526bffffffffffffffffffffffff193060601b16189260048601613af5565b039134905af1908115610ba657600092613c0292613c05575b50600052600c602052604060002090565b55565b613c0e9061064f565b38613bf156fec65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8a264697066735822122096e6155403c0e85a4c4a6346f4c92d6c35195199ea8303e8c02eed5077b88d1b64736f6c63430008140033c65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80553476bf02ef2726e8ce5ced78d63e26e602e4a2257b1f559418e24b4633997", + "deployedBytecode": "0x60806040526004361015610023575b361561001957600080fd5b610021611c96565b005b60003560e01c806301ffc9a71461032e57806302a251a31461032957806306f3f9e61461032457806306fdde031461031f578063143489d01461031a578063150b7a0214610315578063160cbed7146103105780632656227d1461030b5780632d63f693146103065780632fe3e261146103015780633932abb1146102fc5780633e4f49e6146102f757806343859632146102f2578063452115d6146102ed5780634bf5d7e9146102e8578063544ffc9c146102e357806354fd4d50146102de57806356781388146102d95780635b8d0e0d146102d45780635f398a14146102cf57806360c4247f146102ca57806379051887146102c55780637b3c71d3146102c05780637d5e81e2146102bb5780637ecebe00146102b657806384b0196e146102b15780638ff262e3146102ac57806391ddadf4146102a757806397c3d334146102a25780639a802a6d1461029d578063a7713a7014610298578063a890c91014610293578063a8f8a66814610270578063a9a952941461028e578063ab58fb8e14610289578063b58131b014610284578063bc197c811461027f578063c01f9e371461027a578063c28bc2fa14610275578063c59057e414610270578063d33219b41461026b578063dd4e2ba514610266578063deaaa7cc14610261578063e540d01d1461025c578063eb9019d414610257578063ece40cc114610252578063f23a6e611461024d578063f8ce560a146102485763fc0c546a0361000e57611c51565b611bac565b611b41565b611aec565b611a4c565b6119a3565b611968565b61190a565b6118e1565b61172a565b611875565b611857565b6117b7565b611799565b611762565b611746565b6116b6565b61168a565b6115b9565b61159d565b611572565b61145a565b611390565b61131f565b611286565b611231565b6111be565b611190565b611121565b611099565b61101c565b610fca565b610f7d565b610f4d565b610eaf565b610e56565b610e29565b610dd1565b610d96565b610d5f565b610bf7565b6109ad565b610771565b6105f4565b61050f565b6103eb565b6103c4565b346103b45760203660031901126103b45760043563ffffffff60e01b81168091036103b4576020906366defe7760e11b81149081156103a3575b8115610392575b8115610381575b506040519015158152f35b6301ffc9a760e01b14905038610376565b630271189760e51b8114915061036f565b6332a2ad4360e11b81149150610368565b600080fd5b60009103126103b457565b346103b45760003660031901126103b457602063ffffffff60085460301c16604051908152f35b346103b45760203660031901126103b457600435610407612139565b60648111610494576001600160d01b039081610421612cec565b1661042a6123a0565b92808311610474577f0553476bf02ef2726e8ce5ced78d63e26e602e4a2257b1f559418e24b46339979361046091841690612e12565b5050604080519182526020820192909252a1005b6040516306dfcc6560e41b815260d0600482015260248101849052604490fd5b6044906040519063243e544560e01b8252600482015260646024820152fd5b60005b8381106104c65750506000910152565b81810151838201526020016104b6565b906020916104ef815180928185528580860191016104b3565b601f01601f1916010190565b90602061050c9281815201906104d6565b90565b346103b4576000806003193601126105f157604051908060035461053281611caa565b808552916001918083169081156105c7575060011461056c575b6105688561055c818703826106d4565b604051918291826104fb565b0390f35b9250600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8284106105af57505050810160200161055c8261056861054c565b80546020858701810191909152909301928101610594565b8695506105689693506020925061055c94915060ff191682840152151560051b820101929361054c565b80fd5b346103b45760203660031901126103b4576004356000526004602052602060018060a01b0360406000205416604051908152f35b6001600160a01b038116036103b457565b634e487b7160e01b600052604160045260246000fd5b6001600160401b03811161066257604052565b610639565b604081019081106001600160401b0382111761066257604052565b602081019081106001600160401b0382111761066257604052565b60c081019081106001600160401b0382111761066257604052565b61010081019081106001600160401b0382111761066257604052565b90601f801991011681019081106001600160401b0382111761066257604052565b6040519061070282610667565b565b6001600160401b03811161066257601f01601f191660200190565b92919261072b82610704565b9161073960405193846106d4565b8294818452818301116103b4578281602093846000960137010152565b9080601f830112156103b45781602061050c9335910161071f565b346103b45760803660031901126103b45761078d600435610628565b610798602435610628565b6064356001600160401b0381116103b4576107b7903690600401610756565b50600b546001600160a01b031630036107dc57604051630a85bd0160e11b8152602090f35b604051637485328f60e11b8152600490fd5b6001600160401b0381116106625760051b60200190565b81601f820112156103b45780359161081c836107ee565b9261082a60405194856106d4565b808452602092838086019260051b8201019283116103b4578301905b828210610854575050505090565b838091833561086281610628565b815201910190610846565b81601f820112156103b457803591610884836107ee565b9261089260405194856106d4565b808452602092838086019260051b8201019283116103b4578301905b8282106108bc575050505090565b813581529083019083016108ae565b9080601f830112156103b4578135906108e3826107ee565b926108f160405194856106d4565b828452602092838086019160051b830101928084116103b457848301915b84831061091f5750505050505090565b82356001600160401b0381116103b457869161094084848094890101610756565b81520192019161090f565b60806003198201126103b4576001600160401b03916004358381116103b4578261097791600401610805565b926024358181116103b4578361098f9160040161086d565b926044359182116103b4576109a6916004016108cb565b9060643590565b346103b4576109bb3661094b565b6109c9818385879697611d89565b926109d3846121ea565b50600b546109f1906001600160a01b03165b6001600160a01b031690565b9260409586519363793d064960e11b855260209081866004818a5afa958615610ba657600096610bd8575b506bffffffffffffffffffffffff193060601b161895818951809263b1c5f42760e01b82528180610a538c8a8a8d60048601613af5565b03915afa918215610ba657600092610bab575b5050610a7c87600052600c602052604060002090565b55600b54610a92906001600160a01b03166109e5565b90813b156103b45760008094610abe878b51998a97889687956308f2a0bb60e41b875260048701613b3b565b03925af1908115610ba657610ae292610add92610b8d575b504261229c565b612b60565b65ffffffffffff811615610b7c57917f9a2e42fd6722813d69113e7d0079d3d940171428df7373df9c7f7617cfda2892610b6b84610b4d610568966001610b33886000526004602052604060002090565b019065ffffffffffff1665ffffffffffff19825416179055565b835185815265ffffffffffff90911660208201529081906040820190565b0390a1519081529081906020820190565b8251634844252360e11b8152600490fd5b80610b9a610ba09261064f565b806103b9565b38610ad6565b612394565b610bca9250803d10610bd1575b610bc281836106d4565b81019061254b565b3880610a66565b503d610bb8565b610bf0919650823d8411610bd157610bc281836106d4565b9438610a1c565b610c003661094b565b610c0e818385879597611d89565b92610c188461223c565b50610c43610c30856000526004602052604060002090565b805460ff60f01b1916600160f01b179055565b600b546001600160a01b03939084163003610cf5575b94610c6992916105689686613b89565b600b543091166001600160a01b0316141580610cd0575b610cc1575b6040518181527f712ae1383f79ac853f8d882153778e0260ef8f03b504e2866e0593e04d2b291f90602090a16040519081529081906020820190565b610ccb6000600555565b610c85565b50610cf0610cec6005546001600160801b0381169060801c1490565b1590565b610c80565b9290939160005b8451811015610d5557610d319030610d276109e5610d1a848a611e5f565b516001600160a01b031690565b14610d3657611e3a565b610cfc565b610d50610d43828a611e5f565b5160208151910120612f4c565b611e3a565b5091939092610c59565b346103b45760203660031901126103b4576004356000526004602052602065ffffffffffff60406000205460a01c16604051908152f35b346103b45760003660031901126103b45760206040517f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a8118152f35b346103b45760003660031901126103b457602065ffffffffffff60085416604051908152f35b634e487b7160e01b600052602160045260246000fd5b60081115610e1757565b610df7565b906008821015610e175752565b346103b45760203660031901126103b4576020610e47600435613090565b610e546040518092610e1c565bf35b346103b45760403660031901126103b457602060ff610ea3602435610e7a81610628565b6004356000526009845260036040600020019060018060a01b0316600052602052604060002090565b54166040519015158152f35b346103b457610ebd3661094b565b92610ecd84838584969596611d89565b610ed681613090565b6008811015610e17571580610f2e575b15610f0a57610568610efa868686866139b4565b6040519081529081906020820190565b604051638fe5d8a960e01b81526004810191909152336024820152604490fd5b0390fd5b5080600052600460205260018060a01b03604060002054163314610ee6565b346103b45760003660031901126103b457610568610f6961246c565b6040519182916020835260208301906104d6565b346103b45760203660031901126103b45760043560005260096020526040600020805461056860026001840154930154604051938493846040919493926060820195825260208201520152565b346103b45760003660031901126103b457610568604051610fea81610667565b60018152603160f81b60208201526040519182916020835260208301906104d6565b6024359060ff821682036103b457565b346103b45760403660031901126103b457602061106461103a61100c565b60405161104681610682565b600081526040519161105783610682565b6000835233600435611fea565b604051908152f35b9181601f840112156103b4578235916001600160401b0383116103b457602083818601950101116103b457565b346103b45760c03660031901126103b4576110b261100c565b604435906110bf82610628565b6001600160401b03906064358281116103b4576110e090369060040161106c565b6084358481116103b4576110f8903690600401610756565b9160a4359485116103b45761056895611118610efa963690600401610756565b94600435611e78565b346103b45760803660031901126103b45761113a61100c565b6001600160401b03906044358281116103b45761115b90369060040161106c565b90916064359384116103b4576111866110649361117e6020963690600401610756565b93369161071f565b9033600435611fea565b346103b45760203660031901126103b45760206110646004356125d7565b65ffffffffffff8116036103b457565b346103b45760203660031901126103b4576004356111db816111ae565b6111e3612139565b6008547fc565b045403dc03c2eea82b81a0465edad9e2e7fc4d97e11421c209da93d7a93604080519365ffffffffffff9081851686521693846020820152a165ffffffffffff191617600855005b346103b45760603660031901126103b45761124a61100c565b6044356001600160401b0381116103b45760209161127961127261106493369060040161106c565b369161071f565b6040519161105783610682565b346103b45760803660031901126103b4576001600160401b036004358181116103b4576112b7903690600401610805565b906024358181116103b4576112d090369060040161086d565b916044358281116103b4576112e99036906004016108cb565b6064359283116103b457366023840112156103b45761056893611319610efa94369060248160040135910161071f565b92613362565b346103b45760203660031901126103b45760043561133c81610628565b60018060a01b031660005260026020526020604060002054604051908152f35b90815180825260208080930193019160005b82811061137c575050505090565b83518552938101939281019260010161136e565b346103b45760003660031901126103b45761142b6113cd7f0000000000000000000000000000000000000000000000000000000000000000612824565b6105686113f97f000000000000000000000000000000000000000000000000000000000000000061291b565b6114396040519161140983610682565b60008352604051958695600f60f81b875260e0602088015260e08701906104d6565b9085820360408701526104d6565b90466060850152306080850152600060a085015283820360c085015261135c565b346103b45760803660031901126103b45760043561147661100c565b906044359161148483610628565b6064356001600160401b0381116103b457610cec6114a9611536923690600401610756565b6001600160a01b03861660009081526002602052604090208054600181019091556115309060405160208101917ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d7835288604083015260ff8816606083015260018060a01b038a16608083015260a082015260a081526115288161069d565b5190206126ea565b866129dd565b6115515790610efa916105689361154b611ce4565b92611f6e565b6040516394ab6c0760e01b81526001600160a01b0384166004820152602490fd5b346103b45760003660031901126103b457602061158d6123a0565b65ffffffffffff60405191168152f35b346103b45760003660031901126103b457602060405160648152f35b346103b45760603660031901126103b4576004356115d681610628565b6044356001600160401b0381116103b4576044916115fa6020923690600401610756565b50604051630748d63560e31b81526001600160a01b039182166004820152602480359082015292839182907f0000000000000000000000000000000000000000000000000000000000000000165afa8015610ba6576105689160009161166c575b506040519081529081906020820190565b611684915060203d8111610bd157610bc281836106d4565b3861165b565b346103b45760003660031901126103b45760206001600160d01b036116ad612cec565b16604051908152f35b346103b45760203660031901126103b4576004356116d381610628565b6116db612139565b600b547f08f74ea46ef7894f65eabfb5e6e695de773a000b47c529ab559178069b226401604060018060a01b038094169381519084168152846020820152a16001600160a01b03191617600b55005b346103b457602061106461173d3661094b565b92919091611d89565b346103b45760203660031901126103b457602060405160018152f35b346103b45760203660031901126103b4576004356000526004602052602065ffffffffffff60016040600020015416604051908152f35b346103b45760003660031901126103b4576020600754604051908152f35b346103b45760a03660031901126103b4576117d3600435610628565b6117de602435610628565b6001600160401b036044358181116103b4576117fe90369060040161086d565b506064358181116103b45761181790369060040161086d565b506084359081116103b457611830903690600401610756565b5061056861183c6121ad565b6040516001600160e01b031990911681529081906020820190565b346103b45760203660031901126103b4576020611064600435611e03565b60603660031901126103b45760043561188d81610628565b604435906001600160401b0382116103b457600080916118b461002194369060040161106c565b906118bd612139565b81604051928392833781018481520391602435905af16118db612109565b906126c1565b346103b45760003660031901126103b457600b546040516001600160a01b039091168152602090f35b346103b45760003660031901126103b45761056860405161192a81610667565b602081527f737570706f72743d627261766f2671756f72756d3d666f722c6162737461696e60208201526040519182916020835260208301906104d6565b346103b45760003660031901126103b45760206040517ff2aad550cf55f045cb27e9c559f9889fdfb6e6cdaa032301d6ea397784ae51d78152f35b346103b45760203660031901126103b45760043563ffffffff808216918281036103b4576119cf612139565b8215611a33577f7e3f7f0708a84de9203036abaa450dccc85ad5ff52f78c170f3edb55cf5e8828604069ffffffff00000000000093600854958251918760301c1682526020820152a160301b169069ffffffff000000000000191617600855600080f35b60405163f1cfbf0560e01b815260006004820152602490fd5b346103b45760403660031901126103b45760446020600435611a6d81610628565b6000604051611a7b81610682565b52604051630748d63560e31b81526001600160a01b039182166004820152602480359082015292839182907f0000000000000000000000000000000000000000000000000000000000000000165afa8015610ba6576105689160009161166c57506040519081529081906020820190565b346103b45760203660031901126103b457600435611b08612139565b60075460408051918252602082018390527fccb45da8d5717e6c4544694297c4ba5cf151d455c9bb0ed4fc7a38411bc0546191a1600755005b346103b45760a03660031901126103b457611b5d600435610628565b611b68602435610628565b6084356001600160401b0381116103b457611b87903690600401610756565b50600b546001600160a01b031630036107dc5760405163f23a6e6160e01b8152602090f35b346103b45760203660031901126103b457604051632394e7a360e21b815260048035908201819052906020816024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa8015610ba65761056892610efa92600092611c2d575b50611c27906125d7565b90612fff565b611c27919250611c4a9060203d8111610bd157610bc281836106d4565b9190611c1d565b346103b45760003660031901126103b4576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b600b546001600160a01b031630036107dc57565b90600182811c92168015611cda575b6020831014611cc457565b634e487b7160e01b600052602260045260246000fd5b91607f1691611cb9565b60405190611cf182610682565b60008252565b90815180825260208080930193019160005b828110611d17575050505090565b83516001600160a01b031685529381019392810192600101611d09565b90815180825260208092019182818360051b85019501936000915b848310611d5f5750505050505090565b9091929394958480611d7983856001950387528a516104d6565b9801930193019194939290611d4f565b9290611dd592611de792604051948592611dc5611db2602086019960808b5260a0870190611cf7565b601f19968787830301604088015261135c565b9085858303016060860152611d34565b906080830152039081018352826106d4565b51902090565b634e487b7160e01b600052601160045260246000fd5b600052600460205260406000205465ffffffffffff908163ffffffff8260d01c169160a01c1601818111611e35571690565b611ded565b6000198114611e355760010190565b634e487b7160e01b600052603260045260246000fd5b8051821015611e735760209160051b010190565b611e49565b939092919695610cec611f3291611f2c8a611eae8160018060a01b03166000526002602052604060002080549060018201905590565b611eb936888a61071f565b602081519101208b5160208d0120906040519260208401947f3e83946653575f9a39005e1545185629e92736b7528ab20ca3816f315424a81186528d604086015260ff8d16606086015260018060a01b0316608085015260a084015260c083015260e082015260e08152611528816106b8565b8a6129dd565b611f4d5761050c959691611f4791369161071f565b92611fea565b6040516394ab6c0760e01b81526001600160a01b0388166004820152602490fd5b9161050c939160405193611f8185610682565b60008552611fea565b93909260ff611fb69361050c97958752166020860152604085015260a0606085015260a08401906104d6565b9160808184039101526104d6565b909260ff60809361050c96958452166020830152604082015281606082015201906104d6565b929190611ff684613090565b6008811015610e17576002600160ff83161b16156120db575083600052600460205261205261204a612044612039604060002065ffffffffffff905460a01c1690565b65ffffffffffff1690565b8361255a565b8383876122a9565b9480511560001461209f57506120997fb8e138887d0aa13bab447e82de9d5c1777041ecd21ca36ba824ff1e6c07ddda4938660405194859460018060a01b03169785611fc4565b0390a290565b612099907fe2babfbac5889a709b63bb7f598b324e08bc5a4fb9ec647fb3cbc9ec07eb8712948760405195869560018060a01b03169886611f8a565b6040516331b75e4d60e01b815260048101869052606491612100906024830190610e1c565b60026044820152fd5b3d15612134573d9061211a82610704565b9161212860405193846106d4565b82523d6000602084013e565b606090565b600b546001600160a01b031633810361219557300361215457565b61215d36610704565b61216a60405191826106d4565b368152602081019036600083376000602036830101525190205b8061218d612fa7565b036121845750565b6040516347096e4760e01b8152336004820152602490fd5b600b546001600160a01b031630036107dc5763bc197c8160e01b90565b6040906121e66000939594606083019683526020830190610e1c565b0152565b6121f381613090565b906008821015610e17576010600160ff84161b1615612210575090565b612233606492604051926331b75e4d60e01b845260048401526024830190610e1c565b60106044820152fd5b61224581613090565b906008821015610e17576030600160ff84161b1615612262575090565b612285606492604051926331b75e4d60e01b845260048401526024830190610e1c565b60306044820152fd5b9060018201809211611e3557565b91908201809211611e3557565b6122c0909291926000526009602052604060002090565b91600383016122eb6122e483839060018060a01b0316600052602052604060002090565b5460ff1690565b6123735761231160ff939261231e929060018060a01b0316600052602052604060002090565b805460ff19166001179055565b1680612335575061233082825461229c565b905590565b6001810361234c575060010161233082825461229c565b6002036123615760020161233082825461229c565b6040516303599be160e11b8152600490fd5b6040516371c6af4960e01b81526001600160a01b0383166004820152602490fd5b6040513d6000823e3d90fd5b6040516324776b7d60e21b81526020816004817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa600091816123f7575b5061050c575061050c43612b60565b90916020823d821161242b575b81612411602093836106d4565b810103126105f1575051612424816111ae565b90386123e8565b3d9150612404565b6040519061244082610667565b601d82527f6d6f64653d626c6f636b6e756d6265722666726f6d3d64656661756c740000006020830152565b604051634bf5d7e960e01b8152600080826004817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa909182826124c4575b505061050c575061050c612433565b909192503d8082843e6124d781846106d4565b820191602081840312612543578051906001600160401b038211612547570182601f820112156125435780519161250d83610704565b9361251b60405195866106d4565b838552602084840101116105f157509061253b91602080850191016104b3565b9038806124b5565b5080fd5b8280fd5b908160209103126103b4575190565b604051630748d63560e31b81526001600160a01b0391821660048201526024810192909252602090829060449082907f0000000000000000000000000000000000000000000000000000000000000000165afa908115610ba6576000916125bf575090565b61050c915060203d8111610bd157610bc281836106d4565b6125df612d36565b926000925065ffffffffffff9182168110612604575050505b6001600160d01b031690565b61261091929350612b60565b600a54908390826005811161266b575b5061262b9350612ee3565b8061263657506125f8565b612666915061264761265f91612b92565b600a600052600080516020613c158339815191520190565b5460301c90565b6125f8565b909261267682612bc1565b8203918211611e355761262b94600a87528083600080516020613c15833981519152015416908516106000146126af5750915b38612620565b9291506126bb9061228e565b906126a9565b90919061070257508051156126d857805190602001fd5b60405163d6bda27560e01b8152600490fd5b6042906126f5612710565b906040519161190160f01b8352600283015260228201522090565b307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614806127fb575b1561276b577f000000000000000000000000000000000000000000000000000000000000000090565b60405160208101907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82527f000000000000000000000000000000000000000000000000000000000000000060408201527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260a08152611de78161069d565b507f00000000000000000000000000000000000000000000000000000000000000004614612742565b60ff81146128625760ff811690601f8211612850576040519161284683610667565b8252602082015290565b604051632cd44ac360e21b8152600490fd5b5060405160008181549161287583611caa565b808352926001908181169081156128f9575060011461289c575b5061050c925003826106d4565b600080805291507f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5635b8483106128de575061050c93505081016020013861288f565b819350908160209254838589010152019101909184926128c5565b90506020925061050c94915060ff191682840152151560051b8201013861288f565b60ff811461293d5760ff811690601f8211612850576040519161284683610667565b5060405160008160019182549261295384611caa565b808452938181169081156128f95750600114612976575061050c925003826106d4565b600081815291507fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf65b8483106129b8575061050c93505081016020013861288f565b8193509081602092548385890101520191019091849261299f565b60041115610e1757565b9091813b612a18576129ef9192612aa0565b506129f9816129d3565b159182612a0557505090565b6001600160a01b03918216911614919050565b6000918291604051612a5c81612a4e6020820194630b135d3f60e11b998a875260248401526040604484015260648301906104d6565b03601f1981018352826106d4565b51915afa90612a69612109565b82612a92575b82612a7957505090565b612a8e9192506020808251830101910161254b565b1490565b915060208251101591612a6f565b8151919060418303612ad157612aca92506020820151906060604084015193015160001a90612adc565b9192909190565b505060009160029190565b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411612b5457926020929160ff608095604051948552168484015260408301526060820152600092839182805260015afa15610ba65780516001600160a01b03811615612b4b57918190565b50809160019190565b50505060009160039190565b65ffffffffffff90818111612b73571690565b604490604051906306dfcc6560e41b8252603060048301526024820152fd5b600019810191908211611e3557565b8115612bab570490565b634e487b7160e01b600052601260045260246000fd5b600181111561050c57600181600160801b811015612cda575b612c82612c78612c6e612c64612c5a612c50612c8e97600488600160401b612c899a1015612ccd575b640100000000811015612cc0575b62010000811015612cb3575b610100811015612ca7575b6010811015612c9b575b1015612c93575b60030260011c612c49818b612ba1565b0160011c90565b612c49818a612ba1565b612c498189612ba1565b612c498188612ba1565b612c498187612ba1565b612c498186612ba1565b8093612ba1565b821190565b900390565b60011b612c39565b811c9160021b91612c32565b60081c91811b91612c28565b60101c9160081b91612c1d565b60201c9160101b91612c11565b60401c9160201b91612c03565b50600160401b9050608082901c612bda565b600a5460009080612cfe575050600090565b80600019810111611e3557600a7fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a79252015460301c90565b600a5480612d4a5750600090600090600090565b80600019810111611e3557600a6000527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a7015460019165ffffffffffff82169160301c90565b600a5490600160401b821015610662576001820180600a55821015611e735761070291600a600052600080516020613c158339815191520190612df065ffffffffffff825116839065ffffffffffff1665ffffffffffff19825416179055565b60200151815465ffffffffffff1660309190911b65ffffffffffff1916179055565b600a549192918015612eb957612647612e2a91612b92565b9081549165ffffffffffff90818416918316808311612ea757869203612e6f57612e6892509065ffffffffffff82549181199060301b169116179055565b60301c9190565b5050612ea290612e8e612e806106f5565b65ffffffffffff9092168252565b6001600160d01b0385166020820152612d90565b612e68565b604051632520601d60e01b8152600490fd5b50612edd90612ec9612e806106f5565b6001600160d01b0384166020820152612d90565b60009190565b905b828110612ef157505090565b90918082169080831860011c8201809211611e3557600a60005265ffffffffffff8083600080516020613c1583398151915201541690851610600014612f3a5750915b90612ee5565b929150612f469061228e565b90612f34565b6005548060801c9160018301926001600160801b0380931683851614612f94576000526006602052604060002055600554916001600160801b03199060801b16911617600555565b634e487b7160005260416020526024601cfd5b600554906001600160801b038083169260801c8314612fec57826000526006602052600160406000209360008554955501166001600160801b03196005541617600555565b634e487b7160005260316020526024601cfd5b6000198282098282029182808310920391808303921461306e57816064111561305b577f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c28f5c29936064910990828211900360fe1b910360021c170290565b634e487b7160005260116020526024601cfd5b5050606491500490565b908160209103126103b4575180151581036103b45790565b613099816131a2565b906130a382610e0d565b6005820361319e576130c09150600052600c602052604060002090565b54600b546130d6906001600160a01b03166109e5565b604051632c258a9f60e11b81526004810183905260209291908381602481855afa908115610ba657600091613181575b501561311457505050600590565b604051632ab0f52960e01b815260048101929092528290829060249082905afa918215610ba657600092613154575b50501561314f57600790565b600290565b6131739250803d1061317a575b61316b81836106d4565b810190613078565b3880613143565b503d613161565b6131989150843d861161317a5761316b81836106d4565b38613106565b5090565b6131b6816000526004602052604060002090565b5460ff8160f01c166132bf5760f81c6132b9576131f26120396131e3836000526004602052604060002090565b5460a01c65ffffffffffff1690565b80156132a0576132036120396123a0565b809110156132995761321482611e03565b1061321f5750600190565b61322b610cec826132c6565b8015613274575b1561323d5750600390565b6120396001613259613266936000526004602052604060002090565b015465ffffffffffff1690565b61326f57600490565b600590565b50613294610cec8260005260096020526040600020600181015490541090565b613232565b5050600090565b604051636ad0607560e01b815260048101839052602490fd5b50600290565b5050600790565b60005260096020526040600020600460205265ffffffffffff60406000205460a01c16604051632394e7a360e21b815281600482015260208160248160018060a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa8015610ba65761335d9261334c92600092611c2d5750611c27906125d7565b91600260018201549101549061229c565b101590565b9193929093613371823361374e565b1561346757600754948561338d575b61050c9495503393613597565b65ffffffffffff600019816133a06123a0565b160190808211611e355760006040516133b881610682565b52604051630748d63560e31b8152336004820152911660248201526020816044817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa908115610ba657600091613449575b508681106134225750613380565b604051636121770b60e11b8152336004820152602481019190915260448101879052606490fd5b613461915060203d8111610bd157610bc281836106d4565b38613414565b60405163d9b3955760e01b8152336004820152602490fd5b90613489826107ee565b61349660405191826106d4565b82815280926134a7601f19916107ee565b019060005b8281106134b857505050565b8060606020809385010152016134ac565b95926134fc9061350a939b9a9899969592885260209b60018060a01b03168c8901526101208060408a0152880190611cf7565b90868203606088015261135c565b9784890360808601528251808a52818a019180808360051b8d01019501926000905b83821061356957505050505061050c969750906135509184820360a0860152611d34565b9360c083015260e08201526101008184039101526104d6565b909192939583806135888f93600194601f199082030186528a516104d6565b9801920192019093929161352c565b9194939092946135af86516020880120828686611d89565b958351855190818114801590613743575b801561373b575b61371257505065ffffffffffff94856135ed6131e38a6000526004602052604060002090565b166136eb577f7d84a6263ae0d98d3329bd7b46bb4e8d6f98cd35a7adb45c274c8b7fd5ebd5e0956136e69363ffffffff6136366136286123a0565b60085494808616911661229c565b9260301c166136c46136528c6000526004602052604060002090565b80546001600160a01b0319166001600160a01b038a1617815561369b61367786612b60565b825465ffffffffffff60a01b191660a09190911b65ffffffffffff60a01b16178255565b6136a483613984565b815463ffffffff60d01b191660d09190911b63ffffffff60d01b16179055565b6136d86136d1895161347f565b918461229c565b936040519889988d8a6134c9565b0390a1565b876136f581613090565b6040516331b75e4d60e01b8152918291610f2a91600484016121ca565b8351604051630447b05d60e41b8152600481019290925260248201526044810191909152606490fd5b5080156135c7565b5083518114156135c0565b9080516034811061379b5760131981830101516001600160b01b03191669dc8f8d908f908c9a8dc360b01b0161379b5761378d916029198201906137cf565b9015918215612a0557505090565b505050600190565b908160011b9180830460021490151715611e3557565b908160041b9180830460101490151715611e3557565b9190825182118015613858575b61382f576137e98161228e565b82118061383a575b6137fc9015156137a3565b60280180602811611e3557818303838111611e35570361382f5761381f92613861565b90916001600160a01b0390911690565b505050600090600090565b50828101602001516001600160f01b03191661060f60f31b146137f1565b508181116137dc565b92909261386d8461228e565b8311806138f4575b6138809015156137a3565b936000948101809111611e35579192905b8183106138a15750505060019190565b9092919360ff6138c26138bd6020888601015160ff60f81b1690565b613912565b1690600f82116138e857906138d96138e0926137b9565b0194611e3a565b919290613891565b50600094508493505050565b50808401602001516001600160f01b03191661060f60f31b14613875565b60f81c602f81118061397a575b1561392e57602f190160ff1690565b6060811180613970575b15613947576056190160ff1690565b6040811180613966575b15613960576036190160ff1690565b5060ff90565b5060478110613951565b5060678110613938565b50603a811061391f565b63ffffffff90818111613995571690565b604490604051906306dfcc6560e41b8252602060048301526024820152fd5b906139c0939291611d89565b6139c981613090565b6008811015610e1757603b600160ff83161b1615613ac85750613a0e6139f9826000526004602052604060002090565b80546001600160f81b0316600160f81b179055565b6040518181527f789cf55be980739dad1d0699b93b58e806b51c9d96619bfa8fe0a28abaa7b30c90602090a1613a4e81600052600c602052604060002090565b5480613a58575090565b600b54613a6d906001600160a01b03166109e5565b803b156103b45760405163c4d252f560e01b815260048101929092526000908290602490829084905af18015610ba657613ab5575b506000818152600c602052604081205590565b80610b9a613ac29261064f565b38613aa2565b90613aec606492604051926331b75e4d60e01b845260048401526024830190610e1c565b603b6044820152fd5b949392613b21608093613b13613b2f9460a08a5260a08a0190611cf7565b9088820360208a015261135c565b908682036040880152611d34565b93600060608201520152565b9192613b6a60a094613b5c613b78949998979960c0875260c0870190611cf7565b90858203602087015261135c565b908382036040850152611d34565b946000606083015260808201520152565b9290939160018060a01b03600b541690813b156103b457600093613bd86040519788958694859463e38335e560e01b86526bffffffffffffffffffffffff193060601b16189260048601613af5565b039134905af1908115610ba657600092613c0292613c05575b50600052600c602052604060002090565b55565b613c0e9061064f565b38613bf156fec65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8a264697066735822122096e6155403c0e85a4c4a6346f4c92d6c35195199ea8303e8c02eed5077b88d1b64736f6c63430008140033", + "linkReferences": {}, + "deployedLinkReferences": {} +} diff --git a/backend/cache/solidity-files-cache.json b/backend/cache/solidity-files-cache.json new file mode 100644 index 0000000..2d71689 --- /dev/null +++ b/backend/cache/solidity-files-cache.json @@ -0,0 +1,2059 @@ +{ + "_format": "hh-sol-cache-2", + "files": { + "/app/contracts/GovernanceTimelock.sol": { + "lastModificationDate": 1747057245108, + "contentHash": "1da82c4171b2322bdd2a362508354d33", + "sourceName": "contracts/GovernanceTimelock.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "@openzeppelin/contracts/governance/TimelockController.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "GovernanceTimelock" + ] + }, + "/app/node_modules/@openzeppelin/contracts/governance/TimelockController.sol": { + "lastModificationDate": 1745825448087, + "contentHash": "13845647b84f2f5c4480e08e3d55da1b", + "sourceName": "@openzeppelin/contracts/governance/TimelockController.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../access/AccessControl.sol", + "../token/ERC721/utils/ERC721Holder.sol", + "../token/ERC1155/utils/ERC1155Holder.sol", + "../utils/Address.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "TimelockController" + ] + }, + "/app/node_modules/@openzeppelin/contracts/access/AccessControl.sol": { + "lastModificationDate": 1745825448066, + "contentHash": "849b15469d8e2bd01b49e6c632e448e7", + "sourceName": "@openzeppelin/contracts/access/AccessControl.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "./IAccessControl.sol", + "../utils/Context.sol", + "../utils/introspection/ERC165.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "AccessControl" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/Address.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "5b9a49c25d7edbc48ffcbd2c7e8a40ef", + "sourceName": "@openzeppelin/contracts/utils/Address.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "./Errors.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "Address" + ] + }, + "/app/node_modules/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol": { + "lastModificationDate": 1745825448108, + "contentHash": "8cd14f03f1cc06f0a638da5209d716d4", + "sourceName": "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../IERC721Receiver.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "ERC721Holder" + ] + }, + "/app/node_modules/@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol": { + "lastModificationDate": 1745825448108, + "contentHash": "2d5c4c9aa5ff17fc77d595a1915d9d4e", + "sourceName": "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../../../utils/introspection/ERC165.sol", + "../IERC1155Receiver.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "ERC1155Holder" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/Context.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "67bfbc07588eb8683b3fd8f6f909563e", + "sourceName": "@openzeppelin/contracts/utils/Context.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "Context" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/introspection/ERC165.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "7c03c1e37c3dc24eafb76dc2b8a5c3a6", + "sourceName": "@openzeppelin/contracts/utils/introspection/ERC165.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "./IERC165.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "ERC165" + ] + }, + "/app/node_modules/@openzeppelin/contracts/access/IAccessControl.sol": { + "lastModificationDate": 1745825448066, + "contentHash": "80621031deacf7066ec81277f9b1463a", + "sourceName": "@openzeppelin/contracts/access/IAccessControl.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "IAccessControl" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/introspection/IERC165.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "bf0119eb2a570f219729ff38b6cd1df8", + "sourceName": "@openzeppelin/contracts/utils/introspection/IERC165.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "IERC165" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/Errors.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "6b5eac2b85500c3012977849cfd633d8", + "sourceName": "@openzeppelin/contracts/utils/Errors.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "Errors" + ] + }, + "/app/node_modules/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": { + "lastModificationDate": 1745825448108, + "contentHash": "729ce0904eb533489ffcc3bfe91237d4", + "sourceName": "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "IERC721Receiver" + ] + }, + "/app/node_modules/@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol": { + "lastModificationDate": 1745825448108, + "contentHash": "a1c249dfb5f349be0b4fc85e635dfd59", + "sourceName": "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../../utils/introspection/IERC165.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "IERC1155Receiver" + ] + }, + "/app/node_modules/@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol": { + "lastModificationDate": 1745825448087, + "contentHash": "939d4441f70d1ac73b31f3c9b7bd4fa0", + "sourceName": "@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../Governor.sol", + "../TimelockController.sol", + "../../interfaces/IERC165.sol", + "../../utils/math/SafeCast.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "GovernorTimelockControl" + ] + }, + "/app/node_modules/@openzeppelin/contracts/governance/Governor.sol": { + "lastModificationDate": 1745825448087, + "contentHash": "6b305fffdb6eb6575c68dbefe21d2f19", + "sourceName": "@openzeppelin/contracts/governance/Governor.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../token/ERC721/IERC721Receiver.sol", + "../token/ERC1155/IERC1155Receiver.sol", + "../utils/cryptography/EIP712.sol", + "../utils/cryptography/SignatureChecker.sol", + "../utils/introspection/ERC165.sol", + "../utils/math/SafeCast.sol", + "../utils/structs/DoubleEndedQueue.sol", + "../utils/Address.sol", + "../utils/Context.sol", + "../utils/Nonces.sol", + "../utils/Strings.sol", + "./IGovernor.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "Governor" + ] + }, + "/app/node_modules/@openzeppelin/contracts/interfaces/IERC165.sol": { + "lastModificationDate": 1745825448108, + "contentHash": "f808b485ee0cdc6768ee8385ae5f9a2a", + "sourceName": "@openzeppelin/contracts/interfaces/IERC165.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../utils/introspection/IERC165.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [] + }, + "/app/node_modules/@openzeppelin/contracts/utils/math/SafeCast.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "2adca1150f58fc6f3d1f0a0f22ee7cca", + "sourceName": "@openzeppelin/contracts/utils/math/SafeCast.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "SafeCast" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/Nonces.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "c32d108058718efb9061b88e83a83f79", + "sourceName": "@openzeppelin/contracts/utils/Nonces.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "Nonces" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/Strings.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "13dbc135f563c72a11b1cf4fbb5fb284", + "sourceName": "@openzeppelin/contracts/utils/Strings.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "./math/Math.sol", + "./math/SafeCast.sol", + "./math/SignedMath.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "Strings" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "03f092e4e7befa45c08cfa35b51016cb", + "sourceName": "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "./ECDSA.sol", + "../../interfaces/IERC1271.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "SignatureChecker" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/cryptography/EIP712.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "b21731956bbef780b4cc856e8dda7426", + "sourceName": "@openzeppelin/contracts/utils/cryptography/EIP712.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "./MessageHashUtils.sol", + "../ShortStrings.sol", + "../../interfaces/IERC5267.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "EIP712" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "cab08a09ef0cf9bb7a0f731c7e585b69", + "sourceName": "@openzeppelin/contracts/utils/structs/DoubleEndedQueue.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../Panic.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "DoubleEndedQueue" + ] + }, + "/app/node_modules/@openzeppelin/contracts/governance/IGovernor.sol": { + "lastModificationDate": 1745825448087, + "contentHash": "028e4368748c894ef631b673175b6d57", + "sourceName": "@openzeppelin/contracts/governance/IGovernor.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../interfaces/IERC165.sol", + "../interfaces/IERC6372.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "IGovernor" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/math/Math.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "5ec781e33d3a9ac91ffdc83d94420412", + "sourceName": "@openzeppelin/contracts/utils/math/Math.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../Panic.sol", + "./SafeCast.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "Math" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/math/SignedMath.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "ae3528afb8bdb0a7dcfba5b115ee8074", + "sourceName": "@openzeppelin/contracts/utils/math/SignedMath.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "./SafeCast.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "SignedMath" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/Panic.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "2133dc13536b4a6a98131e431fac59e1", + "sourceName": "@openzeppelin/contracts/utils/Panic.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "Panic" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "81de029d56aa803972be03c5d277cb6c", + "sourceName": "@openzeppelin/contracts/utils/cryptography/ECDSA.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "ECDSA" + ] + }, + "/app/node_modules/@openzeppelin/contracts/interfaces/IERC1271.sol": { + "lastModificationDate": 1745825448108, + "contentHash": "3def021e7792e679a61b7bf9764e39e9", + "sourceName": "@openzeppelin/contracts/interfaces/IERC1271.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "IERC1271" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/ShortStrings.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "c1be9487e5a64acf23b5d8028482e748", + "sourceName": "@openzeppelin/contracts/utils/ShortStrings.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "./StorageSlot.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "ShortStrings" + ] + }, + "/app/node_modules/@openzeppelin/contracts/interfaces/IERC5267.sol": { + "lastModificationDate": 1745825448108, + "contentHash": "94364524cb1a39dcbc3d3afff6d8e53e", + "sourceName": "@openzeppelin/contracts/interfaces/IERC5267.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "IERC5267" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "260f3968eefa3bbd30520cff5384cd93", + "sourceName": "@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../Strings.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "MessageHashUtils" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/StorageSlot.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "e656d64c4ce918f3d13030b91c935134", + "sourceName": "@openzeppelin/contracts/utils/StorageSlot.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "StorageSlot" + ] + }, + "/app/node_modules/@openzeppelin/contracts/interfaces/IERC6372.sol": { + "lastModificationDate": 1745825448108, + "contentHash": "414cd6acf090e4009cf016ff62ecbd88", + "sourceName": "@openzeppelin/contracts/interfaces/IERC6372.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "IERC6372" + ] + }, + "/app/node_modules/@openzeppelin/contracts/governance/utils/Votes.sol": { + "lastModificationDate": 1745825448087, + "contentHash": "95aceafdc639babdd22576e5e3774d64", + "sourceName": "@openzeppelin/contracts/governance/utils/Votes.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../../interfaces/IERC5805.sol", + "../../utils/Context.sol", + "../../utils/Nonces.sol", + "../../utils/cryptography/EIP712.sol", + "../../utils/structs/Checkpoints.sol", + "../../utils/math/SafeCast.sol", + "../../utils/cryptography/ECDSA.sol", + "../../utils/types/Time.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "Votes" + ] + }, + "/app/node_modules/@openzeppelin/contracts/interfaces/IERC5805.sol": { + "lastModificationDate": 1745825448108, + "contentHash": "65ba9f89b1057e2192e341b286d4e261", + "sourceName": "@openzeppelin/contracts/interfaces/IERC5805.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../governance/utils/IVotes.sol", + "./IERC6372.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "IERC5805" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/structs/Checkpoints.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "7ca7c8421d39c1e99338f38f7952d1b8", + "sourceName": "@openzeppelin/contracts/utils/structs/Checkpoints.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../math/Math.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "Checkpoints" + ] + }, + "/app/node_modules/@openzeppelin/contracts/utils/types/Time.sol": { + "lastModificationDate": 1745825448097, + "contentHash": "d83e7814a059fc1287fd765f424ce004", + "sourceName": "@openzeppelin/contracts/utils/types/Time.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../math/Math.sol", + "../math/SafeCast.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "Time" + ] + }, + "/app/node_modules/@openzeppelin/contracts/governance/utils/IVotes.sol": { + "lastModificationDate": 1745825448087, + "contentHash": "905ffceb29869fee4b5a649abe7e2927", + "sourceName": "@openzeppelin/contracts/governance/utils/IVotes.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "IVotes" + ] + }, + "/app/node_modules/@openzeppelin/contracts/governance/extensions/GovernorVotes.sol": { + "lastModificationDate": 1745825448087, + "contentHash": "c66ade534226e6235abd10c7cb3b0193", + "sourceName": "@openzeppelin/contracts/governance/extensions/GovernorVotes.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../Governor.sol", + "../utils/IVotes.sol", + "../../interfaces/IERC5805.sol", + "../../utils/math/SafeCast.sol", + "../../utils/types/Time.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "GovernorVotes" + ] + }, + "/app/node_modules/@openzeppelin/contracts/token/ERC20/ERC20.sol": { + "lastModificationDate": 1745825448108, + "contentHash": "57d79df281f57bbb1b09214c7914f877", + "sourceName": "@openzeppelin/contracts/token/ERC20/ERC20.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "./IERC20.sol", + "./extensions/IERC20Metadata.sol", + "../../utils/Context.sol", + "../../interfaces/draft-IERC6093.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "ERC20" + ] + }, + "/app/node_modules/@openzeppelin/contracts/interfaces/draft-IERC6093.sol": { + "lastModificationDate": 1745825448108, + "contentHash": "267d92fe4de67b1bdb3302c08f387dbf", + "sourceName": "@openzeppelin/contracts/interfaces/draft-IERC6093.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "IERC1155Errors", + "IERC20Errors", + "IERC721Errors" + ] + }, + "/app/node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol": { + "lastModificationDate": 1745825448108, + "contentHash": "8f19f64d2adadf448840908bbaf431c8", + "sourceName": "@openzeppelin/contracts/token/ERC20/IERC20.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "IERC20" + ] + }, + "/app/node_modules/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": { + "lastModificationDate": 1745825448108, + "contentHash": "794db3115001aa372c79326fcfd44b1f", + "sourceName": "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../IERC20.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "IERC20Metadata" + ] + }, + "/app/node_modules/@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol": { + "lastModificationDate": 1745825448108, + "contentHash": "51c2083b160453420aaa0a046c16d5ca", + "sourceName": "@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../ERC20.sol", + "../../../governance/utils/Votes.sol", + "../../../utils/structs/Checkpoints.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "ERC20Votes" + ] + }, + "/app/node_modules/@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol": { + "lastModificationDate": 1745825448087, + "contentHash": "62abd4cd017cce476f952ae680d78892", + "sourceName": "@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "./GovernorVotes.sol", + "../../utils/math/Math.sol", + "../../utils/math/SafeCast.sol", + "../../utils/structs/Checkpoints.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "GovernorVotesQuorumFraction" + ] + }, + "/app/contracts/GovernorContract.sol": { + "lastModificationDate": 1747058663916, + "contentHash": "158e180f0fec77612a890bfd4ec9107a", + "sourceName": "contracts/GovernorContract.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "@openzeppelin/contracts/governance/Governor.sol", + "@openzeppelin/contracts/governance/extensions/GovernorSettings.sol", + "@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol", + "@openzeppelin/contracts/governance/extensions/GovernorVotes.sol", + "@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol", + "@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "GovernorContract" + ] + }, + "/app/node_modules/@openzeppelin/contracts/governance/extensions/GovernorSettings.sol": { + "lastModificationDate": 1745825448087, + "contentHash": "80b3bbc71b44392e967e1b2f7704c692", + "sourceName": "@openzeppelin/contracts/governance/extensions/GovernorSettings.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../Governor.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "GovernorSettings" + ] + }, + "/app/node_modules/@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol": { + "lastModificationDate": 1745825448087, + "contentHash": "4e2d53e70a7246b469fa77cdbb624b21", + "sourceName": "@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../Governor.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "GovernorCountingSimple" + ] + }, + "/app/contracts/GovernanceToken.sol": { + "lastModificationDate": 1747057933847, + "contentHash": "1a25b332cd76e4cb6d65135515933e5c", + "sourceName": "contracts/GovernanceToken.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol", + "@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol", + "@openzeppelin/contracts/access/Ownable.sol", + "@openzeppelin/contracts/utils/Nonces.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "GovernanceToken" + ] + }, + "/app/node_modules/@openzeppelin/contracts/access/Ownable.sol": { + "lastModificationDate": 1745825448066, + "contentHash": "d3c790edc9ccf808a17c5a6cd13614fd", + "sourceName": "@openzeppelin/contracts/access/Ownable.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "../utils/Context.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "Ownable" + ] + }, + "/app/node_modules/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol": { + "lastModificationDate": 1745825448108, + "contentHash": "b1a8fc63b83ce00408e0c9ed1230b717", + "sourceName": "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [ + "./IERC20Permit.sol", + "../ERC20.sol", + "../../../utils/cryptography/ECDSA.sol", + "../../../utils/cryptography/EIP712.sol", + "../../../utils/Nonces.sol" + ], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "ERC20Permit" + ] + }, + "/app/node_modules/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol": { + "lastModificationDate": 1745825448108, + "contentHash": "94ec15baf0d5df863f45b8f351937ec7", + "sourceName": "@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol", + "solcConfig": { + "version": "0.8.20", + "settings": { + "optimizer": { + "enabled": true, + "runs": 200 + }, + "viaIR": true, + "evmVersion": "paris", + "outputSelection": { + "*": { + "*": [ + "abi", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "metadata" + ], + "": [ + "ast" + ] + } + } + } + }, + "imports": [], + "versionPragmas": [ + "^0.8.20" + ], + "artifacts": [ + "IERC20Permit" + ] + } + } +} diff --git a/backend/config/auth-tokens.json b/backend/config/auth-tokens.json new file mode 100644 index 0000000..257fed3 --- /dev/null +++ b/backend/config/auth-tokens.json @@ -0,0 +1,32 @@ +[ + { + "name": "Ethereum Token", + "address": "0xd95a45fc46a7300e6022885afec3d618d7d3f27c", + "network": "eth", + "minBalance": "1.0" + }, + { + "name": "BSC Token", + "address": "0x4B294265720B09ca39BFBA18c7E368413c0f68eB", + "network": "bsc", + "minBalance": "10.0" + }, + { + "name": "Arbitrum Token", + "address": "0xdce769b847a0a697239777d0b1c7dd33b6012ba0", + "network": "arbitrum", + "minBalance": "0.5" + }, + { + "name": "Custom Token", + "address": "0x351f59de4fedbdf7601f5592b93db3b9330c1c1d", + "network": "eth", + "minBalance": "5.0" + }, + { + "name": "test2", + "address": "0xef49261169B454f191678D2aFC5E91Ad2e85dfD8", + "minBalance": "1.0", + "network": "sepolia" + } +] \ No newline at end of file diff --git a/backend/config/rpc-settings.json b/backend/config/rpc-settings.json new file mode 100644 index 0000000..9aaa493 --- /dev/null +++ b/backend/config/rpc-settings.json @@ -0,0 +1,27 @@ +[ + { + "networkId": "bsc", + "rpcUrl": "https://bsc-dataseed1.binance.org", + "chainId": 56 + }, + { + "networkId": "arbitrum", + "rpcUrl": "https://arb1.arbitrum.io/rpc", + "chainId": 42161 + }, + { + "networkId": "polygon", + "rpcUrl": "https://polygon-rpc.com", + "chainId": 137 + }, + { + "networkId": "sepolia", + "rpcUrl": "https://eth-sepolia.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52", + "chainId": 11155111 + }, + { + "networkId": "ethereum", + "rpcUrl": "https://eth-sepolia.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52", + "chainId": 1 + } +] \ No newline at end of file diff --git a/backend/contracts-data/dles/test2-1747217093052.json b/backend/contracts-data/dles/test2-1747217093052.json new file mode 100644 index 0000000..7e1a2e3 --- /dev/null +++ b/backend/contracts-data/dles/test2-1747217093052.json @@ -0,0 +1,14 @@ +{ + "name": "test2", + "symbol": "test2", + "location": "245000, 中国, 黄山市", + "isicCodes": [ + "6810" + ], + "tokenAddress": "0xef49261169B454f191678D2aFC5E91Ad2e85dfD8", + "timelockAddress": "0xd5Aea926fc023f11D7D1e762Ca4A11c87830D7ea", + "governorAddress": "0xe599F51CAF812E19666DDd6f3002665A2Ca83DaC", + "creationBlock": 8324324, + "creationTimestamp": 1747217076, + "deployedManually": true +} \ No newline at end of file diff --git a/backend/contracts/GovernanceTimelock.sol b/backend/contracts/GovernanceTimelock.sol new file mode 100644 index 0000000..526d6d3 --- /dev/null +++ b/backend/contracts/GovernanceTimelock.sol @@ -0,0 +1,29 @@ +// SPDX-License-Identifier: MIT +pragma solidity ^0.8.20; + +import "@openzeppelin/contracts/governance/TimelockController.sol"; + +/** + * @title GovernanceTimelock + * @dev Контракт таймлока для DAO, обеспечивающий задержку между одобрением и исполнением предложений + */ +contract GovernanceTimelock is TimelockController { + /** + * @dev Конструктор + * @param minDelay Минимальная задержка в секундах перед выполнением транзакции + * @param proposers Адреса, которые могут предлагать транзакции + * @param executors Адреса, которые могут выполнять транзакции + * @param admin Адрес администратора (обычно адрес нулевой для децентрализации) + */ + constructor( + uint256 minDelay, + address[] memory proposers, + address[] memory executors, + address admin + ) TimelockController( + minDelay, + proposers, + executors, + admin + ) {} +} \ No newline at end of file diff --git a/backend/contracts/GovernanceToken.sol b/backend/contracts/GovernanceToken.sol new file mode 100644 index 0000000..78a8749 --- /dev/null +++ b/backend/contracts/GovernanceToken.sol @@ -0,0 +1,57 @@ +// SPDX-License-Identifier: MIT +pragma solidity ^0.8.20; + +import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol"; +import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol"; +import "@openzeppelin/contracts/access/Ownable.sol"; +import "@openzeppelin/contracts/utils/Nonces.sol"; + +/** + * @title GovernanceToken + * @dev Токен управления ERC20Votes с функциями голосования для DAO + */ +contract GovernanceToken is ERC20Permit, ERC20Votes, Ownable { + constructor( + string memory name, + string memory symbol, + address initialOwner + ) ERC20(name, symbol) ERC20Permit(name) Ownable(initialOwner) { + // Конструктор остается пустым, начальное распределение происходит через + // вызов функции mintInitialSupply ниже + } + + /** + * @dev Минтит начальный запас токенов для распределения между партнерами + * @param partners Массив адресов партнеров + * @param amounts Массив сумм токенов для каждого партнера + */ + function mintInitialSupply( + address[] memory partners, + uint256[] memory amounts + ) external onlyOwner { + require(partners.length == amounts.length, "Arrays length mismatch"); + require(partners.length > 0, "Empty arrays"); + + uint256 totalSupply = 0; + for (uint256 i = 0; i < partners.length; i++) { + require(partners[i] != address(0), "Zero address"); + require(amounts[i] > 0, "Zero amount"); + + totalSupply += amounts[i]; + _mint(partners[i], amounts[i]); + } + + // После начального распределения отказываемся от права создавать новые токены + renounceOwnership(); + } + + // Переопределения, необходимые для корректной работы токена голосования + + function _update(address from, address to, uint256 amount) internal override(ERC20, ERC20Votes) { + super._update(from, to, amount); + } + + function nonces(address owner) public view override(ERC20Permit, Nonces) returns (uint256) { + return super.nonces(owner); + } +} \ No newline at end of file diff --git a/backend/contracts/GovernorContract.sol b/backend/contracts/GovernorContract.sol new file mode 100644 index 0000000..448e070 --- /dev/null +++ b/backend/contracts/GovernorContract.sol @@ -0,0 +1,166 @@ +// SPDX-License-Identifier: MIT +pragma solidity ^0.8.20; + +import "@openzeppelin/contracts/governance/Governor.sol"; +import "@openzeppelin/contracts/governance/extensions/GovernorSettings.sol"; +import "@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol"; +import "@openzeppelin/contracts/governance/extensions/GovernorVotes.sol"; +import "@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol"; +import "@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.sol"; + +/** + * @title GovernorContract + * @dev Контракт Governor для DAO с настраиваемыми параметрами + */ +contract GovernorContract is + Governor, + GovernorSettings, + GovernorCountingSimple, + GovernorVotes, + GovernorVotesQuorumFraction, + GovernorTimelockControl +{ + constructor( + string memory _name, + IVotes _token, + TimelockController _timelock, + uint48 _votingDelay, + uint32 _votingPeriod, + uint256 _proposalThreshold, + uint256 _quorumPercentage + ) + Governor(_name) + GovernorSettings( + _votingDelay, /* Задержка голосования в блоках */ + _votingPeriod, /* Период голосования в блоках */ + _proposalThreshold /* Порог предложения в wei токенов */ + ) + GovernorVotes(_token) + GovernorVotesQuorumFraction(_quorumPercentage) + GovernorTimelockControl(_timelock) + {} + + // Функции, которые необходимо переопределить из базовых контрактов + + function votingDelay() + public + view + override(Governor, GovernorSettings) + returns (uint256) + { + return super.votingDelay(); + } + + function votingPeriod() + public + view + override(Governor, GovernorSettings) + returns (uint256) + { + return super.votingPeriod(); + } + + function quorum(uint256 blockNumber) + public + view + override(Governor, GovernorVotesQuorumFraction) + returns (uint256) + { + return super.quorum(blockNumber); + } + + function state(uint256 proposalId) + public + view + override(Governor, GovernorTimelockControl) + returns (ProposalState) + { + return super.state(proposalId); + } + + function propose( + address[] memory targets, + uint256[] memory values, + bytes[] memory calldatas, + string memory description + ) public override(Governor) returns (uint256) { + return super.propose(targets, values, calldatas, description); + } + + function proposalThreshold() + public + view + override(Governor, GovernorSettings) + returns (uint256) + { + return super.proposalThreshold(); + } + + function _cancel( + address[] memory targets, + uint256[] memory values, + bytes[] memory calldatas, + bytes32 descriptionHash + ) internal override(Governor, GovernorTimelockControl) returns (uint256) { + return super._cancel(targets, values, calldatas, descriptionHash); + } + + function _executor() + internal + view + override(Governor, GovernorTimelockControl) + returns (address) + { + return super._executor(); + } + + /** + * @dev See {IERC165-supportsInterface}. + */ + function supportsInterface(bytes4 interfaceId) + public + view + override(Governor) + returns (bool) + { + return super.supportsInterface(interfaceId); + } + + /** + * @dev Функция для определения, требуется ли постановка предложения в очередь + */ + function proposalNeedsQueuing(uint256 proposalId) + public + view + override(Governor, GovernorTimelockControl) + returns (bool) + { + return super.proposalNeedsQueuing(proposalId); + } + + /** + * @dev Функция для постановки операций в очередь + */ + function _queueOperations( + uint256 proposalId, + address[] memory targets, + uint256[] memory values, + bytes[] memory calldatas, + bytes32 descriptionHash + ) internal override(Governor, GovernorTimelockControl) returns (uint48) { + return super._queueOperations(proposalId, targets, values, calldatas, descriptionHash); + } + + /** + * @dev Функция для выполнения операций + */ + function _executeOperations( + uint256 proposalId, + address[] memory targets, + uint256[] memory values, + bytes[] memory calldatas, + bytes32 descriptionHash + ) internal override(Governor, GovernorTimelockControl) { + super._executeOperations(proposalId, targets, values, calldatas, descriptionHash); + } +} \ No newline at end of file diff --git a/backend/hardhat.config.js b/backend/hardhat.config.js index 8a59a1e..b20ed27 100644 --- a/backend/hardhat.config.js +++ b/backend/hardhat.config.js @@ -2,7 +2,16 @@ require('@nomicfoundation/hardhat-toolbox'); require('dotenv').config(); module.exports = { - solidity: '0.8.20', + solidity: { + version: "0.8.20", + settings: { + optimizer: { + enabled: true, + runs: 200 + }, + viaIR: true + } + }, networks: { sepolia: { url: process.env.ETHEREUM_NETWORK_URL, diff --git a/backend/logs/combined.log b/backend/logs/combined.log index a1dc9d7..0df2062 100644 --- a/backend/logs/combined.log +++ b/backend/logs/combined.log @@ -1,4664 +1,12867 @@ -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:13:01.787Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:13:01.791Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:13:01.801Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:13:01.805Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:13:01.815Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:13:01.817Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:13:01.826Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:13:01.828Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:13:01.838Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:13:01.840Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:13:19.660Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:13:19.663Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:13:19.671Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:13:19.672Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:13:19.734Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:13:19.735Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:13:19.777Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:13:19.779Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:13:19.804Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:13:19.805Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:13:50.233Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:13:50.236Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:13:50.245Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:13:50.247Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:13:50.254Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:13:50.256Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:13:50.264Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:13:50.267Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:13:50.274Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:13:50.275Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:14:20.236Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:14:20.238Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:14:20.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:14:20.249Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:14:20.257Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:14:20.259Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:14:20.267Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:14:20.269Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:14:20.277Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:14:20.278Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T15:14:45.435Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:15:08.651Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:15:08.656Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:15:08.670Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:15:08.674Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:15:08.687Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:15:08.690Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:15:08.704Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:15:08.706Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:15:08.716Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:15:08.721Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:15:19.661Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:15:19.665Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:15:19.676Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:15:19.678Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:15:19.723Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:15:19.725Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:15:19.772Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:15:19.774Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:15:19.808Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:15:19.810Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:15:49.658Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:15:49.661Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:15:49.670Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:15:49.672Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:15:49.724Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:15:49.726Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:15:49.764Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:15:49.766Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:15:49.814Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:15:49.815Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:16:20.245Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:16:20.247Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:16:20.257Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:16:20.259Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:16:20.267Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:16:20.268Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:16:20.277Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:16:20.279Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:16:20.286Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:16:20.288Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:16:50.241Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:16:50.244Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:16:50.253Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:16:50.255Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:16:50.263Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:16:50.265Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:16:50.272Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:16:50.273Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:16:50.280Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:16:50.281Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:17:19.660Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:17:19.663Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:17:19.676Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:17:19.677Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:17:19.733Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:17:19.735Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:17:19.763Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:17:19.765Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:17:19.808Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:17:19.810Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:17:50.258Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:17:50.261Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:17:50.269Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:17:50.271Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:17:50.278Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:17:50.280Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:17:50.287Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:17:50.290Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:17:50.296Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:17:50.298Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:19.665Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:19.667Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:19.677Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:19.679Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:19.740Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:19.742Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:19.775Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:19.776Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:19.807Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:19.809Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:18:40.572Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.575Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.605Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.607Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T15:18:40.632Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:18:40.660Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.663Z"} -{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T15:18:40.666Z"} -{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T15:18:40.667Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:18:40.678Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.684Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.692Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.695Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:18:40.700Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.703Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.708Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.717Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:18:40.729Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.731Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.733Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.735Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:18:40.750Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.751Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.760Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.764Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:18:40.768Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.771Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.779Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.781Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:18:40.789Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.792Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.794Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.798Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:18:40.809Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.811Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.812Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.813Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.828Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:18:40.830Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.831Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.832Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.841Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.843Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.851Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.853Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.862Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.865Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.873Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.875Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.883Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.885Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.894Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.896Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.907Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.909Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.917Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.919Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.928Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.929Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.939Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.940Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:18:40.949Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:18:40.952Z"} -{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-06T15:18:42.543Z"} -{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-06T15:18:43.223Z"} -{"level":"error","message":"Provider for arbitrum is not available: ","timestamp":"2025-05-06T15:18:44.320Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T15:18:46.202Z"} -{"arbitrum":"0","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-06T15:18:46.203Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:19:10.812Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:19:10.815Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:19:10.826Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:19:10.828Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:19:10.850Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:19:10.851Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:19:10.877Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:19:10.879Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:19:10.907Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:19:10.908Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:19:41.292Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:19:41.295Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:19:41.303Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:19:41.305Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:19:41.312Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:19:41.314Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:19:41.321Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:19:41.322Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:19:41.330Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:19:41.331Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T15:19:44.136Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:20:10.831Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:20:10.835Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:20:10.844Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:20:10.846Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:20:10.857Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:20:10.859Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:20:10.896Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:20:10.897Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:20:10.907Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:20:10.909Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:20:41.261Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:20:41.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:20:41.272Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:20:41.273Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:20:41.281Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:20:41.283Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:20:41.289Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:20:41.291Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:20:41.298Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:20:41.300Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T15:20:57.776Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:21:11.258Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:21:11.261Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:21:11.269Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:21:11.270Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:21:11.278Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:21:11.280Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:21:11.287Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:21:11.288Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:21:11.295Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:21:11.296Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=A","timestamp":"2025-05-06T15:21:19.825Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=01","timestamp":"2025-05-06T15:21:22.668Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=014","timestamp":"2025-05-06T15:21:28.112Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:21:41.257Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:21:41.260Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:21:41.267Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:21:41.268Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:21:41.275Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:21:41.276Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:21:41.283Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:21:41.285Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:21:41.293Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:21:41.294Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:22:11.260Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:22:11.262Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:22:11.270Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:22:11.271Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:22:11.278Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:22:11.280Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:22:11.287Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:22:11.288Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:22:11.295Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:22:11.296Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:11.928Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:11.931Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:11.946Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:11.949Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:11.959Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:11.961Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:11.969Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:11.970Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:11.979Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:11.981Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:23:21.039Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:21.041Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:21.095Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:21.097Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T15:23:21.131Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:23:21.295Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:21.296Z"} -{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T15:23:21.546Z"} -{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T15:23:21.547Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:23:21.667Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:21.669Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:21.674Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:21.679Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:23:21.708Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:21.709Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:21.730Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:21.731Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:23:21.762Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:21.764Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:21.784Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:21.786Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:23:21.807Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:21.808Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:21.828Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:21.829Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:23:21.851Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:21.852Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:21.874Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:21.875Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:23:21.896Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:21.897Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:21.918Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:21.919Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:23:21.940Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:21.942Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:21.961Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:21.963Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:23:21.984Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:21.986Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:22.007Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:22.008Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:22.051Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:22.052Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:22.083Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:22.084Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:22.113Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:22.114Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:22.143Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:22.145Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:22.173Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:22.175Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:22.203Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:22.206Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:22.235Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:22.236Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:22.281Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:22.282Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:22.323Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:22.325Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:22.366Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:22.367Z"} -{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-06T15:23:22.396Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:22.398Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:22.399Z"} -{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-06T15:23:23.041Z"} -{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-06T15:23:23.903Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T15:23:24.784Z"} -{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-06T15:23:24.784Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=A","timestamp":"2025-05-06T15:23:48.260Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=01","timestamp":"2025-05-06T15:23:50.272Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:51.934Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:51.936Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:51.981Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:51.983Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=011","timestamp":"2025-05-06T15:23:52.017Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:52.066Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:52.067Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:52.136Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:52.137Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:23:52.199Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:23:52.201Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:21.955Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:21.958Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:21.995Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:21.997Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:22.074Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:22.076Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:22.135Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:22.137Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:22.198Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:22.200Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:40.209Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.212Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:40.221Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.222Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:40.232Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.234Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:40.244Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:40.245Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.246Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:40.256Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.258Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:40.261Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:40.270Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.273Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:40.275Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.277Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:40.282Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.286Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:40.289Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.290Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:40.296Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.299Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:40.303Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.305Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:40.308Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.310Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:40.316Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.318Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:40.326Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.327Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:40.335Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.337Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:40.344Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.345Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:40.353Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.355Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:40.361Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.362Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:40.370Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.371Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:40.378Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.380Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:40.387Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.389Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:40.395Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:40.397Z"} -{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-06T15:24:41.739Z"} -{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-06T15:24:41.752Z"} -{"count":20,"level":"info","limit":30,"message":"Returning message history for user 1","offset":0,"timestamp":"2025-05-06T15:24:41.756Z","total":20} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:48.495Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.497Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:48.515Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.517Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:48.518Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.521Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:48.530Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.532Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:48.534Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.536Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:48.543Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.545Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:48.546Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.548Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:48.555Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.557Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:48.559Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.562Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:48.570Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.572Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:48.574Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.577Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:48.585Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.587Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:48.588Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.591Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:48.601Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:48.602Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.603Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.605Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:48.613Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.616Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:48.623Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.624Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:48.631Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.632Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:48.639Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.641Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:48.648Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.649Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:48.658Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.659Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:48.666Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.667Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:48.674Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.677Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:48.683Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:48.684Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:51.928Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:51.930Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:53.583Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.585Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:53.598Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:53.602Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.602Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.603Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:53.616Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.618Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:53.620Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.622Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:53.630Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.632Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:53.633Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.635Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:53.647Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.649Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:53.654Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.657Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:53.664Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.667Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:53.670Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.672Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:53.678Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.681Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:53.684Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.686Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T15:24:53.693Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.696Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:53.697Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.699Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:53.705Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.707Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:53.714Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.716Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:53.724Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.726Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:53.732Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.734Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:53.740Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.742Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:53.749Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.750Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:53.758Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.760Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:53.766Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.767Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:24:53.775Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:24:53.777Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T15:24:56.290Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:25:21.952Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:25:21.955Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:25:23.691Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:25:23.694Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:25:23.703Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:25:23.705Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:25:23.714Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:25:23.716Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:25:23.737Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:25:23.739Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:25:51.952Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:25:51.955Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:25:53.693Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:25:53.695Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:25:53.706Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:25:53.708Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:25:53.725Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:25:53.726Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:25:53.739Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:25:53.741Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:26:21.964Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:26:21.966Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:26:23.705Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:26:23.707Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:26:23.717Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:26:23.718Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:26:23.736Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:26:23.738Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:26:23.752Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:26:23.753Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:26:51.949Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:26:51.951Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:26:53.685Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:26:53.687Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:26:53.700Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:26:53.701Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:26:53.733Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:26:53.734Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:26:53.743Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:26:53.745Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:27:21.947Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:27:21.950Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:27:23.698Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:27:23.700Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:27:23.710Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:27:23.711Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:27:23.721Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:27:23.722Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:27:23.745Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:27:23.747Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:27:51.961Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:27:51.963Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:27:53.703Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:27:53.704Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:27:53.716Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:27:53.717Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:27:53.726Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:27:53.727Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:27:53.748Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:27:53.750Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:28:21.959Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:28:21.962Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:28:23.702Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:28:23.704Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:28:23.713Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:28:23.714Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:28:23.733Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:28:23.735Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:28:23.744Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:28:23.745Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:28:51.948Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:28:51.951Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:28:53.691Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:28:53.692Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:28:53.704Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:28:53.706Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:28:53.722Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:28:53.723Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:28:53.737Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:28:53.738Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:29:21.942Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:29:21.944Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:29:23.687Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:29:23.689Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:29:23.699Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:29:23.701Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T15:29:23.728Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:29:23.750Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:29:23.753Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:29:23.761Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:29:23.763Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:29:51.948Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:29:51.951Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:29:53.692Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:29:53.693Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:29:53.703Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:29:53.704Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:29:53.722Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:29:53.724Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:29:53.738Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:29:53.740Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:30:21.966Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:30:21.971Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:30:23.686Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:30:23.688Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:30:23.698Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:30:23.700Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:30:23.712Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:30:23.714Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:30:23.729Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:30:23.731Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:30:51.946Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:30:51.948Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:30:53.685Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:30:53.687Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:30:53.698Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:30:53.700Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:30:53.716Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:30:53.717Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:30:53.732Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:30:53.733Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:31:21.957Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:31:21.959Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:31:23.694Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:31:23.695Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:31:23.705Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:31:23.708Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:31:23.718Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:31:23.720Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:31:23.740Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:31:23.742Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:31:51.951Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:31:51.953Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:31:53.682Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:31:53.683Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:31:53.697Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:31:53.698Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:31:53.729Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:31:53.730Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:31:53.740Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:31:53.742Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:32:21.943Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:32:21.945Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:32:23.681Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:32:23.682Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:32:23.696Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:32:23.698Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:32:23.729Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:32:23.731Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:32:23.740Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:32:23.741Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:32:51.947Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:32:51.949Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:32:53.699Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:32:53.701Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:32:53.708Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:32:53.709Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:32:53.718Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:32:53.720Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:32:53.746Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:32:53.748Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:33:21.953Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:33:21.956Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:33:23.691Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:33:23.693Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:33:23.704Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:33:23.706Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:33:23.720Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:33:23.721Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:33:23.753Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:33:23.754Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:33:51.952Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:33:51.955Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:33:53.690Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:33:53.691Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:33:53.706Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:33:53.708Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:33:53.739Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:33:53.741Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:33:53.750Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:33:53.751Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:34:21.948Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:34:21.950Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:34:23.691Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:34:23.693Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:34:23.703Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:34:23.705Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:34:23.718Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:34:23.720Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:34:23.735Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:34:23.737Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:34:51.945Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:34:51.947Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:34:53.691Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:34:53.693Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:34:53.702Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:34:53.704Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:34:53.722Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:34:53.723Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:34:53.738Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:34:53.739Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:35:21.944Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:35:21.947Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:35:23.679Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:35:23.681Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:35:23.691Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:35:23.693Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:35:23.710Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:35:23.712Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:35:23.742Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:35:23.744Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:35:51.944Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:35:51.947Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:35:53.682Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:35:53.684Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:35:53.694Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:35:53.695Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:35:53.714Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:35:53.717Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:35:53.745Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:35:53.746Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:36:21.956Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:36:21.958Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:36:23.709Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:36:23.711Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:36:23.718Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:36:23.720Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:36:23.728Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:36:23.729Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:36:23.757Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:36:23.758Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:36:51.945Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:36:51.948Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:36:53.695Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:36:53.697Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:36:53.707Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:36:53.708Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:36:53.717Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:36:53.718Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:36:53.741Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:36:53.743Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:37:21.957Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:37:21.959Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:37:23.699Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:37:23.700Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:37:23.710Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:37:23.711Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:37:23.720Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:37:23.721Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:37:23.746Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:37:23.748Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:37:51.976Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:37:51.978Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:37:53.710Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:37:53.712Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:37:53.723Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:37:53.724Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:37:53.734Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:37:53.735Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:37:53.756Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:37:53.758Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:38:21.943Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:38:21.946Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:38:23.694Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:38:23.696Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:38:23.706Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:38:23.708Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:38:23.716Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:38:23.718Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:38:23.742Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:38:23.744Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:38:51.977Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:38:51.980Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:38:53.698Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:38:53.700Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:38:53.709Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:38:53.711Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:38:53.730Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:38:53.732Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:38:53.745Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:38:53.746Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:39:21.954Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:39:21.957Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:39:23.699Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:39:23.701Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:39:23.712Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:39:23.713Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:39:23.729Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:39:23.731Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:39:23.745Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:39:23.747Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:39:51.989Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:39:51.993Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:39:53.704Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:39:53.705Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:39:53.718Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:39:53.720Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:39:53.753Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:39:53.755Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:39:53.764Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:39:53.765Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:40:21.949Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:40:21.952Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:40:23.689Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:40:23.692Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:40:23.702Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:40:23.704Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:40:23.734Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:40:23.736Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:40:23.745Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:40:23.746Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:40:51.945Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:40:51.948Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:40:53.701Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:40:53.702Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:40:53.711Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:40:53.712Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:40:53.721Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:40:53.722Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:40:53.748Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:40:53.750Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:41:21.949Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:41:21.951Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:41:23.700Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:41:23.701Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:41:23.712Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:41:23.714Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:41:23.722Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:41:23.723Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:41:23.745Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:41:23.746Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:41:51.958Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:41:51.961Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:41:53.706Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:41:53.707Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:41:53.715Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:41:53.717Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:41:53.737Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:41:53.739Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:41:53.754Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:41:53.755Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:42:21.954Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:42:21.957Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:42:23.704Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:42:23.706Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:42:23.717Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:42:23.718Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:42:23.727Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:42:23.728Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:42:23.750Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:42:23.752Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:42:51.953Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:42:51.956Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:42:53.705Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:42:53.707Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:42:53.715Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:42:53.717Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:42:53.726Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:42:53.727Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:42:53.750Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:42:53.751Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:43:21.983Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:43:21.986Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:43:23.704Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:43:23.705Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:43:23.712Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:43:23.713Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:43:23.736Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:43:23.739Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:43:23.745Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:43:23.747Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:43:52.243Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:43:52.246Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:43:54.225Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:43:54.226Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:43:54.235Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:43:54.237Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:43:54.243Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:43:54.244Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:43:54.251Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:43:54.252Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:44:22.238Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:44:22.241Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:44:24.230Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:44:24.231Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:44:24.241Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:44:24.244Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:44:24.251Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:44:24.253Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:44:24.259Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:44:24.260Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:45:13.269Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:45:13.272Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:45:13.284Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:45:13.287Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:45:13.295Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:45:13.297Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:45:13.304Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:45:13.305Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:45:13.311Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:45:13.314Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:46:13.266Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:46:13.269Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:46:13.280Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:46:13.282Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:46:13.291Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:46:13.292Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:46:13.299Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:46:13.300Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:46:13.307Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:46:13.309Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:47:13.268Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:47:13.272Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:47:13.282Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:47:13.284Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:47:13.291Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:47:13.293Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:47:13.300Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:47:13.302Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:47:13.308Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:47:13.310Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:48:13.262Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:48:13.266Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:48:13.277Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:48:13.279Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:48:13.288Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:48:13.290Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:48:13.298Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:48:13.299Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:48:13.306Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:48:13.307Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:49:13.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:49:13.251Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:49:13.262Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:49:13.264Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:49:13.276Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:49:13.278Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:49:13.288Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:49:13.290Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:49:13.296Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:49:13.298Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:50:13.259Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:50:13.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:50:13.273Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:50:13.275Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:50:13.287Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:50:13.289Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:50:13.298Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:50:13.300Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:50:13.306Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:50:13.308Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:51:13.267Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:51:13.271Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:51:13.281Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:51:13.283Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:51:13.292Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:51:13.293Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:51:13.299Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:51:13.301Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:51:13.308Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:51:13.309Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:52:13.259Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:52:13.262Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:52:13.272Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:52:13.274Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:52:13.281Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:52:13.283Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:52:13.290Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:52:13.291Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:52:13.299Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:52:13.300Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:53:13.256Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:53:13.259Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:53:13.273Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:53:13.275Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:53:13.281Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:53:13.283Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:53:13.289Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:53:13.291Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:53:13.298Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:53:13.299Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:54:13.266Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:54:13.270Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:54:13.280Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:54:13.283Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:54:13.291Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:54:13.293Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:54:13.300Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:54:13.301Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:54:13.308Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:54:13.309Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:55:13.278Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:55:13.282Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:55:13.292Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:55:13.295Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:55:13.304Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:55:13.307Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:55:13.314Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:55:13.315Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:55:13.322Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:55:13.324Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:56:13.293Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:56:13.299Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:56:13.311Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:56:13.313Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:56:13.322Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:56:13.324Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:56:13.331Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:56:13.333Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:56:13.341Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:56:13.343Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:57:13.262Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:57:13.265Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:57:13.275Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:57:13.278Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:57:13.287Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:57:13.289Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:57:13.298Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:57:13.299Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:57:13.307Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:57:13.308Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:58:13.254Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:58:13.257Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:58:13.273Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:58:13.275Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:58:13.286Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:58:13.288Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:58:13.294Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:58:13.295Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:58:13.302Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:58:13.303Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:59:13.265Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:59:13.268Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:59:13.278Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:59:13.280Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:59:13.290Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:59:13.292Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:59:13.299Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:59:13.301Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T15:59:13.308Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T15:59:13.310Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:00:13.262Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:00:13.265Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:00:13.277Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:00:13.280Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:00:13.288Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:00:13.289Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:00:13.296Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:00:13.297Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:00:13.304Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:00:13.305Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:01:13.256Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:01:13.259Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:01:13.270Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:01:13.272Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:01:13.281Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:01:13.283Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:01:13.289Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:01:13.290Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:01:13.298Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:01:13.299Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:02:13.256Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:02:13.260Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:02:13.270Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:02:13.272Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:02:13.281Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:02:13.283Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:02:13.290Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:02:13.292Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:02:13.298Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:02:13.300Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:03:13.252Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:03:13.255Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:03:13.264Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:03:13.266Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:03:13.276Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:03:13.277Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:03:13.284Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:03:13.287Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:03:13.294Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:03:13.295Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:04:13.243Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:04:13.247Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:04:13.257Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:04:13.259Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:04:13.268Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:04:13.272Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:04:13.281Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:04:13.282Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:04:13.289Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:04:13.291Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:05:13.259Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:05:13.261Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:05:13.269Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:05:13.272Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:05:13.278Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:05:13.280Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:05:13.288Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:05:13.290Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:05:13.298Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:05:13.299Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:05:22.236Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:05:22.237Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:05:24.237Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:05:24.239Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:05:24.246Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:05:24.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:05:24.255Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:05:24.256Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:05:24.263Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:05:24.264Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:05:52.225Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:05:52.228Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:05:54.221Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:05:54.223Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:05:54.230Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:05:54.231Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:05:54.238Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:05:54.240Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:05:54.246Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:05:54.247Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:07:13.267Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:07:13.270Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:07:13.278Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:07:13.279Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:07:13.286Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:07:13.288Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:07:13.294Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:07:13.296Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:07:13.304Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:07:13.305Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:08:13.263Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:08:13.266Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:08:13.277Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:08:13.279Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:08:13.287Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:08:13.289Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:08:13.296Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:08:13.298Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:08:13.306Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:08:13.308Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:09:13.257Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:09:13.260Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:09:13.270Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:09:13.272Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:09:13.279Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:09:13.280Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:09:13.287Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:09:13.289Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:09:13.295Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:09:13.297Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:10:13.253Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:10:13.255Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:10:13.266Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:10:13.268Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:10:13.276Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:10:13.277Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:10:13.284Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:10:13.285Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:10:13.291Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:10:13.293Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:11:13.264Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:11:13.267Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:11:13.279Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:11:13.281Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:11:13.289Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:11:13.291Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:11:13.297Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:11:13.298Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:11:13.305Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:11:13.307Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:12:13.269Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:12:13.274Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:12:13.283Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:12:13.285Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:12:13.293Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:12:13.294Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:12:13.300Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:12:13.303Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:12:13.310Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:12:13.311Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:13:13.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:13:13.251Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:13:13.261Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:13:13.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:13:13.274Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:13:13.276Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:13:13.286Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:13:13.287Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:13:13.293Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:13:13.295Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:14:13.257Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:14:13.261Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:14:13.271Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:14:13.274Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:14:13.283Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:14:13.285Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:14:13.291Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:14:13.293Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:14:13.299Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:14:13.300Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:15:13.268Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:15:13.270Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:15:13.278Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:15:13.279Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:15:13.287Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:15:13.288Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:15:13.294Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:15:13.296Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:15:13.303Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:15:13.304Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:16:13.254Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:16:13.259Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:16:13.268Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:16:13.270Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:16:13.276Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:16:13.278Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:16:13.285Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:16:13.286Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:16:13.293Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:16:13.294Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:17:13.268Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:17:13.272Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:17:13.281Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:17:13.283Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:17:13.290Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:17:13.291Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:17:13.298Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:17:13.300Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:17:13.307Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:17:13.308Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:18:13.266Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:18:13.270Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:18:13.282Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:18:13.284Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:18:13.291Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:18:13.293Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:18:13.300Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:18:13.302Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:18:13.310Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:18:13.311Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:19:13.243Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:19:13.247Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:19:13.258Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:19:13.261Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:19:13.272Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:19:13.274Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:19:13.283Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:19:13.285Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:19:13.291Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:19:13.293Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:20:13.251Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:20:13.254Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:20:13.266Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:20:13.267Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:20:13.276Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:20:13.277Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:20:13.284Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:20:13.286Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:20:13.293Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:20:13.294Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:21:13.249Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:21:13.252Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:21:13.261Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:21:13.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:21:13.272Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:21:13.273Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:21:13.280Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:21:13.281Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:21:13.288Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:21:13.289Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:22:13.237Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:22:13.241Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:22:13.252Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:22:13.254Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:22:13.261Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:22:13.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:22:13.270Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:22:13.271Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:22:13.277Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:22:13.278Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:23:13.246Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:23:13.249Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:23:13.259Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:23:13.261Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:23:13.271Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:23:13.273Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:23:13.282Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:23:13.283Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:23:13.290Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:23:13.291Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:24:13.255Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:24:13.259Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:24:13.272Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:24:13.277Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:24:13.284Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:24:13.286Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:24:13.293Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:24:13.294Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:24:13.301Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:24:13.302Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:25:13.253Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:25:13.256Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:25:13.267Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:25:13.269Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:25:13.278Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:25:13.279Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:25:13.285Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:25:13.287Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:25:13.294Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:25:13.295Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:26:13.252Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:26:13.255Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:26:13.266Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:26:13.270Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:26:13.280Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:26:13.281Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:26:13.288Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:26:13.290Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:26:13.296Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:26:13.298Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:27:13.251Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:27:13.254Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:27:13.264Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:27:13.265Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:27:13.274Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:27:13.275Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:27:13.282Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:27:13.284Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:27:13.291Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:27:13.293Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:28:13.245Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:28:13.249Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:28:13.259Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:28:13.261Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:28:13.271Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:28:13.273Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:28:13.279Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:28:13.281Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:28:13.288Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:28:13.290Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:28:31.446Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:28:31.449Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:28:31.458Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:28:31.459Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:28:31.469Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:28:31.471Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:28:31.478Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:28:31.480Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:28:31.485Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:28:31.487Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T16:28:37.978Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:28:51.955Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:28:51.957Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:28:54.233Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:28:54.234Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:28:54.244Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:28:54.246Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:28:54.257Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:28:54.259Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:28:54.270Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:28:54.273Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:29:22.245Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:29:22.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:29:24.234Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:29:24.235Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:29:24.242Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:29:24.245Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:29:24.252Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:29:24.253Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:29:24.259Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:29:24.260Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:29:52.251Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:29:52.253Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:29:54.233Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:29:54.234Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:29:54.244Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:29:54.245Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:29:54.252Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:29:54.254Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:29:54.260Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:29:54.261Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:30:22.244Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:30:22.247Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:30:24.226Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:30:24.227Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:30:24.235Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:30:24.237Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:30:24.244Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:30:24.245Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:30:24.252Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:30:24.254Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:31:13.254Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:31:13.258Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:31:13.269Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:31:13.271Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:31:13.280Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:31:13.282Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:31:13.288Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:31:13.290Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:31:13.297Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:31:13.299Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:32:13.258Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:32:13.261Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:32:13.271Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:32:13.273Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:32:13.282Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:32:13.283Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:32:13.289Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:32:13.290Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:32:13.297Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:32:13.298Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:32:29.580Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:32:29.584Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:32:29.592Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:32:29.594Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:32:29.603Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:32:29.605Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:32:29.613Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:32:29.615Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:32:29.624Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:32:29.626Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:32:52.236Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:32:52.238Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:32:54.232Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:32:54.233Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:32:54.240Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:32:54.242Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:32:54.250Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:32:54.251Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:32:54.258Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:32:54.260Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:33:22.245Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:33:22.247Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:33:23.698Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:33:23.699Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:33:23.711Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:33:23.712Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:33:23.730Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:33:23.731Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:33:23.747Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:33:23.748Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:33:52.235Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:33:52.238Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:33:54.230Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:33:54.232Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:33:54.239Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:33:54.240Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:33:54.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:33:54.249Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:33:54.255Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:33:54.256Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T16:34:11.475Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:34:22.245Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:34:22.247Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:34:24.225Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:34:24.226Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:34:24.233Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:34:24.235Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:34:24.242Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:34:24.244Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:34:24.251Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:34:24.252Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:35:13.259Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:35:13.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:35:13.274Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:35:13.276Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:35:13.283Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:35:13.284Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:35:13.291Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:35:13.293Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:35:13.300Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:35:13.301Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:36:13.242Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:36:13.246Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:36:13.257Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:36:13.260Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:36:13.268Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:36:13.269Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:36:13.276Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:36:13.278Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:36:13.285Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:36:13.286Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:37:13.259Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:37:13.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:37:13.274Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:37:13.276Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:37:13.283Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:37:13.284Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:37:13.291Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:37:13.292Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:37:13.300Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:37:13.301Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:38:13.240Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:38:13.244Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:38:13.255Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:38:13.257Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:38:13.265Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:38:13.267Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:38:13.273Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:38:13.275Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:38:13.282Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:38:13.283Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T16:38:30.651Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:08.083Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:08.086Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:08.094Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:08.097Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:08.103Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:08.105Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:08.111Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:08.113Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:08.120Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:08.122Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:39:12.116Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.118Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.154Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.155Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T16:39:12.171Z"} -{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T16:39:12.189Z"} -{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T16:39:12.189Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:39:12.199Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.210Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:39:12.221Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.224Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.225Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.228Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:39:12.235Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.237Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.238Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.240Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:39:12.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.249Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.251Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:39:12.261Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.264Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.266Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:39:12.273Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.276Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.278Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.279Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:39:12.284Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.289Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.293Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.296Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:39:12.304Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.307Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.311Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.314Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:39:12.327Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.329Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.331Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.333Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.340Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.342Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.348Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.349Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.358Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.359Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.365Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.366Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.374Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.375Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.382Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.383Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.390Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.391Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.398Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.399Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.405Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.408Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.414Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.415Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:12.422Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:12.423Z"} -{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-06T16:39:14.082Z"} -{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-06T16:39:15.809Z"} -{"level":"error","message":"Provider for arbitrum is not available: ","timestamp":"2025-05-06T16:39:15.891Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:39:17.824Z"} -{"arbitrum":"0","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-06T16:39:17.824Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T16:39:22.616Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T16:39:22.791Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T16:39:22.982Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T16:39:24.532Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T16:39:24.706Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T16:39:25.451Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:42.320Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:42.322Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:42.332Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:42.333Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:42.353Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:42.354Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:42.362Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:42.364Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:39:42.385Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:39:42.386Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:40:13.245Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:40:13.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:40:13.260Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:40:13.262Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:40:13.272Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:40:13.274Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:40:13.281Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:40:13.284Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:40:13.291Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:40:13.293Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:40:43.241Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:40:43.243Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:40:43.251Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:40:43.252Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:40:43.260Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:40:43.261Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:40:43.269Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:40:43.270Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:40:43.281Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:40:43.283Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:41:13.256Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:41:13.260Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:41:13.272Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:41:13.274Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:41:13.282Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:41:13.283Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:41:13.292Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:41:13.294Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:41:13.301Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:41:13.303Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:42:13.249Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:42:13.252Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:42:13.263Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:42:13.267Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:42:13.277Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:42:13.279Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:42:13.287Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:42:13.289Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:42:13.298Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:42:13.301Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:43:13.252Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:43:13.262Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:43:13.273Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:43:13.276Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:43:13.286Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:43:13.288Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:43:13.297Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:43:13.299Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:43:13.309Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:43:13.311Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:44:13.276Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:44:13.296Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:44:13.313Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:44:13.318Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:44:13.330Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:44:13.333Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:44:13.342Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:44:13.345Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:44:13.354Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:44:13.357Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T16:44:24.647Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:45:13.253Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:45:13.259Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:45:13.275Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:45:13.278Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:45:13.288Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:45:13.290Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:45:13.301Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:45:13.303Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:45:13.312Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:45:13.316Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:46:13.246Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:46:13.249Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:46:13.262Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:46:13.264Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:46:13.275Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:46:13.277Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:46:13.287Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:46:13.289Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:46:13.296Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:46:13.298Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:47:13.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:47:13.251Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:47:13.265Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:47:13.272Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:47:13.280Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:47:13.282Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:47:13.290Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:47:13.293Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:47:13.301Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:47:13.303Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:13.258Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:13.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:13.276Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:13.278Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:13.285Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:13.287Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:13.295Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:13.297Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:13.305Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:13.306Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:42.325Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:42.331Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:42.344Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:42.347Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:42.356Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:42.360Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:42.369Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:42.372Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:42.385Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:42.387Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:48:45.052Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.055Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.083Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.086Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T16:48:45.109Z"} -{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T16:48:45.133Z"} -{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T16:48:45.135Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:48:45.147Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.149Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:48:45.161Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.163Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.166Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.168Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:48:45.174Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.176Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.180Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.183Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:48:45.189Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.193Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.196Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.199Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:48:45.205Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.209Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.213Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.215Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:48:45.224Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.228Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.229Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.230Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:48:45.244Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.246Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.248Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.249Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.259Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:48:45.262Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.263Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.265Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.273Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.276Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:48:45.277Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.279Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.285Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.287Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.296Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.298Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.305Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.307Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.314Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.316Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.324Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.326Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.334Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.336Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.343Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.345Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.352Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.354Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.361Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.362Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.369Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.371Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:48:45.378Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:48:45.380Z"} -{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-06T16:48:46.034Z"} -{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-06T16:48:47.708Z"} -{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-06T16:48:48.589Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:48:50.487Z"} -{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-06T16:48:50.487Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:49:16.236Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:49:16.239Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:49:16.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:49:16.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:49:16.256Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:49:16.258Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:49:16.266Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:49:16.268Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:49:16.276Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:49:16.278Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:49:46.245Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:49:46.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:49:46.256Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:49:46.258Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:49:46.266Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:49:46.268Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:49:46.275Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:49:46.277Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:49:46.285Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:49:46.286Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:50:16.235Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:50:16.238Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:50:16.249Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:50:16.250Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:50:16.258Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:50:16.259Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:50:16.268Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:50:16.269Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:50:16.277Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:50:16.279Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:50:46.233Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:50:46.235Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:50:46.245Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:50:46.247Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:50:46.254Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:50:46.256Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:50:46.264Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:50:46.266Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:50:46.273Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:50:46.275Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:51:31.724Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:51:31.728Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:51:31.736Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:51:31.738Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:51:31.747Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:51:31.749Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:51:31.758Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:51:31.759Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:51:31.766Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:51:31.768Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:51:45.265Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:51:45.277Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:51:45.297Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:51:45.318Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:51:45.344Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:51:49.706Z"} -{"cookie":{"expires":"2025-06-05T16:51:45.267Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"7f0efb9149d70249fabeb4a3016e4e76","level":"info","message":"[SessionService] Saving session data:","timestamp":"2025-05-06T16:51:49.707Z"} -{"level":"info","message":"Session saved successfully","timestamp":"2025-05-06T16:51:49.711Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:51:49.725Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:51:49.744Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:51:49.761Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:51:49.773Z"} -{"level":"info","message":"GET /api/auth/nonce?address=0x15A4ed4759e5762174b300a4Cf51cc17ad967f4d","timestamp":"2025-05-06T16:51:55.466Z"} -{"level":"info","message":"Nonce d7040378f28ab5cdffe6d6206615f083 сохранен для адреса 0x15A4ed4759e5762174b300a4Cf51cc17ad967f4d","timestamp":"2025-05-06T16:51:55.477Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:52:46.127Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:52:46.142Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:52:46.155Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:52:46.173Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:52:46.186Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:52:56.160Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:52:56.205Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:52:56.218Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:52:56.230Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:52:56.242Z"} -{"level":"info","message":"GET /api/auth/nonce?address=0x15A4ed4759e5762174b300a4Cf51cc17ad967f4d","timestamp":"2025-05-06T16:53:09.755Z"} -{"level":"info","message":"Nonce 9923e4c116dc0b52d593bf60f0afcbd2 сохранен для адреса 0x15A4ed4759e5762174b300a4Cf51cc17ad967f4d","timestamp":"2025-05-06T16:53:09.759Z"} -{"level":"info","message":"POST /api/auth/verify","timestamp":"2025-05-06T16:53:23.364Z"} -{"level":"info","message":"[verify] Verifying signature for address: 0x15A4ed4759e5762174b300a4Cf51cc17ad967f4d","timestamp":"2025-05-06T16:53:23.365Z"} -{"level":"info","message":"Checking admin role for address: 0x15a4ed4759e5762174b300a4cf51cc17ad967f4d","timestamp":"2025-05-06T16:53:23.447Z"} -{"address":"0x15a4ed4759e5762174b300a4cf51cc17ad967f4d","balance":"0.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","hasTokens":false,"level":"info","message":"Token balance on bsc:","timestamp":"2025-05-06T16:53:24.229Z"} -{"address":"0x15a4ed4759e5762174b300a4cf51cc17ad967f4d","balance":"0.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","hasTokens":false,"level":"info","message":"Token balance on eth:","timestamp":"2025-05-06T16:53:24.320Z"} -{"address":"0x15a4ed4759e5762174b300a4cf51cc17ad967f4d","balance":"0.0","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","hasTokens":false,"level":"info","message":"Token balance on arbitrum:","timestamp":"2025-05-06T16:53:24.381Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:53:25.301Z"} -{"level":"info","message":"Admin role denied - no tokens found for 0x15a4ed4759e5762174b300a4cf51cc17ad967f4d","timestamp":"2025-05-06T16:53:25.301Z"} -{"level":"info","message":"[verify] Found or created user 2 for wallet 0x15a4ed4759e5762174b300a4cf51cc17ad967f4d","timestamp":"2025-05-06T16:53:25.302Z"} -{"level":"info","message":"[IdentityService] Converting guest identity for user 2 to guest_user_mapping: 7f0efb9149d70249fabeb4a3016e4e76","timestamp":"2025-05-06T16:53:25.302Z"} -{"level":"info","message":"Checking admin tokens for address: 0x15a4ed4759e5762174b300a4cf51cc17ad967f4d","timestamp":"2025-05-06T16:53:25.318Z"} -{"level":"info","message":"Checking admin role for address: 0x15a4ed4759e5762174b300a4cf51cc17ad967f4d","timestamp":"2025-05-06T16:53:25.318Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:53:25.491Z"} -{"address":"0x15a4ed4759e5762174b300a4cf51cc17ad967f4d","balance":"0.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","hasTokens":false,"level":"info","message":"Token balance on bsc:","timestamp":"2025-05-06T16:53:25.560Z"} -{"address":"0x15a4ed4759e5762174b300a4cf51cc17ad967f4d","balance":"0.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","hasTokens":false,"level":"info","message":"Token balance on eth:","timestamp":"2025-05-06T16:53:25.705Z"} -{"address":"0x15a4ed4759e5762174b300a4cf51cc17ad967f4d","balance":"0.0","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","hasTokens":false,"level":"info","message":"Token balance on arbitrum:","timestamp":"2025-05-06T16:53:25.882Z"} -{"level":"info","message":"Admin role denied - no tokens found for 0x15a4ed4759e5762174b300a4cf51cc17ad967f4d","timestamp":"2025-05-06T16:53:25.882Z"} -{"address":"0x15a4ed4759e5762174b300a4cf51cc17ad967f4d","authType":"wallet","authenticated":true,"cookie":{"expires":"2025-06-05T16:51:45.267Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"7f0efb9149d70249fabeb4a3016e4e76","isAdmin":false,"level":"info","message":"[SessionService] Saving session data:","timestamp":"2025-05-06T16:53:25.884Z","userId":2} -{"level":"info","message":"Session saved successfully","timestamp":"2025-05-06T16:53:25.887Z"} -{"level":"info","message":"[linkGuestMessages] Starting for user 2 with guestId=7f0efb9149d70249fabeb4a3016e4e76, previousGuestId=undefined","timestamp":"2025-05-06T16:53:25.888Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=2, guestId=7f0efb9149d70249fabeb4a3016e4e76","timestamp":"2025-05-06T16:53:25.893Z"} -{"level":"info","message":"Processing guest messages for user 2 with guest ID 7f0efb9149d70249fabeb4a3016e4e76","timestamp":"2025-05-06T16:53:25.894Z"} -{"level":"info","message":"No guest messages found for guest ID 7f0efb9149d70249fabeb4a3016e4e76","timestamp":"2025-05-06T16:53:25.900Z"} -{"level":"info","message":"Marked guest mapping as processed (no messages found) for guest ID 7f0efb9149d70249fabeb4a3016e4e76","timestamp":"2025-05-06T16:53:25.904Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=2, guestId=591841eb778f771b209c3f4d696bbfaf","timestamp":"2025-05-06T16:53:25.906Z"} -{"level":"info","message":"Processing guest messages for user 2 with guest ID 591841eb778f771b209c3f4d696bbfaf","timestamp":"2025-05-06T16:53:25.906Z"} -{"level":"info","message":"Guest messages for guest ID 591841eb778f771b209c3f4d696bbfaf were already processed.","timestamp":"2025-05-06T16:53:25.907Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=2, guestId=1746057165606-0pely0lk1","timestamp":"2025-05-06T16:53:25.910Z"} -{"level":"info","message":"Processing guest messages for user 2 with guest ID 1746057165606-0pely0lk1","timestamp":"2025-05-06T16:53:25.911Z"} -{"level":"info","message":"Guest messages for guest ID 1746057165606-0pely0lk1 were already processed.","timestamp":"2025-05-06T16:53:25.912Z"} -{"address":"0x15a4ed4759e5762174b300a4cf51cc17ad967f4d","authType":"wallet","authenticated":true,"cookie":{"expires":"2025-06-05T16:51:45.267Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"7f0efb9149d70249fabeb4a3016e4e76","isAdmin":false,"level":"info","message":"[SessionService] Saving session data:","processedGuestIds":["7f0efb9149d70249fabeb4a3016e4e76","591841eb778f771b209c3f4d696bbfaf","1746057165606-0pely0lk1"],"timestamp":"2025-05-06T16:53:25.914Z","userId":2} -{"level":"info","message":"Session saved successfully","timestamp":"2025-05-06T16:53:25.917Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:53:26.029Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:26.030Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:26.040Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:26.042Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:53:26.052Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:26.053Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:26.064Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:26.066Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:26.080Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:26.082Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:26.091Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:26.093Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:53:26.104Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:26.106Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:26.119Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:26.121Z"} -{"level":"info","message":"GET /api/tokens/balances?address=0x15a4ed4759e5762174b300a4cf51cc17ad967f4d","timestamp":"2025-05-06T16:53:26.134Z"} -{"level":"info","message":"Fetching token balances for address: 0x15a4ed4759e5762174b300a4cf51cc17ad967f4d","timestamp":"2025-05-06T16:53:26.135Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:53:26.150Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:26.153Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:26.163Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:26.165Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:26.174Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:26.176Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:26.185Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:26.186Z"} -{"balance":"0.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0x15a4ed4759e5762174b300a4cf51cc17ad967f4d on eth:","timestamp":"2025-05-06T16:53:26.519Z"} -{"balance":"0.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0x15a4ed4759e5762174b300a4cf51cc17ad967f4d on bsc:","timestamp":"2025-05-06T16:53:26.762Z"} -{"balance":"0.0","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0x15a4ed4759e5762174b300a4cf51cc17ad967f4d on arbitrum:","timestamp":"2025-05-06T16:53:27.365Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:53:27.539Z"} -{"arbitrum":"0.0","bsc":"0.0","eth":"0.0","level":"info","message":"Token balances fetched for 0x15a4ed4759e5762174b300a4cf51cc17ad967f4d:","polygon":"0","timestamp":"2025-05-06T16:53:27.540Z"} -{"level":"info","message":"GET /api/tokens/balances?address=0x15a4ed4759e5762174b300a4cf51cc17ad967f4d","timestamp":"2025-05-06T16:53:27.548Z"} -{"level":"info","message":"Fetching token balances for address: 0x15a4ed4759e5762174b300a4cf51cc17ad967f4d","timestamp":"2025-05-06T16:53:27.550Z"} -{"balance":"0.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0x15a4ed4759e5762174b300a4cf51cc17ad967f4d on eth:","timestamp":"2025-05-06T16:53:27.933Z"} -{"balance":"0.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0x15a4ed4759e5762174b300a4cf51cc17ad967f4d on bsc:","timestamp":"2025-05-06T16:53:28.177Z"} -{"balance":"0.0","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0x15a4ed4759e5762174b300a4cf51cc17ad967f4d on arbitrum:","timestamp":"2025-05-06T16:53:28.736Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:53:28.910Z"} -{"arbitrum":"0.0","bsc":"0.0","eth":"0.0","level":"info","message":"Token balances fetched for 0x15a4ed4759e5762174b300a4cf51cc17ad967f4d:","polygon":"0","timestamp":"2025-05-06T16:53:28.910Z"} -{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-06T16:53:30.575Z"} -{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-06T16:53:30.591Z"} -{"count":8,"level":"info","limit":30,"message":"Returning message history for user 2","offset":0,"timestamp":"2025-05-06T16:53:30.595Z","total":8} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:53:39.902Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:39.904Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:53:39.914Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:39.916Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:53:39.926Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:39.927Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:53:39.937Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:39.941Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:39.943Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:39.947Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:39.956Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:39.959Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:53:39.962Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:39.964Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:39.971Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:39.973Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:53:39.977Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:39.980Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:39.985Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:39.987Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:53:39.994Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:39.998Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:40.002Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:40.004Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:53:40.010Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:40.013Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:40.014Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:40.016Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:40.024Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:40.025Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:40.034Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:40.036Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:40.042Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:40.044Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:40.052Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:40.053Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:40.061Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:40.063Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:40.071Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:40.072Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:40.080Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:40.082Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:40.089Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:40.090Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:40.098Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:40.100Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:40.107Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:40.108Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T16:53:46.131Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:53:56.206Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:53:56.209Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:10.037Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:10.039Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:10.048Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:10.049Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:10.056Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:10.058Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:10.065Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:10.066Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:26.187Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:26.189Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:40.030Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:40.033Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:40.042Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:40.043Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:40.050Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:40.051Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:40.058Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:40.060Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:41.903Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:41.904Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:41.916Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:41.919Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:41.930Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:41.931Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:41.939Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:41.941Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:41.942Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:41.944Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:41.952Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:41.955Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:41.957Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:41.959Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:41.964Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:41.967Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:41.971Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:41.974Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:41.977Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:41.980Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:41.986Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:41.988Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:41.992Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:41.993Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:41.999Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:42.001Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:42.004Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:42.007Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:42.015Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:42.017Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:42.024Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:42.025Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:42.032Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:42.033Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:42.040Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:42.042Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:42.049Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:42.051Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:42.059Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:42.061Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:42.068Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:42.069Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:42.077Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:42.078Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:42.085Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:42.086Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:42.093Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:42.095Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:44.543Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.544Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:44.554Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.555Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:44.556Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.558Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:44.564Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.565Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:44.567Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.570Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:44.579Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.580Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:44.581Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.583Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:44.590Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.592Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:44.593Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.595Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:44.602Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.605Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:44.606Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.609Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:44.616Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.618Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:44.619Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.621Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:44.629Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:44.631Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.631Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.632Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:44.640Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.642Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:44.649Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.652Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:44.660Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.661Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:44.669Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.671Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:44.678Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.679Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:44.688Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.689Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:44.696Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.698Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:44.705Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.707Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:44.713Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:44.715Z"} -{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-06T16:54:46.070Z"} -{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-06T16:54:46.081Z"} -{"count":8,"level":"info","limit":30,"message":"Returning message history for user 2","offset":0,"timestamp":"2025-05-06T16:54:46.085Z","total":8} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:46.222Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.224Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:46.233Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.235Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:46.237Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.238Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:46.247Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:46.249Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.250Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.251Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:46.259Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.261Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:46.262Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.263Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:46.271Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.273Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:46.274Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.276Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:46.283Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.286Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:46.287Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.289Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:46.295Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.297Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:46.299Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.302Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:46.310Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:46.311Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.313Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.313Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:46.321Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.322Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:46.330Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.331Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:46.338Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.339Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:46.346Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.347Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:46.354Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.355Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:46.361Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.363Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:46.371Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.372Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:46.379Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.380Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:46.387Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:46.388Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:47.902Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:47.903Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:47.912Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:47.915Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:47.917Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:47.920Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:47.929Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:47.930Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:47.932Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:47.934Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:47.941Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:47.943Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:47.944Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:47.946Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:47.955Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:47.957Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:47.958Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:47.960Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:47.967Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:47.969Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:47.970Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:47.973Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:47.981Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:47.983Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:47.985Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:47.987Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:54:47.994Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:47.995Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:47.996Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:47.997Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:48.005Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:48.006Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:48.012Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:48.014Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:48.021Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:48.022Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:48.029Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:48.030Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:48.037Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:48.038Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:48.045Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:48.046Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:48.053Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:48.055Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:48.061Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:48.063Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:48.070Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:48.072Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T16:54:52.526Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:54:56.197Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 2","timestamp":"2025-05-06T16:54:56.198Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T16:54:57.242Z"} -{"level":"info","message":"POST /api/auth/logout","timestamp":"2025-05-06T16:55:14.059Z"} -{"address":null,"authType":null,"authenticated":false,"cookie":{"expires":"2025-06-05T16:51:45.267Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"email":null,"guestId":null,"isAdmin":false,"level":"info","message":"[SessionService] Saving session data:","pendingEmail":null,"previousGuestId":null,"processedGuestIds":[],"telegramId":null,"timestamp":"2025-05-06T16:55:14.059Z","userId":null} -{"level":"info","message":"Session saved successfully","timestamp":"2025-05-06T16:55:14.062Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:55:14.073Z"} -{"cookie":{"expires":"2025-06-05T16:55:14.072Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"f76c4b9a764e2d6b8c59fd19687812ff","level":"info","message":"[SessionService] Saving session data:","timestamp":"2025-05-06T16:55:14.074Z"} -{"level":"info","message":"Session saved successfully","timestamp":"2025-05-06T16:55:14.078Z"} -{"level":"info","message":"GET /api/auth/nonce?address=0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-05-06T16:55:16.053Z"} -{"level":"info","message":"Nonce 6dcbea75b30fe9e85203ca814b5f2940 сохранен для адреса 0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-05-06T16:55:16.060Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:55:17.989Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:55:18.000Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:55:18.030Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:55:18.413Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:55:18.428Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:55:18.439Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:55:18.448Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:55:18.461Z"} -{"level":"info","message":"GET /api/auth/nonce?address=0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-05-06T16:55:54.870Z"} -{"level":"info","message":"Nonce be46d34cdc0793c85d08361048325aa5 сохранен для адреса 0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-05-06T16:55:54.875Z"} -{"level":"info","message":"POST /api/auth/verify","timestamp":"2025-05-06T16:55:57.405Z"} -{"level":"info","message":"[verify] Verifying signature for address: 0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-05-06T16:55:57.405Z"} -{"level":"info","message":"Checking admin role for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T16:55:57.416Z"} -{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","hasTokens":true,"level":"info","message":"Token balance on bsc:","timestamp":"2025-05-06T16:55:59.180Z"} -{"level":"info","message":"Found admin tokens on bsc","timestamp":"2025-05-06T16:55:59.181Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:55:59.199Z"} -{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","hasTokens":true,"level":"info","message":"Token balance on eth:","timestamp":"2025-05-06T16:55:59.226Z"} -{"level":"info","message":"Found admin tokens on eth","timestamp":"2025-05-06T16:55:59.227Z"} -{"level":"error","message":"Provider for arbitrum is not available: ","timestamp":"2025-05-06T16:55:59.573Z"} -{"balances":{"arbitrum":"Error: Network unavailable","bsc":"500000.0","eth":"1500000.0","polygon":"Error: Network unavailable"},"level":"info","message":"Admin role summary for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","networks":["bsc","eth"],"timestamp":"2025-05-06T16:55:59.573Z"} -{"level":"info","message":"Admin role granted for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T16:55:59.574Z"} -{"level":"info","message":"[verify] Found or created user 1 for wallet 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T16:55:59.574Z"} -{"level":"info","message":"[IdentityService] Converting guest identity for user 1 to guest_user_mapping: f76c4b9a764e2d6b8c59fd19687812ff","timestamp":"2025-05-06T16:55:59.574Z"} -{"level":"info","message":"Checking admin tokens for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T16:55:59.578Z"} -{"level":"info","message":"Checking admin role for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T16:55:59.578Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:55:59.753Z"} -{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","hasTokens":true,"level":"info","message":"Token balance on bsc:","timestamp":"2025-05-06T16:55:59.798Z"} -{"level":"info","message":"Found admin tokens on bsc","timestamp":"2025-05-06T16:55:59.798Z"} -{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","hasTokens":true,"level":"info","message":"Token balance on eth:","timestamp":"2025-05-06T16:55:59.942Z"} -{"level":"info","message":"Found admin tokens on eth","timestamp":"2025-05-06T16:55:59.943Z"} -{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","hasTokens":true,"level":"info","message":"Token balance on arbitrum:","timestamp":"2025-05-06T16:56:00.381Z"} -{"level":"info","message":"Found admin tokens on arbitrum","timestamp":"2025-05-06T16:56:00.381Z"} -{"balances":{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","polygon":"Error: Network unavailable"},"level":"info","message":"Admin role summary for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","networks":["bsc","eth","arbitrum"],"timestamp":"2025-05-06T16:56:00.381Z"} -{"level":"info","message":"Admin role granted for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T16:56:00.382Z"} -{"level":"info","message":"Updated user 1 role to admin based on token holdings","timestamp":"2025-05-06T16:56:00.386Z"} -{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","authType":"wallet","authenticated":true,"cookie":{"expires":"2025-06-05T16:55:14.072Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"f76c4b9a764e2d6b8c59fd19687812ff","isAdmin":true,"level":"info","message":"[SessionService] Saving session data:","timestamp":"2025-05-06T16:56:00.398Z","userId":1} -{"level":"info","message":"Session saved successfully","timestamp":"2025-05-06T16:56:00.400Z"} -{"level":"info","message":"[linkGuestMessages] Starting for user 1 with guestId=f76c4b9a764e2d6b8c59fd19687812ff, previousGuestId=undefined","timestamp":"2025-05-06T16:56:00.401Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=f76c4b9a764e2d6b8c59fd19687812ff","timestamp":"2025-05-06T16:56:00.405Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID f76c4b9a764e2d6b8c59fd19687812ff","timestamp":"2025-05-06T16:56:00.405Z"} -{"level":"info","message":"No guest messages found for guest ID f76c4b9a764e2d6b8c59fd19687812ff","timestamp":"2025-05-06T16:56:00.409Z"} -{"level":"info","message":"Marked guest mapping as processed (no messages found) for guest ID f76c4b9a764e2d6b8c59fd19687812ff","timestamp":"2025-05-06T16:56:00.412Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=c4378cb2eaec94d5e68835cd6a95f334","timestamp":"2025-05-06T16:56:00.414Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID c4378cb2eaec94d5e68835cd6a95f334","timestamp":"2025-05-06T16:56:00.414Z"} -{"level":"info","message":"Guest messages for guest ID c4378cb2eaec94d5e68835cd6a95f334 were already processed.","timestamp":"2025-05-06T16:56:00.415Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=5e9687d8aa37392dbcc6502eaa8777f5","timestamp":"2025-05-06T16:56:00.417Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 5e9687d8aa37392dbcc6502eaa8777f5","timestamp":"2025-05-06T16:56:00.418Z"} -{"level":"info","message":"Guest messages for guest ID 5e9687d8aa37392dbcc6502eaa8777f5 were already processed.","timestamp":"2025-05-06T16:56:00.419Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=d8eb7603a4d012cc0077750dfe895d4f","timestamp":"2025-05-06T16:56:00.421Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID d8eb7603a4d012cc0077750dfe895d4f","timestamp":"2025-05-06T16:56:00.422Z"} -{"level":"info","message":"Guest messages for guest ID d8eb7603a4d012cc0077750dfe895d4f were already processed.","timestamp":"2025-05-06T16:56:00.424Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=8af4660b9c469159e7e6a3a96fc3e887","timestamp":"2025-05-06T16:56:00.426Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 8af4660b9c469159e7e6a3a96fc3e887","timestamp":"2025-05-06T16:56:00.426Z"} -{"level":"info","message":"Guest messages for guest ID 8af4660b9c469159e7e6a3a96fc3e887 were already processed.","timestamp":"2025-05-06T16:56:00.428Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=2a11b17d8e84aa6bc1f11695c69c7797","timestamp":"2025-05-06T16:56:00.430Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 2a11b17d8e84aa6bc1f11695c69c7797","timestamp":"2025-05-06T16:56:00.430Z"} -{"level":"info","message":"Guest messages for guest ID 2a11b17d8e84aa6bc1f11695c69c7797 were already processed.","timestamp":"2025-05-06T16:56:00.432Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=8b5d6a6fab3d07cbc262c7a27c40007f","timestamp":"2025-05-06T16:56:00.434Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 8b5d6a6fab3d07cbc262c7a27c40007f","timestamp":"2025-05-06T16:56:00.435Z"} -{"level":"info","message":"Guest messages for guest ID 8b5d6a6fab3d07cbc262c7a27c40007f were already processed.","timestamp":"2025-05-06T16:56:00.436Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746048025646-a9cve1ac8","timestamp":"2025-05-06T16:56:00.439Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746048025646-a9cve1ac8","timestamp":"2025-05-06T16:56:00.439Z"} -{"level":"info","message":"Guest messages for guest ID 1746048025646-a9cve1ac8 were already processed.","timestamp":"2025-05-06T16:56:00.440Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=758c5501236dd51c907b8035b014561e","timestamp":"2025-05-06T16:56:00.443Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 758c5501236dd51c907b8035b014561e","timestamp":"2025-05-06T16:56:00.443Z"} -{"level":"info","message":"Guest messages for guest ID 758c5501236dd51c907b8035b014561e were already processed.","timestamp":"2025-05-06T16:56:00.444Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=19fae7d5baa3b5217a8bb3d96c9cbf82","timestamp":"2025-05-06T16:56:00.446Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 19fae7d5baa3b5217a8bb3d96c9cbf82","timestamp":"2025-05-06T16:56:00.447Z"} -{"level":"info","message":"Guest messages for guest ID 19fae7d5baa3b5217a8bb3d96c9cbf82 were already processed.","timestamp":"2025-05-06T16:56:00.448Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=f3b209b70545a9a0aa1a4f94a0238785","timestamp":"2025-05-06T16:56:00.450Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID f3b209b70545a9a0aa1a4f94a0238785","timestamp":"2025-05-06T16:56:00.450Z"} -{"level":"info","message":"Guest messages for guest ID f3b209b70545a9a0aa1a4f94a0238785 were already processed.","timestamp":"2025-05-06T16:56:00.451Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=bf3fdb217687be2bdd5d0baaa18e2665","timestamp":"2025-05-06T16:56:00.453Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID bf3fdb217687be2bdd5d0baaa18e2665","timestamp":"2025-05-06T16:56:00.453Z"} -{"level":"info","message":"Guest messages for guest ID bf3fdb217687be2bdd5d0baaa18e2665 were already processed.","timestamp":"2025-05-06T16:56:00.455Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=23fb4de594179339d2b6f27be5891a96","timestamp":"2025-05-06T16:56:00.457Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 23fb4de594179339d2b6f27be5891a96","timestamp":"2025-05-06T16:56:00.457Z"} -{"level":"info","message":"Guest messages for guest ID 23fb4de594179339d2b6f27be5891a96 were already processed.","timestamp":"2025-05-06T16:56:00.458Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=6c8674af64c3c38b58bbf61b065d738e","timestamp":"2025-05-06T16:56:00.460Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 6c8674af64c3c38b58bbf61b065d738e","timestamp":"2025-05-06T16:56:00.461Z"} -{"level":"info","message":"Guest messages for guest ID 6c8674af64c3c38b58bbf61b065d738e were already processed.","timestamp":"2025-05-06T16:56:00.462Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=4ce93dd87f076a6bdcdfd373737d79f9","timestamp":"2025-05-06T16:56:00.464Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 4ce93dd87f076a6bdcdfd373737d79f9","timestamp":"2025-05-06T16:56:00.464Z"} -{"level":"info","message":"Guest messages for guest ID 4ce93dd87f076a6bdcdfd373737d79f9 were already processed.","timestamp":"2025-05-06T16:56:00.466Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0541b3cad5c9eaf088709e380d62d72e","timestamp":"2025-05-06T16:56:00.468Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 0541b3cad5c9eaf088709e380d62d72e","timestamp":"2025-05-06T16:56:00.468Z"} -{"level":"info","message":"Guest messages for guest ID 0541b3cad5c9eaf088709e380d62d72e were already processed.","timestamp":"2025-05-06T16:56:00.470Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=434910a20e533ca13211a6e5338f13f7","timestamp":"2025-05-06T16:56:00.472Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 434910a20e533ca13211a6e5338f13f7","timestamp":"2025-05-06T16:56:00.472Z"} -{"level":"info","message":"Guest messages for guest ID 434910a20e533ca13211a6e5338f13f7 were already processed.","timestamp":"2025-05-06T16:56:00.473Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=806b063766ddc43e8fc0b822c032472d","timestamp":"2025-05-06T16:56:00.475Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 806b063766ddc43e8fc0b822c032472d","timestamp":"2025-05-06T16:56:00.475Z"} -{"level":"info","message":"Guest messages for guest ID 806b063766ddc43e8fc0b822c032472d were already processed.","timestamp":"2025-05-06T16:56:00.477Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=7dcd8237d8bb9b8344a16748851aaa1d","timestamp":"2025-05-06T16:56:00.479Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 7dcd8237d8bb9b8344a16748851aaa1d","timestamp":"2025-05-06T16:56:00.480Z"} -{"level":"info","message":"Guest messages for guest ID 7dcd8237d8bb9b8344a16748851aaa1d were already processed.","timestamp":"2025-05-06T16:56:00.481Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=72b3851bc1e64d63c499e6b534c2f685","timestamp":"2025-05-06T16:56:00.484Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 72b3851bc1e64d63c499e6b534c2f685","timestamp":"2025-05-06T16:56:00.484Z"} -{"level":"info","message":"Guest messages for guest ID 72b3851bc1e64d63c499e6b534c2f685 were already processed.","timestamp":"2025-05-06T16:56:00.485Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=71aa676b5148fcf70266f62033ac07ce","timestamp":"2025-05-06T16:56:00.487Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 71aa676b5148fcf70266f62033ac07ce","timestamp":"2025-05-06T16:56:00.487Z"} -{"level":"info","message":"Guest messages for guest ID 71aa676b5148fcf70266f62033ac07ce were already processed.","timestamp":"2025-05-06T16:56:00.488Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=7fd62b29aad08c99e38fe96abb70158f","timestamp":"2025-05-06T16:56:00.491Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 7fd62b29aad08c99e38fe96abb70158f","timestamp":"2025-05-06T16:56:00.491Z"} -{"level":"info","message":"Guest messages for guest ID 7fd62b29aad08c99e38fe96abb70158f were already processed.","timestamp":"2025-05-06T16:56:00.492Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=dbd03ab1af02855698333b2c8916ec3f","timestamp":"2025-05-06T16:56:00.494Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID dbd03ab1af02855698333b2c8916ec3f","timestamp":"2025-05-06T16:56:00.494Z"} -{"level":"info","message":"Guest messages for guest ID dbd03ab1af02855698333b2c8916ec3f were already processed.","timestamp":"2025-05-06T16:56:00.495Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=937df75e640dce12ded1832a8b607040","timestamp":"2025-05-06T16:56:00.498Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 937df75e640dce12ded1832a8b607040","timestamp":"2025-05-06T16:56:00.498Z"} -{"level":"info","message":"Guest messages for guest ID 937df75e640dce12ded1832a8b607040 were already processed.","timestamp":"2025-05-06T16:56:00.499Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746057084616-5yz5fv65c","timestamp":"2025-05-06T16:56:00.502Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746057084616-5yz5fv65c","timestamp":"2025-05-06T16:56:00.502Z"} -{"level":"info","message":"Guest messages for guest ID 1746057084616-5yz5fv65c were already processed.","timestamp":"2025-05-06T16:56:00.503Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=3919e986b4c273269d4053b4a4753198","timestamp":"2025-05-06T16:56:00.505Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 3919e986b4c273269d4053b4a4753198","timestamp":"2025-05-06T16:56:00.505Z"} -{"level":"info","message":"Guest messages for guest ID 3919e986b4c273269d4053b4a4753198 were already processed.","timestamp":"2025-05-06T16:56:00.506Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=8094762fbaf7141795fd886835bcd372","timestamp":"2025-05-06T16:56:00.509Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 8094762fbaf7141795fd886835bcd372","timestamp":"2025-05-06T16:56:00.509Z"} -{"level":"info","message":"Guest messages for guest ID 8094762fbaf7141795fd886835bcd372 were already processed.","timestamp":"2025-05-06T16:56:00.510Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=061143c028cafec9296f383002126907","timestamp":"2025-05-06T16:56:00.512Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 061143c028cafec9296f383002126907","timestamp":"2025-05-06T16:56:00.512Z"} -{"level":"info","message":"Guest messages for guest ID 061143c028cafec9296f383002126907 were already processed.","timestamp":"2025-05-06T16:56:00.513Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746053084533-wqwfw5fm2","timestamp":"2025-05-06T16:56:00.515Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746053084533-wqwfw5fm2","timestamp":"2025-05-06T16:56:00.515Z"} -{"level":"info","message":"Guest messages for guest ID 1746053084533-wqwfw5fm2 were already processed.","timestamp":"2025-05-06T16:56:00.516Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0d929f5ec7a0b00d2e5cfd54eb1c2c7e","timestamp":"2025-05-06T16:56:00.518Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 0d929f5ec7a0b00d2e5cfd54eb1c2c7e","timestamp":"2025-05-06T16:56:00.518Z"} -{"level":"info","message":"Guest messages for guest ID 0d929f5ec7a0b00d2e5cfd54eb1c2c7e were already processed.","timestamp":"2025-05-06T16:56:00.519Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=fbd39c74ae8b8b48930e08b519787a12","timestamp":"2025-05-06T16:56:00.521Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID fbd39c74ae8b8b48930e08b519787a12","timestamp":"2025-05-06T16:56:00.521Z"} -{"level":"info","message":"Guest messages for guest ID fbd39c74ae8b8b48930e08b519787a12 were already processed.","timestamp":"2025-05-06T16:56:00.523Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=b6f8dc2c159c5b4983e9431cfb3e02ea","timestamp":"2025-05-06T16:56:00.525Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID b6f8dc2c159c5b4983e9431cfb3e02ea","timestamp":"2025-05-06T16:56:00.525Z"} -{"level":"info","message":"Guest messages for guest ID b6f8dc2c159c5b4983e9431cfb3e02ea were already processed.","timestamp":"2025-05-06T16:56:00.527Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0a4c115f9b71959ba238ed4d69d0b2bd","timestamp":"2025-05-06T16:56:00.529Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 0a4c115f9b71959ba238ed4d69d0b2bd","timestamp":"2025-05-06T16:56:00.529Z"} -{"level":"info","message":"Guest messages for guest ID 0a4c115f9b71959ba238ed4d69d0b2bd were already processed.","timestamp":"2025-05-06T16:56:00.530Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746463345144-ylmarlnq2","timestamp":"2025-05-06T16:56:00.532Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746463345144-ylmarlnq2","timestamp":"2025-05-06T16:56:00.532Z"} -{"level":"info","message":"Guest messages for guest ID 1746463345144-ylmarlnq2 were already processed.","timestamp":"2025-05-06T16:56:00.533Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=3926a395b41803c5a6b0365b97fb3cb5","timestamp":"2025-05-06T16:56:00.535Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 3926a395b41803c5a6b0365b97fb3cb5","timestamp":"2025-05-06T16:56:00.536Z"} -{"level":"info","message":"Guest messages for guest ID 3926a395b41803c5a6b0365b97fb3cb5 were already processed.","timestamp":"2025-05-06T16:56:00.537Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=dcbbfc0c915a1ce026528c2104106209","timestamp":"2025-05-06T16:56:00.539Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID dcbbfc0c915a1ce026528c2104106209","timestamp":"2025-05-06T16:56:00.539Z"} -{"level":"info","message":"Guest messages for guest ID dcbbfc0c915a1ce026528c2104106209 were already processed.","timestamp":"2025-05-06T16:56:00.540Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=a2adbf150cc15e85cad5b6ad087b710b","timestamp":"2025-05-06T16:56:00.542Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID a2adbf150cc15e85cad5b6ad087b710b","timestamp":"2025-05-06T16:56:00.542Z"} -{"level":"info","message":"Guest messages for guest ID a2adbf150cc15e85cad5b6ad087b710b were already processed.","timestamp":"2025-05-06T16:56:00.543Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=b9003e60118545cc8cb0623077cc4f63","timestamp":"2025-05-06T16:56:00.545Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID b9003e60118545cc8cb0623077cc4f63","timestamp":"2025-05-06T16:56:00.545Z"} -{"level":"info","message":"Guest messages for guest ID b9003e60118545cc8cb0623077cc4f63 were already processed.","timestamp":"2025-05-06T16:56:00.547Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=efd5f85208bdbe946f0d3f04c9ba336d","timestamp":"2025-05-06T16:56:00.549Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID efd5f85208bdbe946f0d3f04c9ba336d","timestamp":"2025-05-06T16:56:00.549Z"} -{"level":"info","message":"Guest messages for guest ID efd5f85208bdbe946f0d3f04c9ba336d were already processed.","timestamp":"2025-05-06T16:56:00.551Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=e172290cd6263e6f2594333f5f90e4f7","timestamp":"2025-05-06T16:56:00.552Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID e172290cd6263e6f2594333f5f90e4f7","timestamp":"2025-05-06T16:56:00.552Z"} -{"level":"info","message":"Guest messages for guest ID e172290cd6263e6f2594333f5f90e4f7 were already processed.","timestamp":"2025-05-06T16:56:00.553Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=96f5c4804077390d2e15606f9819f55f","timestamp":"2025-05-06T16:56:00.556Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 96f5c4804077390d2e15606f9819f55f","timestamp":"2025-05-06T16:56:00.556Z"} -{"level":"info","message":"Guest messages for guest ID 96f5c4804077390d2e15606f9819f55f were already processed.","timestamp":"2025-05-06T16:56:00.557Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0fc862553fa644a4d875a79ff01e1786","timestamp":"2025-05-06T16:56:00.559Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 0fc862553fa644a4d875a79ff01e1786","timestamp":"2025-05-06T16:56:00.560Z"} -{"level":"info","message":"Guest messages for guest ID 0fc862553fa644a4d875a79ff01e1786 were already processed.","timestamp":"2025-05-06T16:56:00.561Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1f09a77763c0f046aaa789f9d019984d","timestamp":"2025-05-06T16:56:00.563Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID 1f09a77763c0f046aaa789f9d019984d","timestamp":"2025-05-06T16:56:00.563Z"} -{"level":"info","message":"Guest messages for guest ID 1f09a77763c0f046aaa789f9d019984d were already processed.","timestamp":"2025-05-06T16:56:00.564Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=ce26ad9c9c646bc448d13e612ddff4c6","timestamp":"2025-05-06T16:56:00.566Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID ce26ad9c9c646bc448d13e612ddff4c6","timestamp":"2025-05-06T16:56:00.567Z"} -{"level":"info","message":"Guest messages for guest ID ce26ad9c9c646bc448d13e612ddff4c6 were already processed.","timestamp":"2025-05-06T16:56:00.568Z"} -{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=f6a9e94119b2317d7b9be50733ac5e51","timestamp":"2025-05-06T16:56:00.570Z"} -{"level":"info","message":"Processing guest messages for user 1 with guest ID f6a9e94119b2317d7b9be50733ac5e51","timestamp":"2025-05-06T16:56:00.570Z"} -{"level":"info","message":"Guest messages for guest ID f6a9e94119b2317d7b9be50733ac5e51 were already processed.","timestamp":"2025-05-06T16:56:00.572Z"} -{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","authType":"wallet","authenticated":true,"cookie":{"expires":"2025-06-05T16:55:14.072Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"f76c4b9a764e2d6b8c59fd19687812ff","isAdmin":true,"level":"info","message":"[SessionService] Saving session data:","processedGuestIds":["f76c4b9a764e2d6b8c59fd19687812ff","c4378cb2eaec94d5e68835cd6a95f334","5e9687d8aa37392dbcc6502eaa8777f5","d8eb7603a4d012cc0077750dfe895d4f","8af4660b9c469159e7e6a3a96fc3e887","2a11b17d8e84aa6bc1f11695c69c7797","8b5d6a6fab3d07cbc262c7a27c40007f","1746048025646-a9cve1ac8","758c5501236dd51c907b8035b014561e","19fae7d5baa3b5217a8bb3d96c9cbf82","f3b209b70545a9a0aa1a4f94a0238785","bf3fdb217687be2bdd5d0baaa18e2665","23fb4de594179339d2b6f27be5891a96","6c8674af64c3c38b58bbf61b065d738e","4ce93dd87f076a6bdcdfd373737d79f9","0541b3cad5c9eaf088709e380d62d72e","434910a20e533ca13211a6e5338f13f7","806b063766ddc43e8fc0b822c032472d","7dcd8237d8bb9b8344a16748851aaa1d","72b3851bc1e64d63c499e6b534c2f685","71aa676b5148fcf70266f62033ac07ce","7fd62b29aad08c99e38fe96abb70158f","dbd03ab1af02855698333b2c8916ec3f","937df75e640dce12ded1832a8b607040","1746057084616-5yz5fv65c","3919e986b4c273269d4053b4a4753198","8094762fbaf7141795fd886835bcd372","061143c028cafec9296f383002126907","1746053084533-wqwfw5fm2","0d929f5ec7a0b00d2e5cfd54eb1c2c7e","fbd39c74ae8b8b48930e08b519787a12","b6f8dc2c159c5b4983e9431cfb3e02ea","0a4c115f9b71959ba238ed4d69d0b2bd","1746463345144-ylmarlnq2","3926a395b41803c5a6b0365b97fb3cb5","dcbbfc0c915a1ce026528c2104106209","a2adbf150cc15e85cad5b6ad087b710b","b9003e60118545cc8cb0623077cc4f63","efd5f85208bdbe946f0d3f04c9ba336d","e172290cd6263e6f2594333f5f90e4f7","96f5c4804077390d2e15606f9819f55f","0fc862553fa644a4d875a79ff01e1786","1f09a77763c0f046aaa789f9d019984d","ce26ad9c9c646bc448d13e612ddff4c6","f6a9e94119b2317d7b9be50733ac5e51"],"timestamp":"2025-05-06T16:56:00.574Z","userId":1} -{"level":"info","message":"Session saved successfully","timestamp":"2025-05-06T16:56:00.577Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:56:00.587Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:00.589Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:00.601Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:00.603Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:56:00.614Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:00.616Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:00.627Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:00.629Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:00.638Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:00.640Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:00.650Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:00.652Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:56:00.665Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:00.666Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:00.682Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:00.685Z"} -{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T16:56:00.709Z"} -{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T16:56:00.710Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:56:00.724Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:00.727Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:00.742Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:00.744Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:00.756Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:00.757Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:00.771Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:00.773Z"} -{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-06T16:56:01.066Z"} -{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-06T16:56:01.287Z"} -{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-06T16:56:01.828Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:56:02.002Z"} -{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-06T16:56:02.002Z"} -{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T16:56:02.009Z"} -{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T16:56:02.010Z"} -{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-06T16:56:02.380Z"} -{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-06T16:56:02.606Z"} -{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-06T16:56:03.149Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:56:03.323Z"} -{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-06T16:56:03.324Z"} -{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-06T16:56:04.843Z"} -{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-06T16:56:04.856Z"} -{"count":20,"level":"info","limit":30,"message":"Returning message history for user 1","offset":0,"timestamp":"2025-05-06T16:56:04.860Z","total":20} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:56:08.872Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:08.875Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:56:08.890Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:08.892Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:08.900Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:08.903Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:56:08.909Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:08.912Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:08.916Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:08.919Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:56:08.931Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:08.934Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:08.935Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:08.941Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:56:08.949Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:08.951Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:08.956Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:08.960Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:56:08.967Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:08.970Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:08.973Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:08.976Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:56:08.984Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:08.988Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:08.992Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:08.995Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T16:56:09.001Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:09.006Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:09.010Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:09.012Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:09.021Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:09.024Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:09.032Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:09.034Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:09.045Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:09.046Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:09.056Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:09.059Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:09.068Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:09.070Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:09.079Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:09.081Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:09.091Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:09.092Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:09.102Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:09.104Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:09.115Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:09.118Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T16:56:10.640Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:31.252Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:31.256Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:39.229Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:39.230Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:39.240Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:39.242Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:39.250Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:39.251Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:56:39.258Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:56:39.260Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:57:01.260Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:57:01.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:57:09.235Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:57:09.236Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:57:09.244Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:57:09.245Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:57:09.253Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:57:09.254Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:57:09.261Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:57:09.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:57:31.257Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:57:31.260Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:57:39.231Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:57:39.233Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:57:39.243Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:57:39.245Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:57:39.252Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:57:39.253Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:57:39.261Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:57:39.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:58:01.250Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:58:01.253Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:58:09.234Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:58:09.236Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:58:09.242Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:58:09.244Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:58:09.252Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:58:09.253Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:58:09.261Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:58:09.262Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:58:50.237Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:58:50.240Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:58:50.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:58:50.250Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:58:50.257Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:58:50.258Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:58:50.265Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:58:50.266Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:58:50.273Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:58:50.274Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:59:13.236Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:59:13.238Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:59:13.246Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:59:13.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:59:13.256Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:59:13.257Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:59:13.264Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:59:13.265Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:59:13.272Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:59:13.274Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:59:30.791Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:59:30.794Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:59:39.239Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:59:39.240Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:59:39.248Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:59:39.250Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:59:39.256Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:59:39.258Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T16:59:39.265Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T16:59:39.266Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:00:01.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:00:01.250Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:00:09.237Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:00:09.238Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:00:09.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:00:09.249Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:00:09.256Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:00:09.258Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:00:09.265Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:00:09.266Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:00:31.261Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:00:31.265Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:00:39.009Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:00:39.010Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:00:39.020Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:00:39.022Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:00:39.039Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:00:39.041Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:00:39.058Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:00:39.060Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=P","timestamp":"2025-05-06T17:00:47.792Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=85","timestamp":"2025-05-06T17:00:50.205Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=854","timestamp":"2025-05-06T17:00:54.949Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:01:00.764Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:01:00.766Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:01:08.994Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:01:08.995Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:01:09.008Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:01:09.010Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:01:09.036Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:01:09.038Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:01:09.060Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:01:09.061Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:01:11.489Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:01:11.727Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:01:12.148Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:01:12.328Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:01:12.563Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:01:12.757Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:01:12.940Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:01:13.159Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:01:13.359Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:01:14.990Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:01:14.991Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:01:30.777Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:01:30.780Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:01:31.076Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:01:31.077Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:01:39.007Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:01:39.009Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:01:39.019Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:01:39.021Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:01:39.037Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:01:39.039Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:01:39.068Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:01:39.070Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:01:47.697Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:01:47.698Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:01:55.647Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:01:55.647Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:02:00.758Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:02:00.760Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:02:08.996Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:02:08.998Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:02:09.007Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:02:09.009Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:02:09.042Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:02:09.044Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:02:09.075Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:02:09.076Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:02:12.624Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:02:12.625Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:02:30.787Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:02:30.790Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:02:39.224Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:02:39.226Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:02:39.234Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:02:39.235Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:02:39.243Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:02:39.244Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:02:39.251Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:02:39.252Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:03:01.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:03:01.250Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:03:09.227Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:03:09.228Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:03:09.236Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:03:09.238Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:03:09.244Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:03:09.246Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:03:09.252Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:03:09.254Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:03:31.221Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:03:31.224Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:03:46.529Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:03:46.532Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:03:46.544Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:03:46.546Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:03:46.555Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:03:46.556Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:03:46.564Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:03:46.565Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:03:50.650Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:03:54.530Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:03:54.708Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:03:54.980Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:03:55.124Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:03:55.322Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:03:55.590Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:03:58.055Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:03:58.056Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:04:00.783Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:04:00.785Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:04:08.107Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:04:08.108Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:04:08.986Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:04:08.988Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:04:08.999Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:04:09.001Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:04:09.034Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:04:09.036Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:04:09.048Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:04:09.050Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=10%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:04:16.722Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=10%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:04:16.723Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:04:30.797Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:04:30.800Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:04:38.998Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:04:38.999Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:04:39.007Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:04:39.009Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:04:39.026Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:04:39.027Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:04:39.058Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:04:39.059Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:05:00.793Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:05:00.797Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:05:08.988Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:05:08.990Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:05:09.000Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:05:09.002Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:05:09.034Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:05:09.035Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:05:09.066Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:05:09.068Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:05:25.530Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:05:25.531Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:05:30.772Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:05:30.775Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:05:38.993Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:05:38.995Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:05:39.004Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:05:39.005Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:05:39.039Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:05:39.040Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:05:39.053Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:05:39.054Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:06:00.792Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:06:00.795Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:06:08.994Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:06:08.995Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:06:09.004Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:06:09.006Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:06:09.040Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:06:09.042Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:06:09.051Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:06:09.053Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:06:16.620Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:06:16.622Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:06:29.811Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:06:29.812Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:06:30.788Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:06:30.791Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:06:32.004Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:06:32.005Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:06:39.000Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:06:39.001Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:06:39.010Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:06:39.012Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:06:39.029Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:06:39.030Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:06:39.064Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:06:39.066Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:06:44.148Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:06:44.149Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:07:00.813Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:07:00.817Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:07:08.998Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:07:08.999Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:07:09.010Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:07:09.012Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:07:09.042Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:07:09.044Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:07:09.053Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:07:09.055Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:07:13.196Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:07:13.196Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:07:16.394Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:07:16.395Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:07:21.618Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:07:21.619Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:07:30.771Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:07:30.773Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:07:38.992Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:07:38.993Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:07:39.003Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:07:39.004Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:07:39.036Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:07:39.037Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:07:39.067Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:07:39.068Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:08:01.262Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:08:01.264Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:08:09.223Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:08:09.226Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:08:09.237Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:08:09.239Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:08:09.246Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:08:09.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:08:09.256Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:08:09.258Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:08:30.800Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:08:30.803Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:08:37.180Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:08:37.180Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:08:38.998Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:08:39.000Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:08:39.010Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:08:39.012Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:08:39.029Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:08:39.031Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:08:39.062Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:08:39.063Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:08:46.802Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:08:46.803Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:09:01.260Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:09:01.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:09:09.219Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:09:09.220Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:09:09.229Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:09:09.231Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:09:09.238Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:09:09.239Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:09:09.246Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:09:09.247Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:09:31.257Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:09:31.260Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:09:39.225Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:09:39.227Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:09:39.235Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:09:39.236Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:09:39.243Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:09:39.245Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:09:39.251Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:09:39.253Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:10:13.226Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:10:13.228Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:10:13.236Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:10:13.238Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:10:13.245Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:10:13.247Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:10:13.253Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:10:13.255Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:10:13.262Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:10:13.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:10:36.329Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:10:36.332Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:10:38.987Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:10:38.988Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:10:39.001Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:10:39.002Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:10:39.042Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:10:39.043Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:10:39.051Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:10:39.053Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:10:48.083Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:10:48.083Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:11:00.544Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:11:00.545Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:11:00.783Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:11:00.786Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:11:03.283Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:11:03.283Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:11:04.688Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:11:04.689Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:11:08.995Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:11:08.997Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:11:09.008Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:11:09.010Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:11:09.028Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:11:09.030Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:11:09.060Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:11:09.061Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:11:12.143Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:11:12.144Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:11:30.784Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:11:30.786Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:11:38.298Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:11:38.299Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:11:38.992Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:11:38.994Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:11:39.023Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:11:39.025Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:11:39.053Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:11:39.054Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:11:39.097Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:11:39.098Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:11:42.157Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:11:42.158Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:11:59.788Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+%2C+%D0%BF%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D1%80%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:11:59.789Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:12:00.780Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:12:00.783Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:12:08.983Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:12:08.984Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:12:09.011Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:12:09.012Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:12:09.028Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:12:09.029Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:12:09.061Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:12:09.062Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:12:30.783Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:12:30.785Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:12:39.227Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:12:39.228Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:12:39.238Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:12:39.239Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:12:39.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:12:39.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:12:39.255Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:12:39.256Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:13:01.261Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:13:01.264Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:13:09.218Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:13:09.220Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:13:09.228Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:13:09.230Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:13:09.237Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:13:09.238Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:13:09.244Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:13:09.246Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:13:31.257Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:13:31.260Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:13:38.987Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:13:38.988Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:13:39.002Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:13:39.003Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:13:39.033Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:13:39.034Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:13:39.064Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:13:39.066Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:14:01.263Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:14:01.266Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:14:09.219Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:14:09.221Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:14:09.271Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:14:09.273Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:14:09.310Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:14:09.312Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:14:09.359Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:14:09.361Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:14:31.261Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:14:31.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:14:39.219Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:14:39.220Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:14:39.228Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:14:39.230Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:14:39.239Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:14:39.240Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:14:39.246Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:14:39.247Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:15:13.234Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:15:13.237Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:15:13.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:15:13.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:15:13.254Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:15:13.256Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:15:13.263Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:15:13.265Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:15:13.271Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:15:13.274Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:15:31.256Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:15:31.259Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:15:39.220Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:15:39.221Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:15:39.230Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:15:39.231Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:15:39.238Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:15:39.240Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:15:39.246Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:15:39.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:16:01.256Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:16:01.259Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:16:09.232Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:16:09.233Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:16:09.245Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:16:09.247Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:16:09.253Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:16:09.255Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:16:09.262Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:16:09.264Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:17:13.233Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:17:13.235Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:17:13.244Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:17:13.245Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:17:13.253Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:17:13.255Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:17:13.262Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:17:13.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:17:13.270Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:17:13.271Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:18:13.212Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:18:13.214Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:18:13.221Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:18:13.222Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:18:13.229Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:18:13.231Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:18:13.237Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:18:13.239Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:18:13.246Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:18:13.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:19:13.215Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:19:13.218Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:19:13.228Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:19:13.230Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:19:13.236Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:19:13.238Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:19:13.244Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:19:13.245Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:19:13.253Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:19:13.254Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:20:13.228Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:20:13.230Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:20:13.239Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:20:13.241Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:20:13.248Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:20:13.250Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:20:13.257Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:20:13.258Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:20:13.265Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:20:13.267Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:20:30.782Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:20:30.784Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:20:38.990Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:20:38.992Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:20:39.000Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:20:39.002Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:20:39.031Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:20:39.033Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:20:39.052Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:20:39.053Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:20:40.960Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=357524&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:20:57.963Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=357524&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:20:57.963Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:21:00.773Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:21:00.776Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:21:08.989Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:21:08.991Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:21:09.002Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:21:09.004Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:21:09.034Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:21:09.036Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:21:09.049Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:21:09.051Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:21:30.788Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:21:30.791Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:21:38.999Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:21:39.000Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:21:39.011Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:21:39.012Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:21:39.028Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:21:39.029Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:21:39.060Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:21:39.061Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:22:01.258Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:22:01.261Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:22:09.221Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:22:09.222Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:22:09.230Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:22:09.231Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:22:09.238Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:22:09.240Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:22:09.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:22:09.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:22:31.257Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:22:31.259Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:22:39.220Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:22:39.222Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:22:39.230Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:22:39.232Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:22:39.238Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:22:39.239Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:22:39.246Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:22:39.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:23:13.198Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:23:13.200Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:23:13.207Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:23:13.209Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:23:13.216Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:23:13.218Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:23:13.224Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:23:13.225Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:23:13.232Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:23:13.234Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:24:13.212Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:24:13.214Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:24:13.223Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:24:13.225Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:24:13.231Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:24:13.233Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:24:13.239Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:24:13.242Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:24:13.249Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:24:13.250Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:25:13.211Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:25:13.214Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:25:13.223Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:25:13.224Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:25:13.231Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:25:13.232Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:25:13.240Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:25:13.241Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:25:13.248Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:25:13.249Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:26:13.217Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:26:13.219Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:26:13.226Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:26:13.228Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:26:13.235Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:26:13.236Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:26:13.242Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:26:13.244Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:26:13.251Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:26:13.252Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:27:09.553Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:27:09.556Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:27:09.568Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:27:09.570Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:27:09.577Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:27:09.578Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:27:09.585Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:27:09.587Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:27:09.594Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:27:09.596Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:27:19.217Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:27:31.285Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:27:31.287Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:27:39.217Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:27:39.219Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:27:39.228Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:27:39.229Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:27:39.237Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:27:39.238Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:27:39.245Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:27:39.246Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:28:00.820Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:28:00.823Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=357524&postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:28:03.915Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=357524&postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:28:03.915Z"} -{"details":{"error":{"code":400,"message":"Structured query parameters(amenity, street, city, county, state, postalcode, country) cannot be used together with 'q' parameter."}},"level":"error","message":"[Geocoding] Error proxying to Nominatim: Bad Request","query":{"addressdetails":"1","format":"jsonv2","limit":"1","postalcode":"357524","q":"357524"},"status":400,"timestamp":"2025-05-06T17:28:05.374Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:28:08.986Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:28:08.988Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:28:09.008Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:28:09.010Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:28:09.029Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:28:09.031Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:28:09.052Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:28:09.054Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=357524&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:28:17.262Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=357524&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:28:17.262Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=357524&postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:28:26.795Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=357524&postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:28:26.796Z"} -{"details":{"error":{"code":400,"message":"Structured query parameters(amenity, street, city, county, state, postalcode, country) cannot be used together with 'q' parameter."}},"level":"error","message":"[Geocoding] Error proxying to Nominatim: Bad Request","query":{"addressdetails":"1","format":"jsonv2","limit":"1","postalcode":"357524","q":"357524"},"status":400,"timestamp":"2025-05-06T17:28:27.207Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:31:23.497Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:31:23.501Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:31:23.511Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:31:23.513Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:31:23.521Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:31:23.524Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:31:23.534Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:31:23.556Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:31:23.558Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:31:23.565Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:31:23.566Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:31:31.293Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:31:31.294Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=357524&postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:31:34.401Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=357524&postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:31:34.401Z"} -{"details":{"error":{"code":400,"message":"Structured query parameters(amenity, street, city, county, state, postalcode, country) cannot be used together with 'q' parameter."}},"level":"error","message":"[Geocoding] Error proxying to Nominatim: Bad Request","query":{"addressdetails":"1","format":"jsonv2","limit":"1","postalcode":"357524","q":"357524"},"status":400,"timestamp":"2025-05-06T17:31:34.832Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:31:40.493Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:31:40.496Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:31:40.503Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:31:40.506Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:31:40.514Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:31:40.515Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:31:40.522Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:31:40.524Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:32:01.226Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:32:01.228Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:32:09.214Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:32:09.216Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:32:09.226Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:32:09.228Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:32:09.239Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:32:09.241Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:32:09.253Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:32:09.256Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:32:23.950Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:32:31.275Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:32:31.277Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:32:39.215Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:32:39.217Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:32:39.227Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:32:39.229Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:32:39.238Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:32:39.240Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:32:39.250Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:32:39.253Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:00.785Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:00.788Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:08.977Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:08.979Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:08.990Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:08.992Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:09.022Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:09.024Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:09.054Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:09.056Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:33:09.849Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:33:09.850Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:33:15.328Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:33:19.912Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:19.914Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:19.932Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:19.934Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:33:19.947Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:19.949Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:19.959Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:19.961Z"} -{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T17:33:19.966Z"} -{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T17:33:19.966Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:19.972Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:19.976Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:19.990Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:19.992Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:33:20.013Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:33:20.021Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.025Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:33:20.036Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.038Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:20.042Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.045Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:33:20.050Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.051Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:20.055Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.059Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:33:20.064Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.065Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:20.068Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.069Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:33:20.076Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.079Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:20.082Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.084Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:33:20.088Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.091Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:20.094Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.096Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:33:20.101Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.105Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:20.108Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.110Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:33:20.117Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.119Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:20.120Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.122Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:20.131Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.132Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:20.142Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.144Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:20.152Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.153Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:20.162Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.163Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:20.174Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.176Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:20.186Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.188Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:20.194Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.196Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:20.203Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.204Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:33:20.211Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:33:20.212Z"} -{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-06T17:33:21.870Z"} -{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-06T17:33:22.620Z"} -{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-06T17:33:23.505Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T17:33:25.449Z"} -{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-06T17:33:25.449Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:33:26.732Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:33:26.732Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:35:15.972Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:35:15.987Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:35:15.993Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:35:16.005Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:35:16.007Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:35:16.017Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:35:16.019Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:35:16.029Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:35:16.031Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:35:16.040Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:35:16.042Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:35:16.060Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:35:19.974Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:35:19.976Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:35:20.119Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:35:20.121Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:35:20.128Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:35:20.130Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:35:20.142Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:35:20.144Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:35:20.166Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:35:20.167Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:35:28.436Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:35:28.436Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:35:28.889Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:35:42.791Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:35:42.791Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:35:48.000Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:35:48.001Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:35:49.971Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:35:49.973Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:35:50.114Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:35:50.116Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:35:50.125Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:35:50.127Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:35:50.135Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:35:50.136Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:35:50.161Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:35:50.162Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:35:55.770Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:35:55.770Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:36:01.590Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:36:01.590Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:36:10.701Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:36:10.702Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:36:16.248Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:36:16.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:36:19.975Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:36:19.976Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:36:20.114Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:36:20.115Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:36:20.125Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:36:20.126Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:36:20.145Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:36:20.146Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:36:20.161Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:36:20.163Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:36:43.316Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:36:43.316Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:36:49.059Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:36:49.060Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:36:49.983Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:36:49.986Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:36:50.110Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:36:50.111Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:36:50.121Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:36:50.123Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:36:50.142Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:36:50.143Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:36:50.173Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:36:50.175Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:36:51.883Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:36:51.884Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:37:06.439Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:37:06.440Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:37:11.938Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:37:11.938Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%90%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:37:18.682Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%90%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:37:18.682Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:37:19.983Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:37:19.986Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:37:20.123Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:37:20.124Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:37:20.132Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:37:20.134Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:37:20.143Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:37:20.144Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:37:20.172Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:37:20.173Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%90%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:37:26.613Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%90%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:37:26.613Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%90%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:37:30.950Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%90%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:37:30.950Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:37:49.990Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:37:49.993Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:37:50.121Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:37:50.123Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:37:50.131Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:37:50.132Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:37:50.142Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:37:50.143Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:37:50.169Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:37:50.170Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:38:11.214Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:38:11.215Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:38:19.974Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:38:19.977Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:38:20.108Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:38:20.109Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:38:20.120Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:38:20.122Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:38:20.145Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:38:20.146Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:38:20.174Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:38:20.176Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:38:36.817Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:38:36.818Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:38:50.226Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:38:50.229Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:38:50.251Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:38:50.253Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:38:50.260Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:38:50.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:38:50.269Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:38:50.271Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:38:50.278Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:38:50.279Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:39:20.223Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:39:20.225Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:39:20.232Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:39:20.235Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:39:20.243Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:39:20.244Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:39:20.251Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:39:20.252Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:39:20.260Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:39:20.261Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:39:50.226Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:39:50.229Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:39:50.237Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:39:50.239Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:39:50.248Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:39:50.250Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:39:50.259Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:39:50.261Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:39:50.268Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:39:50.271Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:40:51.227Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:40:51.230Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:40:51.238Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:40:51.239Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:40:51.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:40:51.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:40:51.255Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:40:51.257Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:40:51.265Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:40:51.267Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:41:42.402Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:41:52.226Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:41:52.229Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:41:52.238Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:41:52.240Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:41:52.249Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:41:52.251Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:41:52.260Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:41:52.262Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:41:52.272Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:41:52.274Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:42:30.933Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:42:30.937Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:42:30.957Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:42:30.959Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:42:30.974Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:42:30.976Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:42:30.992Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:42:30.994Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:42:31.004Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:42:31.006Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:42:41.718Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:42:41.718Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:42:42.486Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:42:49.977Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:42:49.980Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:42:50.113Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:42:50.115Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:42:50.124Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:42:50.130Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:42:50.140Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:42:50.142Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:42:50.154Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:42:50.155Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:42:57.504Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:42:57.505Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:43:20.230Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:43:20.233Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:43:20.241Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:43:20.242Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:43:20.249Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:43:20.251Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:43:20.258Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:43:20.260Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:43:20.268Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:43:20.270Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:43:46.284Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=4%D0%B0%2C+1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:43:46.284Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:43:49.969Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:43:49.972Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:43:50.112Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:43:50.114Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:43:50.122Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:43:50.124Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:43:50.134Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:43:50.135Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:43:50.161Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:43:50.162Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:43:52.690Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+357524%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:43:52.691Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:44:20.221Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:44:20.224Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:44:20.231Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:44:20.233Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:44:20.240Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:44:20.241Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:44:20.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:44:20.249Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:44:20.257Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:44:20.258Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:44:50.227Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:44:50.230Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:44:50.237Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:44:50.238Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:44:50.246Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:44:50.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:44:50.255Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:44:50.256Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:44:50.265Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:44:50.266Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:45:19.519Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:45:51.224Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:45:51.227Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:45:51.234Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:45:51.235Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:45:51.243Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:45:51.244Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:45:51.252Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:45:51.253Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:45:51.261Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:45:51.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:46:52.235Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:46:52.238Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:46:52.245Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:46:52.247Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:46:52.254Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:46:52.256Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:46:52.263Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:46:52.265Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:46:52.272Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:46:52.273Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:47:53.237Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:47:53.240Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:47:53.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:47:53.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:47:53.256Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:47:53.257Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:47:53.264Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:47:53.265Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:47:53.273Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:47:53.274Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:48:17.457Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:48:17.457Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:48:18.971Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:48:19.977Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:48:19.979Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:48:20.116Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:48:20.117Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:48:20.129Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:48:20.131Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:48:20.140Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:48:20.141Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:48:20.171Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:48:20.173Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4%D0%B0%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:48:31.964Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4%D0%B0%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:48:31.964Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:48:50.221Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:48:50.224Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:48:50.231Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:48:50.232Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:48:50.240Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:48:50.242Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:48:50.250Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:48:50.251Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:48:50.259Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:48:50.261Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:19.984Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:19.987Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:20.110Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:20.111Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:20.121Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:20.123Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:20.132Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:20.134Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:20.164Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:20.165Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:49:21.669Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:21.671Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:21.697Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:21.699Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:49:21.720Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:49:21.748Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:21.752Z"} -{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T17:49:21.768Z"} -{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T17:49:21.769Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:49:21.809Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:21.811Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:21.815Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:21.820Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:49:21.829Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:21.831Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:21.840Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:21.842Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:49:21.853Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:21.854Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:21.865Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:21.866Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:49:21.883Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:21.885Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:21.896Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:21.898Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:49:21.910Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:21.911Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:21.922Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:21.924Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:49:21.944Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:21.945Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:21.954Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:21.956Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:49:21.969Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:21.971Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:21.983Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:21.985Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:49:21.995Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:21.997Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:22.007Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:22.009Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:22.036Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:22.038Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:22.045Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:22.046Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:22.055Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:22.056Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:22.063Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:22.064Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:22.072Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:22.073Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:22.080Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:22.082Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:22.089Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:22.090Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:22.098Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:22.100Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:22.107Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:22.109Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:22.116Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:22.118Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:22.125Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:22.127Z"} -{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-06T17:49:23.537Z"} -{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-06T17:49:24.234Z"} -{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-06T17:49:25.142Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?postalcode=355040&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:49:26.360Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?postalcode=355040&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:49:26.360Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:49:27.108Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T17:49:27.115Z"} -{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-06T17:49:27.115Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=%D0%BF%D0%B8%D1%80%D0%BE%D0%B3%D0%BE%D0%B2%D0%B0+15%2F1%2C+%D0%A1%D1%82%D0%B0%D0%B2%D1%80%D0%BE%D0%BF%D0%BE%D0%BB%D1%8C%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:49:43.966Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=%D0%BF%D0%B8%D1%80%D0%BE%D0%B3%D0%BE%D0%B2%D0%B0+15%2F1%2C+%D0%A1%D1%82%D0%B0%D0%B2%D1%80%D0%BE%D0%BF%D0%BE%D0%BB%D1%8C%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:49:43.967Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:51.982Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:51.985Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:51.999Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:52.001Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:52.042Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:52.044Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:52.061Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:52.062Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:49:52.086Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:49:52.087Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:50:22.238Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:50:22.241Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:50:22.249Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:50:22.251Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:50:22.257Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:50:22.259Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:50:22.267Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:50:22.268Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:50:22.276Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:50:22.277Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:50:52.233Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:50:52.236Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:50:52.244Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:50:52.245Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:50:52.253Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:50:52.255Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:50:52.264Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:50:52.265Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:50:52.274Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:50:52.275Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:51:22.252Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:51:22.255Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:51:22.262Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:51:22.264Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:51:22.271Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:51:22.272Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:51:22.279Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:51:22.280Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:51:22.287Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:51:22.288Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:51:52.239Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:51:52.243Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:51:52.253Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:51:52.257Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:51:52.272Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:51:52.274Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:51:52.311Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:51:52.314Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:51:52.340Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:51:52.341Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:52:22.243Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:52:22.245Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:52:22.253Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:52:22.254Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:52:22.262Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:52:22.263Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:52:22.270Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:52:22.272Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:52:22.278Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:52:22.279Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:52:52.233Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:52:52.235Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:52:52.242Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:52:52.244Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:52:52.251Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:52:52.253Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:52:52.260Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:52:52.261Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:52:52.267Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:52:52.268Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:53:53.264Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:53:53.266Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:53:53.275Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:53:53.277Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:53:53.284Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:53:53.287Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:53:53.294Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:53:53.295Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:53:53.302Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:53:53.303Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:54:54.257Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:54:54.260Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:54:54.267Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:54:54.269Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:54:54.275Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:54:54.277Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:54:54.284Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:54:54.285Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:54:54.293Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:54:54.294Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:55:55.241Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:55:55.244Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:55:55.253Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:55:55.255Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:55:55.261Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:55:55.264Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:55:55.270Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:55:55.272Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:55:55.278Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:55:55.279Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:22.248Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:22.250Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:22.260Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:22.261Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:22.267Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:22.269Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:22.277Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:22.278Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:22.285Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:22.286Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:52.011Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:52.013Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:52.021Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:52.022Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:52.058Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:52.060Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:52.073Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:52.075Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:52.101Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:52.102Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:56:53.129Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.131Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.153Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.155Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:56:53.179Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:56:53.192Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.194Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:56:53.205Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.208Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:56:53.218Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.220Z"} -{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T17:56:53.232Z"} -{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T17:56:53.233Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:56:53.234Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.235Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.247Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:56:53.248Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.250Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.251Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.261Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.263Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:56:53.265Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.267Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.274Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.277Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:56:53.281Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.283Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.289Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.291Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:56:53.297Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.299Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.302Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.305Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T17:56:53.312Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.314Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.317Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.329Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.338Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.340Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.351Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.352Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.361Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.362Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.370Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.373Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.380Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.382Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.390Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.392Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.400Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.402Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.411Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.412Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.420Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.423Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.431Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.433Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.442Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.443Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.450Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.451Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:56:53.458Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:56:53.460Z"} -{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-06T17:56:54.989Z"} -{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-06T17:56:55.749Z"} -{"level":"error","message":"Provider for arbitrum is not available: ","timestamp":"2025-05-06T17:56:56.827Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T17:56:57.599Z"} -{"arbitrum":"0","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-06T17:56:57.599Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?postalcode=357519&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:56:59.386Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?postalcode=357519&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:56:59.387Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?postalcode=357519&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:57:03.808Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?postalcode=357519&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:57:03.809Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:57:15.714Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T17:57:15.715Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T17:57:16.156Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:57:24.237Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:57:24.239Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:57:24.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:57:24.249Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:57:24.255Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:57:24.257Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:57:24.264Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:57:24.265Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:57:24.272Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:57:24.273Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1-%D1%8F+%D0%91%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4%D0%90%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:57:40.756Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1-%D1%8F+%D0%91%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4%D0%90%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:57:40.756Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1-%D1%8F+%D0%91%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4%D0%90%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:57:46.935Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1-%D1%8F+%D0%91%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4%D0%90%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:57:46.936Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:57:53.340Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:57:53.343Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:57:53.355Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:57:53.357Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:57:53.363Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:57:53.365Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:57:53.374Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:57:53.376Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:57:53.391Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:57:53.392Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1-%D1%8F+%D0%91%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4A%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:57:54.455Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1-%D1%8F+%D0%91%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4A%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:57:54.455Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1-%D1%8F+%D0%91%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4A%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:58:07.629Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1-%D1%8F+%D0%91%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4A%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:58:07.629Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:58:23.333Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:58:23.337Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:58:23.349Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:58:23.350Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:58:23.362Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:58:23.363Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:58:23.371Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:58:23.373Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:58:23.386Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:58:23.388Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:58:54.258Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:58:54.261Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:58:54.270Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:58:54.272Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:58:54.279Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:58:54.280Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:58:54.287Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:58:54.288Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:58:54.295Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:58:54.296Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1+%D1%8F+%D0%91%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4A%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:59:11.048Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1+%D1%8F+%D0%91%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4A%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T17:59:11.049Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:59:24.255Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:59:24.257Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:59:24.264Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:59:24.266Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:59:24.274Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:59:24.275Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:59:24.283Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:59:24.285Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:59:24.293Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:59:24.294Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:59:54.253Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:59:54.255Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:59:54.263Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:59:54.264Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:59:54.270Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:59:54.272Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:59:54.280Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:59:54.281Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T17:59:54.289Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T17:59:54.292Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:00:55.270Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:00:55.273Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:00:55.282Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:00:55.283Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:00:55.290Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:00:55.292Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:00:55.299Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:00:55.300Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:00:55.308Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:00:55.309Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:01:23.355Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:01:23.358Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:01:23.369Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:01:23.374Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:01:23.381Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:01:23.382Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:01:23.390Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:01:23.392Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:01:23.402Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:01:23.404Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4A%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:01:49.069Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4A%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:01:49.069Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:01:53.326Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:01:53.329Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:01:53.348Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:01:53.349Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:01:53.358Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:01:53.360Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:01:53.370Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:01:53.371Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:01:53.393Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:01:53.395Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4%D0%B0%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:01:57.762Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4%D0%B0%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:01:57.763Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4%D0%90%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:02:03.851Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4%D0%90%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:02:03.851Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4A%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:02:09.276Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4A%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:02:09.277Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:02:24.253Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:02:24.255Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:02:24.263Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:02:24.264Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:02:24.272Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:02:24.274Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:02:24.281Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:02:24.282Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:02:24.289Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:02:24.290Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:02:53.274Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:02:53.277Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:02:53.286Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:02:53.287Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:02:53.296Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:02:53.298Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:02:53.307Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:02:53.309Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:02:53.320Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:02:53.321Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4a%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:02:56.095Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4a%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:02:56.096Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:03:24.307Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:03:24.311Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:03:24.319Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:03:24.320Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:03:24.327Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:03:24.329Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:03:24.336Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:03:24.337Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:03:24.344Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:03:24.345Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:03:54.272Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:03:54.275Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:03:54.282Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:03:54.284Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:03:54.291Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:03:54.293Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:03:54.301Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:03:54.302Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:03:54.310Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:03:54.312Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T18:04:03.670Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:04:34.422Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:04:34.429Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:04:34.446Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:04:34.448Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:04:34.461Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:04:34.463Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:04:34.473Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:04:34.475Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:04:34.484Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:04:34.487Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:04:53.386Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:04:53.389Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:04:53.398Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:04:53.400Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:04:53.408Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:04:53.410Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:04:53.418Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:04:53.419Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:04:53.429Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:04:53.433Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:05:23.334Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:05:23.337Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:05:23.353Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:05:23.355Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:05:23.365Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:05:23.367Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:05:23.374Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:05:23.377Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:05:23.393Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:05:23.394Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?postalcode=355000&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T18:05:44.281Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?postalcode=355000&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T18:05:44.282Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T18:05:44.743Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?postalcode=355400&format=jsonv2&addressdetails=1&limit=1&country=%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F","timestamp":"2025-05-06T18:05:53.233Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?postalcode=355400&format=jsonv2&addressdetails=1&limit=1&country=%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F","timestamp":"2025-05-06T18:05:53.234Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:05:53.364Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:05:53.367Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:05:53.378Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:05:53.380Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:05:53.387Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:05:53.389Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:05:53.397Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:05:53.399Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:05:53.412Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:05:53.414Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?postalcode=355400&format=jsonv2&addressdetails=1&limit=1&country=%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F","timestamp":"2025-05-06T18:05:55.429Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?postalcode=355400&format=jsonv2&addressdetails=1&limit=1&country=%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F","timestamp":"2025-05-06T18:05:55.430Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?postalcode=355422&format=jsonv2&addressdetails=1&limit=1&country=%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F","timestamp":"2025-05-06T18:06:01.388Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?postalcode=355422&format=jsonv2&addressdetails=1&limit=1&country=%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F","timestamp":"2025-05-06T18:06:01.389Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?postalcode=355222&format=jsonv2&addressdetails=1&limit=1&country=%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F","timestamp":"2025-05-06T18:06:10.077Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?postalcode=355222&format=jsonv2&addressdetails=1&limit=1&country=%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F","timestamp":"2025-05-06T18:06:10.077Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?postalcode=355022&format=jsonv2&addressdetails=1&limit=1&country=%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F","timestamp":"2025-05-06T18:06:15.885Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?postalcode=355022&format=jsonv2&addressdetails=1&limit=1&country=%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F","timestamp":"2025-05-06T18:06:15.886Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:06:23.347Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:06:23.348Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:06:23.365Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:06:23.366Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:06:23.377Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:06:23.379Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:06:23.388Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:06:23.389Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:06:23.408Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:06:23.409Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:06:54.263Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:06:54.266Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:06:54.273Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:06:54.274Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:06:54.281Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:06:54.283Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:06:54.289Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:06:54.291Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:06:54.297Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:06:54.299Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:07:24.277Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:07:24.279Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:07:24.308Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:07:24.310Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:07:24.326Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:07:24.327Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:07:24.343Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:07:24.344Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:07:24.358Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:07:24.359Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:07:54.267Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:07:54.269Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:07:54.278Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:07:54.279Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:07:54.286Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:07:54.287Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:07:54.293Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:07:54.295Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:07:54.302Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:07:54.303Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:08:24.269Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:08:24.271Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:08:24.278Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:08:24.279Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:08:24.285Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:08:24.287Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:08:24.294Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:08:24.295Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:08:24.302Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:08:24.303Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:09:07.579Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:09:07.583Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:09:07.597Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:09:07.599Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:09:07.607Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:09:07.609Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:09:07.616Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:09:07.617Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:09:07.624Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:09:07.625Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:09:24.289Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:09:24.292Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:09:24.300Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:09:24.301Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:09:24.308Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:09:24.310Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:09:24.316Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:09:24.317Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:09:24.324Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:09:24.325Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:09:54.264Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:09:54.266Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:09:54.273Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:09:54.275Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:09:54.282Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:09:54.284Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:09:54.291Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:09:54.292Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:09:54.298Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:09:54.300Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T18:10:31.912Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:10:55.287Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:10:55.290Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:10:55.297Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:10:55.298Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:10:55.306Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:10:55.308Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:10:55.316Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:10:55.317Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:10:55.324Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:10:55.325Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:11:23.378Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:11:23.381Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:11:23.389Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:11:23.391Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:11:23.398Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:11:23.399Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:11:23.407Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:11:23.409Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:11:23.420Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:11:23.424Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:11:54.271Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:11:54.274Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:11:54.282Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:11:54.283Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:11:54.290Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:11:54.291Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:11:54.297Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:11:54.299Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:11:54.306Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:11:54.307Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:45.448Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:45.451Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:45.461Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:45.463Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:45.470Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:45.472Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:45.479Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:45.480Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:45.489Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:45.491Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:12:48.230Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.232Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.252Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.254Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T18:12:48.274Z"} -{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T18:12:48.293Z"} -{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T18:12:48.294Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:12:48.309Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.312Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:12:48.324Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.326Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.329Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.331Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:12:48.337Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.340Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.343Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.344Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:12:48.351Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.354Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.357Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.358Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:12:48.364Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.366Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.371Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.373Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:12:48.378Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.380Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.403Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:12:48.404Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.405Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.407Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.415Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:12:48.417Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.418Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.420Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.427Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:12:48.431Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.432Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.433Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.440Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.442Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.452Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.454Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.461Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.463Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.472Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.474Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.482Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.485Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.493Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.495Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.503Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.505Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.512Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.513Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.522Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.524Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.532Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.535Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.542Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.543Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:12:48.552Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:12:48.554Z"} -{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-06T18:12:50.069Z"} -{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-06T18:12:51.819Z"} -{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-06T18:12:52.895Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T18:12:54.882Z"} -{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-06T18:12:54.883Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:13:19.227Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:13:19.230Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:13:19.237Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:13:19.239Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:13:19.246Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:13:19.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:13:19.255Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:13:19.257Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:13:19.264Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:13:19.266Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T18:13:24.258Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:13:49.227Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:13:49.230Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:13:49.238Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:13:49.239Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:13:49.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:13:49.249Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:13:49.258Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:13:49.260Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:13:49.267Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:13:49.269Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:14:03.659Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.662Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T18:14:03.677Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.698Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.701Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:14:03.705Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.708Z"} -{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T18:14:03.720Z"} -{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-06T18:14:03.721Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:14:03.723Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.725Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.727Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.734Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:14:03.746Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.747Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.749Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.751Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:14:03.757Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.759Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.761Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.764Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:14:03.774Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.776Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.779Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.781Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:14:03.786Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.788Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.791Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.793Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:14:03.801Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.802Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.804Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.805Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:14:03.813Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.815Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.816Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.818Z"} -{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-06T18:14:03.826Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.828Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.832Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.833Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.841Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.843Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.851Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.852Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.859Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.861Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.868Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.869Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.876Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.878Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.887Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.888Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.895Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.897Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.904Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.905Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.913Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.914Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.921Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.922Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:03.929Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:03.931Z"} -{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-06T18:14:04.475Z"} -{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-06T18:14:05.141Z"} -{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-06T18:14:06.002Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T18:14:06.867Z"} -{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-06T18:14:06.867Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=A","timestamp":"2025-05-06T18:14:09.345Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=01","timestamp":"2025-05-06T18:14:11.577Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=011","timestamp":"2025-05-06T18:14:13.417Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=A","timestamp":"2025-05-06T18:14:28.065Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=03","timestamp":"2025-05-06T18:14:32.096Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:33.810Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:33.812Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:33.822Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:33.823Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:33.845Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:33.847Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:33.862Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:33.864Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:14:33.903Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:14:33.905Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=031","timestamp":"2025-05-06T18:14:34.340Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:15:04.221Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:15:04.224Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:15:04.232Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:15:04.233Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:15:04.239Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:15:04.241Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:15:04.247Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:15:04.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:15:04.254Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:15:04.256Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:15:34.213Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:15:34.216Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:15:34.223Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:15:34.225Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:15:34.232Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:15:34.233Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:15:34.240Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:15:34.242Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:15:34.248Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:15:34.249Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T18:15:39.159Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?postalcode=357524&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-06T18:15:39.159Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T18:15:39.687Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:15:46.425Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:15:46.425Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=M","timestamp":"2025-05-06T18:15:50.068Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=69","timestamp":"2025-05-06T18:15:52.118Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=691","timestamp":"2025-05-06T18:15:54.102Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:16:03.819Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:16:03.820Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:16:03.829Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:16:03.831Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:16:03.848Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:16:03.850Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:16:03.863Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:16:03.865Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:16:03.896Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:16:03.897Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:16:33.945Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:16:33.949Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:16:33.963Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:16:33.965Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:16:33.976Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:16:33.978Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:16:33.990Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:16:33.991Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:16:34.002Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:16:34.004Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:17:04.213Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:17:04.216Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:17:04.222Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:17:04.224Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:17:04.230Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:17:04.231Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:17:04.238Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:17:04.239Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:17:04.246Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:17:04.247Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:17:34.216Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:17:34.218Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:17:34.225Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:17:34.226Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:17:34.232Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:17:34.233Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:17:34.240Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:17:34.241Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:17:34.248Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:17:34.250Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:18:03.825Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:18:03.827Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:18:03.835Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:18:03.836Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:18:03.847Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:18:03.848Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:18:03.874Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:18:03.875Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:18:03.899Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:18:03.901Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:18:14.777Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:18:14.778Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:18:20.836Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:18:20.837Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4%D0%B0%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:18:31.128Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4%D0%B0%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:18:31.129Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:18:33.814Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:18:33.817Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:18:33.827Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:18:33.828Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:18:33.838Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:18:33.840Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:18:33.869Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:18:33.870Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:18:33.882Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:18:33.883Z"} -{"level":"info","message":"GET /api/geocoding/nominatim-search?q=1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4a%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:18:40.316Z"} -{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=1+%D1%8F+%D0%B1%D1%83%D0%BB%D1%8C%D0%B2%D0%B0%D1%80%D0%BD%D0%B0%D1%8F+4a%2C+%D0%9F%D1%8F%D1%82%D0%B8%D0%B3%D0%BE%D1%80%D1%81%D0%BA%2C+%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-06T18:18:40.317Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:19:04.229Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:19:04.231Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:19:04.239Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:19:04.240Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:19:04.246Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:19:04.248Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:19:04.254Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:19:04.255Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:19:04.261Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:19:04.262Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:19:34.218Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:19:34.220Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:19:34.227Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:19:34.228Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:19:34.235Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:19:34.236Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:19:34.242Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:19:34.243Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:19:34.249Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:19:34.251Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:20:04.212Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:20:04.214Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:20:04.221Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:20:04.222Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:20:04.229Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:20:04.230Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:20:04.236Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:20:04.238Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:20:04.244Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:20:04.245Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:20:33.817Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:20:33.820Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:20:33.827Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:20:33.828Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:20:33.836Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:20:33.837Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:20:33.855Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:20:33.857Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:20:33.886Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:20:33.888Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=R","timestamp":"2025-05-06T18:20:40.926Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=90","timestamp":"2025-05-06T18:20:43.017Z"} -{"level":"info","message":"GET /api/isic/codes?parent_code=900","timestamp":"2025-05-06T18:20:44.936Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:21:03.816Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:21:03.818Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:21:03.825Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:21:03.826Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:21:03.835Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:21:03.836Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:21:03.865Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:21:03.867Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:21:03.880Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:21:03.882Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:21:33.814Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:21:33.817Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:21:33.824Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:21:33.826Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:21:33.843Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:21:33.845Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:21:33.860Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:21:33.861Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:21:33.894Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:21:33.895Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:22:04.200Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:22:04.202Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:22:04.210Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:22:04.211Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:22:04.218Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:22:04.219Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:22:04.226Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:22:04.227Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:22:04.233Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:22:04.235Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:22:34.206Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:22:34.208Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:22:34.215Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:22:34.216Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:22:34.222Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:22:34.224Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:22:34.231Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:22:34.232Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:22:34.239Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:22:34.240Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:23:03.815Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:23:03.818Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:23:03.824Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:23:03.825Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:23:03.848Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:23:03.849Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:23:03.858Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:23:03.859Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:23:03.882Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:23:03.883Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:23:33.814Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:23:33.816Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:23:33.824Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:23:33.825Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:23:33.833Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:23:33.834Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:23:33.863Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:23:33.864Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:23:33.894Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:23:33.896Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:24:03.821Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:24:03.823Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:24:03.830Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:24:03.831Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:24:03.837Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:24:03.838Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:24:03.851Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:24:03.852Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:24:03.884Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:24:03.885Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T18:24:24.276Z"} -{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-06T18:24:26.801Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:24:33.807Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:24:33.809Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:24:33.820Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:24:33.821Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:24:33.853Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:24:33.854Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:24:33.862Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:24:33.864Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:24:33.883Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:24:33.884Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:25:04.201Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:25:04.203Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:25:04.211Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:25:04.214Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:25:04.222Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:25:04.223Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:25:04.231Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:25:04.233Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:25:04.241Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:25:04.242Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:25:34.199Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:25:34.202Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:25:34.209Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:25:34.210Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:25:34.217Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:25:34.219Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:25:34.227Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:25:34.228Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:25:34.235Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:25:34.236Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:26:13.158Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:26:13.160Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:26:13.168Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:26:13.169Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:26:13.176Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:26:13.177Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:26:13.182Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:26:13.184Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:26:13.191Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:26:13.192Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:27:13.206Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:27:13.208Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:27:13.214Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:27:13.216Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:27:13.223Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:27:13.224Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:27:13.230Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:27:13.232Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:27:13.238Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:27:13.240Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:28:13.203Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:28:13.205Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:28:13.212Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:28:13.213Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:28:13.220Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:28:13.221Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:28:13.229Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:28:13.230Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:28:13.236Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:28:13.237Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:29:13.170Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:29:13.172Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:29:13.180Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:29:13.181Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:29:13.188Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:29:13.189Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:29:13.196Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:29:13.197Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:29:13.203Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:29:13.206Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:30:13.194Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:30:13.196Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:30:13.205Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:30:13.207Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:30:13.213Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:30:13.215Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:30:13.221Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:30:13.222Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:30:13.229Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:30:13.230Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:31:13.217Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:31:13.220Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:31:13.228Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:31:13.229Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:31:13.235Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:31:13.237Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:31:13.243Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:31:13.244Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:31:13.250Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:31:13.251Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:32:13.191Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:32:13.194Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:32:13.201Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:32:13.202Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:32:13.209Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:32:13.210Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:32:13.217Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:32:13.218Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:32:13.224Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:32:13.226Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:33:13.211Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:33:13.213Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:33:13.220Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:33:13.221Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:33:13.228Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:33:13.230Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:33:13.236Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:33:13.238Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:33:13.244Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:33:13.245Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:34:13.212Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:34:13.215Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:34:13.224Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:34:13.225Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:34:13.233Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:34:13.235Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:34:13.241Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:34:13.242Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:34:13.249Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:34:13.250Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:34:34.191Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:34:34.194Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:34:34.202Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:34:34.203Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:34:34.211Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:34:34.212Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:34:34.219Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:34:34.221Z"} -{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-06T18:34:34.228Z"} -{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-06T18:34:34.229Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:56.460Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:56.462Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:56.470Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:56.471Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:56.486Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:56.488Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:56.509Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:56.510Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:29:57.104Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.106Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:29:57.120Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.122Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:29:57.134Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.136Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:29:57.147Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.150Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:57.152Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.154Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:57.163Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.166Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:29:57.169Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.170Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:57.177Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.179Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:29:57.183Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.185Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:57.188Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.190Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:29:57.195Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.197Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:57.200Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.201Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:29:57.206Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.208Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:57.211Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.213Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:57.222Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.224Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:57.232Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.234Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:57.241Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.242Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:57.250Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.252Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:57.260Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.261Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:57.268Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.269Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:57.276Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.277Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:57.284Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.286Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:57.292Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.293Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:57.300Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:57.301Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:29:59.845Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:29:59.847Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T10:30:00.094Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:00.097Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:00.099Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:00.116Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:00.118Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:00.129Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:00.131Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:00.144Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:00.145Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:00.157Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:00.159Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:00.170Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:00.172Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T10:30:11.323Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:11.333Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:11.335Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:11.347Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:11.348Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:11.357Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:11.359Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:11.370Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:11.371Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:11.381Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:11.382Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:11.391Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:11.392Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:17.411Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.412Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:17.422Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.424Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:17.433Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.436Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:17.442Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.444Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:17.451Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.453Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:17.457Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T10:30:17.458Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.461Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:17.463Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.465Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:17.472Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.473Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:17.474Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.476Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:17.482Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.483Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:17.488Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.490Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:17.493Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.495Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:17.502Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.505Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:17.511Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.513Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:17.517Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.519Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:17.526Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.527Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:17.534Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.536Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:17.543Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.544Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:17.552Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.553Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:17.559Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.560Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:17.567Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.569Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:17.577Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.579Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:17.585Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.586Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:17.594Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:17.596Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:28.728Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:28.731Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-05-14T10:30:36.193Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-05-14T10:30:36.196Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-05-14T10:30:36.196Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-05-14T10:30:36.197Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-05-14T10:30:36.198Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-05-14T10:30:36.198Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:48.268Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.274Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:48.298Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.302Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:48.314Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.319Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:48.329Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.331Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:48.787Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.789Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:48.802Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.804Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:48.820Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.824Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:48.836Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:48.839Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.841Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T10:30:48.843Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.846Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:48.859Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.861Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:48.864Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.865Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:48.871Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.873Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:48.881Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.883Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:48.885Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.887Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:48.896Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.898Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:48.900Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.903Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:30:48.913Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.916Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:48.918Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.920Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:48.928Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.930Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:48.939Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.940Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:48.950Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.951Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:48.960Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.962Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:48.970Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.972Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:48.980Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.982Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:48.991Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:48.993Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:49.003Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:49.005Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:49.015Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:49.017Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:49.025Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:49.027Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:30:57.929Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:30:57.932Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:31:00.505Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.508Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:31:00.524Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.526Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T10:31:00.551Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:00.580Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.585Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:31:00.587Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.591Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:00.599Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.603Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:31:00.611Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.613Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:00.618Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.620Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:31:00.627Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.630Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:00.635Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.638Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:31:00.649Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.652Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:00.654Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.657Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:31:00.667Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.671Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:00.674Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.677Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:31:00.694Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:00.697Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.699Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.700Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:00.712Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.714Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:00.723Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.726Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:00.736Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.737Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:00.747Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.749Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:00.760Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.763Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:00.773Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.775Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:00.787Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.793Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:00.810Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.813Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:00.829Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:00.831Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:31:15.130Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.133Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:31:15.145Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.147Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:31:15.165Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.167Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:31:15.180Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:15.181Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.182Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.186Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T10:31:15.191Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:15.201Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:31:15.208Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.209Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.211Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:15.218Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.220Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:31:15.224Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.225Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:15.233Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.235Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:31:15.241Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.243Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:15.250Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.252Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:31:15.258Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.263Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:15.267Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.269Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:15.279Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.282Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:15.292Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.294Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:15.304Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.306Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:15.317Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.319Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:15.329Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.331Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:15.341Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.343Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:15.352Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.354Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:15.364Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.366Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:15.375Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.377Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:15.385Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:15.386Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:31.090Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:31.094Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:45.489Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:45.491Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:45.499Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:45.500Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:45.508Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:45.509Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:45.517Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:45.519Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:31:58.306Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:31:58.308Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:15.687Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:15.689Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:15.698Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:15.700Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:15.708Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:15.709Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:15.716Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:15.718Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:19.813Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.815Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:19.834Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.836Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:19.850Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.852Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:19.862Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.863Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:19.871Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.873Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:19.882Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.884Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:19.885Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.887Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:19.896Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.898Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:19.900Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.902Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:19.909Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.910Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:19.911Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.913Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:19.921Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.922Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:19.923Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.925Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:19.932Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.935Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:19.936Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.937Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:19.945Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.946Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:19.956Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.957Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:19.965Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.966Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:19.976Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.977Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:19.985Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.987Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:19.997Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:19.998Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:20.007Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:20.009Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:20.018Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:20.019Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:20.028Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:20.030Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-14T10:32:21.473Z"} +{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-14T10:32:21.488Z"} +{"count":20,"level":"info","limit":30,"message":"Returning message history for user 1","offset":0,"timestamp":"2025-05-14T10:32:21.494Z","total":20} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:25.660Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.662Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:25.673Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.675Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:25.676Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.679Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:25.687Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.689Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:25.690Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.692Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:25.701Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.702Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:25.704Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.705Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:25.712Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.715Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:25.716Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.718Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:25.728Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.729Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:25.730Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.732Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:25.740Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.741Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:25.742Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.745Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:25.753Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:25.754Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.755Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.756Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:25.764Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.766Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:25.773Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.774Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:25.782Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.784Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:25.791Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.792Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:25.799Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.801Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:25.808Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.810Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:25.818Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.819Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:25.827Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.828Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:25.836Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:25.839Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:28.482Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:28.483Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T10:32:32.794Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:32.801Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:32.804Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:32.817Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:32.819Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:32.829Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:32.830Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:32.840Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:32.842Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:32.851Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:32.852Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:32.861Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:32.863Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:55.965Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:55.967Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:55.975Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:55.976Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:55.984Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:55.985Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:55.995Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:55.996Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:58.082Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.084Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:58.097Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.100Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:58.110Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.112Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:58.121Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:58.123Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.125Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.127Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T10:32:58.131Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:58.140Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:58.142Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.143Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.144Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:58.153Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.156Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:58.158Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.159Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:58.165Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.166Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:58.171Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.173Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:58.176Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.177Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:32:58.183Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.186Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:58.188Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.189Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:58.196Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.198Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:58.205Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.206Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:58.213Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.215Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:58.222Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.223Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:58.233Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.234Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:58.241Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.243Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:58.251Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.253Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:58.259Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.261Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:58.268Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.270Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:58.279Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.280Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:32:58.685Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:32:58.687Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:10.332Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.334Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:10.346Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.349Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:10.357Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.359Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:10.366Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:10.368Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.369Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.370Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:10.379Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.382Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:10.384Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.386Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:10.393Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.395Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:10.398Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.400Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:10.406Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.408Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:10.410Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.412Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:10.421Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.423Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:10.426Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.427Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:10.433Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.435Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:10.442Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.443Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:10.450Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.452Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:10.460Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.462Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:10.469Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.470Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:10.478Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.479Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:10.486Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.488Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:10.495Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.496Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:10.505Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.506Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:10.514Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.515Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:10.522Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:10.523Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:11.973Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:11.975Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:11.990Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:11.994Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:11.997Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.000Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:12.009Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.011Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:12.012Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.014Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:12.021Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.022Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T10:33:12.023Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:12.027Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.030Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:12.034Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.036Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:12.038Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.039Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:12.044Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.046Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:12.049Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.051Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:12.058Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.059Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:12.060Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.062Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:12.069Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:12.070Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.071Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.072Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:12.080Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.081Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:12.089Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.090Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:12.097Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.098Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:12.106Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.107Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:12.114Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.115Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:12.123Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.124Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:12.131Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.133Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:12.140Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.142Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:12.149Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:12.150Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:29.902Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:29.905Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:42.892Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:42.894Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:42.904Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:42.905Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:42.913Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:42.914Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:42.922Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:42.924Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:59.068Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.070Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:59.294Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.296Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:59.307Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.310Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:59.320Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.321Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:59.329Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:59.330Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.331Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.332Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:59.341Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.343Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:59.344Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.346Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:59.350Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.352Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:59.357Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.358Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:59.360Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.362Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:59.367Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.369Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:59.371Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.373Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:33:59.378Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.380Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:59.382Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.384Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:59.392Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.393Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:59.401Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.403Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:59.411Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.412Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:59.420Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.421Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:59.429Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.431Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:59.438Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.440Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:59.448Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.449Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:59.457Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.458Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:59.468Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.470Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:33:59.480Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:33:59.483Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-14T10:34:00.950Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:34:00.965Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:00.966Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:34:00.977Z"} +{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-14T10:34:00.978Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:00.980Z"} +{"count":20,"level":"info","limit":30,"message":"Returning message history for user 1","offset":0,"timestamp":"2025-05-14T10:34:00.984Z","total":20} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:34:00.991Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:00.992Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:34:01.001Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:01.002Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.003Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.005Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:01.013Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.014Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:34:01.016Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.018Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:01.024Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.026Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:34:01.028Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.030Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:01.035Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.038Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:34:01.040Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.041Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:01.048Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.050Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:34:01.054Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.056Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:01.058Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.060Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:01.067Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.068Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:01.075Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.077Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:01.086Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.088Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:01.098Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.100Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:01.107Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.108Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:01.115Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.116Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:01.123Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.125Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:01.131Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.133Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:01.140Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.142Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:01.149Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:01.150Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:34:03.081Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.084Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:34:03.096Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:03.098Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.099Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.100Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T10:34:03.101Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:34:03.112Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.114Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:03.115Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.116Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:34:03.123Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.125Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:03.126Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.129Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:34:03.137Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.139Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:03.140Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.141Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:34:03.148Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.151Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:03.152Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.154Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:34:03.160Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.162Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:03.163Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.165Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:34:03.173Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:03.173Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.174Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.175Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:03.182Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.184Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:03.191Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.193Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:03.199Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.201Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:03.207Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.208Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:03.215Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.217Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:03.224Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.225Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:03.232Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.234Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:03.241Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.242Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:03.249Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:03.250Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:30.271Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:30.273Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:33.520Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:33.521Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:33.530Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:33.531Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:33.538Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:33.540Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:34:33.547Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:34:33.548Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:00.453Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:00.456Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:03.693Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:03.695Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:03.702Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:03.704Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:03.713Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:03.714Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:03.722Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:03.724Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:35:14.702Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.705Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:35:14.714Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.716Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:35:14.725Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.726Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:14.734Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:35:14.736Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.737Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.738Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:14.746Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.748Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:35:14.749Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.750Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:14.755Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.757Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:35:14.761Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.763Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:14.766Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.767Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:35:14.772Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.773Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:14.776Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.778Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:35:14.784Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.786Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:14.787Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.788Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:14.796Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.798Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:14.804Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.806Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:14.813Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.815Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:14.821Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.822Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:14.829Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.830Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:14.837Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.838Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:14.844Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.845Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:14.853Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.854Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:14.861Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.863Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:14.870Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:14.871Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:35:16.051Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.054Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:35:16.065Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.067Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:16.069Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.071Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:16.080Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:35:16.082Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.082Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.084Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:35:16.093Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.094Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T10:35:16.097Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:16.099Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.101Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:35:16.106Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.108Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:16.111Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.113Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:35:16.118Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.120Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:16.123Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.124Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:35:16.129Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.132Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:16.135Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.137Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:35:16.142Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.144Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:16.147Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.150Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:16.158Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.159Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:16.167Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.168Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:16.176Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.177Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:16.184Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.186Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:16.193Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.194Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:16.201Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.203Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:16.209Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.211Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:16.218Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.219Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:16.228Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:16.230Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:30.649Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:30.651Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:46.751Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:46.754Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:46.762Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:46.763Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:46.771Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:46.773Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:35:46.780Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:35:46.781Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:00.851Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:00.854Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:16.540Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:16.544Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:16.553Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:16.555Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:16.563Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:16.565Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:16.574Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:16.575Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:30.020Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:30.022Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:29.293Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.295Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:29.306Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.309Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:29.321Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.323Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:29.331Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:29.332Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.333Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.335Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:29.343Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.345Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:29.346Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.347Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:29.352Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.353Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:29.357Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.359Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:29.362Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.364Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:29.370Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.372Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:29.374Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.376Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:29.381Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.383Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:29.386Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.388Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:29.395Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.396Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:29.407Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.408Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:29.415Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.417Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:29.424Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.425Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:29.431Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.433Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:29.440Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.441Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:29.448Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.449Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:29.457Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.458Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:29.465Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.466Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:29.473Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:29.474Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T10:36:39.100Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:39.108Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:39.112Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:39.131Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:39.133Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:39.145Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:39.147Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:39.160Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:39.161Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:39.175Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:39.177Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:39.193Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:39.195Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T10:36:54.458Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:54.459Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:54.462Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:54.474Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:54.476Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:54.485Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:54.486Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:54.496Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:54.497Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:54.506Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:54.507Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:54.517Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:54.518Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:57.453Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.457Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:57.469Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.471Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:57.476Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.478Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:57.484Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.487Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:57.489Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.491Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:57.501Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.502Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:57.503Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.505Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T10:36:57.507Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:57.516Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:57.520Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.521Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.521Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:57.529Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.531Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:57.532Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.537Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:57.547Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.549Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:57.555Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.556Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:36:57.564Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.566Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:57.568Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.569Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:57.577Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.578Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:57.587Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.588Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:57.594Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.596Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:57.606Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.607Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:57.615Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.616Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:57.624Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.625Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:57.632Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.634Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:57.641Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.644Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:57.651Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.653Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:36:57.893Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:36:57.895Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:37:13.628Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.630Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:37:13.641Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.644Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:37:13.652Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.653Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:37:13.660Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.661Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:13.662Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.664Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:13.672Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.674Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:37:13.677Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.678Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:13.682Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.684Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:37:13.687Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.688Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:13.691Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.693Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:37:13.698Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.700Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:13.702Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.704Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:37:13.711Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.713Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:13.714Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.716Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:13.723Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.725Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:13.733Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.734Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:13.743Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.744Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:13.751Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.752Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:13.759Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.760Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:13.767Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.768Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:13.775Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.776Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:13.782Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.783Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:13.790Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.791Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:13.798Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:13.799Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:29.109Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:29.113Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:44.265Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:44.267Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:44.276Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:44.277Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:44.285Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:44.287Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:44.294Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:44.295Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:37:49.556Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.558Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:37:49.577Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.579Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:37:49.594Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.596Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:37:49.605Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T10:37:49.609Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.611Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:49.613Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.621Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:49.634Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.636Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:37:49.639Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.641Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:49.653Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.656Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:37:49.658Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.659Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:49.667Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.669Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:37:49.671Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.673Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:49.678Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.680Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:37:49.686Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.688Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:49.691Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.692Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:49.702Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.703Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:49.711Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.713Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:49.722Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.724Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:49.733Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.735Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:49.743Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.744Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:49.752Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.754Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:49.763Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.766Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:49.774Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.775Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:49.782Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.784Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:49.792Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:49.793Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:37:58.290Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:37:58.292Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:38:03.047Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.049Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:38:03.061Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.063Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:38:03.073Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.074Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:38:03.083Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:03.086Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.087Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.089Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:03.097Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.099Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:38:03.101Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.102Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:03.107Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.109Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:38:03.112Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.113Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:03.118Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.120Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:38:03.123Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.124Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:03.130Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.131Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:38:03.134Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.135Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:03.142Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.143Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:03.150Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.151Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:03.159Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.160Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:03.167Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.168Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:03.175Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.176Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:03.183Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.184Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:03.192Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.193Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:03.200Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.202Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:03.209Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.210Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:03.217Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.218Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:03.225Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:03.226Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:38:04.245Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.247Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:38:04.257Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.259Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:04.262Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.265Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:38:04.271Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.272Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:04.276Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.277Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:38:04.283Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.285Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T10:38:04.287Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:04.289Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.292Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:38:04.295Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.298Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:04.301Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.303Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:38:04.308Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.310Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:04.312Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.313Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:38:04.318Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.320Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:04.323Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.326Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:38:04.335Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.337Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:04.339Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.345Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:04.353Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.354Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:04.360Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.362Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:04.369Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.370Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:04.377Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.378Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:04.384Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.385Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:04.392Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.394Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:04.400Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.401Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:04.408Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.409Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:04.416Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:04.417Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-14T10:38:04.700Z"} +{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-14T10:38:04.713Z"} +{"count":20,"level":"info","limit":30,"message":"Returning message history for user 1","offset":0,"timestamp":"2025-05-14T10:38:04.716Z","total":20} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:29.492Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:29.494Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:34.896Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:34.898Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:34.906Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:34.907Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:34.914Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:34.915Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:34.922Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:34.923Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:38:59.676Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:38:59.678Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:05.081Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:05.082Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:05.092Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:05.093Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:05.101Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:05.102Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:05.109Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:05.111Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:39:26.124Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.127Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.150Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.152Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:39:26.168Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.170Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T10:39:26.189Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T10:39:26.190Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:39:26.205Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.207Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.208Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.209Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:39:26.217Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.219Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.221Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.223Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T10:39:26.230Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.235Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.236Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.243Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.245Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:39:26.246Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.248Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.252Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.255Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:39:26.259Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.261Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.263Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.264Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:39:26.269Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.271Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.273Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.275Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:39:26.280Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.281Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.284Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.286Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:39:26.293Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.294Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.297Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.298Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:39:26.304Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.305Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.308Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.310Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.318Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.319Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.330Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.332Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.341Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.342Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.348Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.349Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.356Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.358Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.364Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.366Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.372Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.374Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.384Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.385Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:26.392Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:26.393Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T10:39:28.220Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T10:39:30.157Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T10:39:31.088Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T10:39:33.237Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T10:39:33.237Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:56.816Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:56.819Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:56.827Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:56.829Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:56.836Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:56.837Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:56.844Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:56.846Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:39:56.852Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:39:56.854Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:40:27.009Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:40:27.012Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:40:27.021Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:40:27.023Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:40:27.029Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:40:27.030Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:40:27.037Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:40:27.038Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:40:27.046Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:40:27.047Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:40:57.197Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:40:57.200Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:40:57.209Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:40:57.210Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:40:57.217Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:40:57.218Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:40:57.225Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:40:57.226Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:40:57.233Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:40:57.235Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:27.383Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:27.386Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:27.396Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:27.397Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:27.408Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:27.409Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:27.417Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:27.419Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:27.427Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:27.428Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-05-14T10:41:41.377Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-05-14T10:41:41.381Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-05-14T10:41:41.381Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-05-14T10:41:41.382Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-05-14T10:41:41.382Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-05-14T10:41:41.382Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:41:50.202Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.206Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:41:50.224Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.227Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:41:50.242Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.245Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:41:50.259Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T10:41:50.262Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:50.267Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.277Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.280Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:50.289Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.292Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:41:50.294Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.296Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:50.304Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.306Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:41:50.309Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.310Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:50.321Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.323Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:41:50.325Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.327Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:50.334Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.336Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:41:50.339Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.341Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:50.346Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.348Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:50.356Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.357Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:50.366Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.367Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:50.376Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.377Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:50.385Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.386Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:50.394Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.395Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:50.403Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.405Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:50.412Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.414Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:50.421Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.423Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:50.431Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.432Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:50.439Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:50.440Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:41:56.390Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:41:56.392Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-05-14T10:42:03.464Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-05-14T10:42:03.467Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-05-14T10:42:03.468Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-05-14T10:42:03.469Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-05-14T10:42:03.469Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-05-14T10:42:03.469Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:21.271Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.274Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:21.292Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.296Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:21.311Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.313Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:21.327Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:21.330Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T10:42:21.332Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.335Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.340Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:21.350Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.353Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:21.356Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.359Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:21.366Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.370Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:21.375Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.380Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:21.384Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.387Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:21.395Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.397Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:21.401Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.403Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:21.409Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.412Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:21.416Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.418Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:21.426Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.428Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:21.437Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.439Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:21.448Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.450Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:21.459Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.461Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:21.470Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.472Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:21.481Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.483Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:21.494Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.496Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:21.508Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.510Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:21.520Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.523Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:21.533Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:21.535Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:27.754Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:27.756Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:42.806Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:42.809Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:42.830Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:42.832Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:42.844Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:42.846Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:42.859Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:42.863Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:42.873Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:42.875Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T10:42:42.881Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T10:42:42.883Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:42.894Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:42.897Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:42.901Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T10:42:42.904Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:42.906Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:42.914Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:42.916Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:42.918Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:42.920Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:42.927Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:42.928Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:42.930Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:42.931Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:42.939Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:42.940Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:42.942Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:42.942Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:42.950Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:42.953Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:42.955Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:42.956Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:42.966Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:42.968Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:42.973Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:42.977Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:42.988Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:42.990Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:42.999Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:43.000Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:43.009Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:43.010Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:43.018Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:43.019Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:43.027Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:43.028Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:43.037Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:43.039Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:43.048Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:43.050Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:43.058Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:43.060Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:43.068Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:43.069Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:43.076Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:43.078Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:43.085Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:43.087Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:43.096Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:43.097Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:43.105Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:43.106Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T10:42:43.784Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T10:42:44.661Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T10:42:45.519Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T10:42:46.419Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T10:42:46.419Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:48.352Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.354Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:48.364Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.367Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:48.371Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.373Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:48.378Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.380Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:48.383Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.385Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:48.390Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.392Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:48.394Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.396Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:48.402Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.404Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:48.405Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.407Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:48.415Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.417Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:48.418Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.420Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:48.427Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.429Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:48.430Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.432Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:48.441Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:48.442Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.443Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.445Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:48.453Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.454Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:48.462Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.463Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:48.471Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.472Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:48.480Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.481Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:48.488Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.489Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:48.536Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.537Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:48.554Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.556Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:48.574Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.575Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:48.594Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:48.595Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:49.915Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:49.917Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:49.927Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:49.929Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:49.930Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:49.933Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:49.941Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:49.943Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:49.945Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:49.947Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:49.955Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:49.957Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:49.958Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:49.960Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:49.966Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:49.968Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:49.971Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:49.972Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:49.978Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:49.980Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:49.983Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:49.984Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:49.990Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:49.992Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:49.996Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:49.999Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:50.005Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-14T10:42:50.007Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:50.008Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:50.012Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:50.014Z"} +{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-14T10:42:50.022Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:50.024Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:50.026Z"} +{"count":20,"level":"info","limit":30,"message":"Returning message history for user 1","offset":0,"timestamp":"2025-05-14T10:42:50.028Z","total":20} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:50.034Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:50.035Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:50.042Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:50.044Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:50.053Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:50.054Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:50.061Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:50.063Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:50.070Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:50.072Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:50.078Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:50.080Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:50.088Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:50.089Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:50.097Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:50.099Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:51.708Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.710Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:51.723Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.725Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:51.728Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T10:42:51.730Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.732Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:51.738Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.742Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:51.745Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.747Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:51.751Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.753Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:51.755Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.757Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:51.763Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.765Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:51.768Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.770Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:51.774Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.776Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:51.778Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.780Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:51.785Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.787Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:51.789Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.791Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:42:51.798Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.800Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:51.803Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.805Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:51.812Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.813Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:51.820Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.821Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:51.828Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.829Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:51.837Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.838Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:51.844Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.845Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:51.852Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.854Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:51.861Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.862Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:51.869Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.871Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:42:51.880Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:42:51.882Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:43:10.817Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.819Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:43:10.831Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.833Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:43:10.843Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.844Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:10.851Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:43:10.853Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.854Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.855Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:10.862Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.864Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:43:10.865Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.867Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:10.873Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.874Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:43:10.881Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.883Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:10.884Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.885Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:43:10.893Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:10.894Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.895Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.896Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:10.905Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:43:10.906Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.907Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.907Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:10.915Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.916Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:10.923Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.924Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:10.931Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.933Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:10.940Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.941Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:10.949Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.950Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:10.958Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.959Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:10.967Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.969Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:10.976Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.977Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:10.987Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.988Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:10.996Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:10.997Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:13.168Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:13.169Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:41.136Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:41.140Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:41.148Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:41.149Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:41.157Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:41.158Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:41.165Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:41.166Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:43:43.367Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:43:43.368Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-05-14T10:54:53.245Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-05-14T10:54:53.248Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-05-14T10:54:53.249Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-05-14T10:54:53.250Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-05-14T10:54:53.250Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-05-14T10:54:53.250Z"} +{"code":"ENETUNREACH","errno":"ENETUNREACH","level":"error","message":"Error launching Telegram bot: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)","stack":"FetchError: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)\n at ClientRequest. (/app/node_modules/node-fetch/lib/index.js:1501:11)\n at ClientRequest.emit (node:events:524:28)\n at emitErrorEvent (node:_http_client:101:11)\n at TLSSocket.socketErrorListener (node:_http_client:504:5)\n at TLSSocket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)","timestamp":"2025-05-14T10:54:53.650Z","type":"system"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:55:25.072Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.088Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:55:25.126Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.130Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:55:25.144Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.147Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:55:25.158Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.162Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.164Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.169Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:55:25.181Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.184Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.186Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.192Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.205Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.207Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:55:25.210Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.213Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.224Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T10:55:25.233Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T10:55:25.235Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.248Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:55:25.257Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.260Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.266Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.271Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:55:25.342Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.345Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.363Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.367Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:55:25.377Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.381Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.386Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.388Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:55:25.404Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.408Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.410Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.416Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.440Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.442Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.459Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.462Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.473Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.475Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.486Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.488Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.499Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.501Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.512Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.514Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.522Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.525Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.534Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.537Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.548Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.551Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.563Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.566Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.579Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.582Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:25.620Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:25.622Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T10:55:27.247Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T10:55:29.150Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T10:55:30.305Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T10:55:32.362Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T10:55:32.363Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:55:34.031Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.033Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:55:34.047Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.049Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T10:55:34.058Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:34.063Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.067Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:55:34.072Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.079Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:34.091Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.097Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:55:34.109Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.112Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:55:34.370Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:34.372Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.375Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.377Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:34.385Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.388Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:55:34.391Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.393Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:55:34.423Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:34.425Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.426Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.428Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:34.439Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T10:55:34.441Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.442Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.443Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:34.467Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.469Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:34.478Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.480Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:34.506Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.509Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:34.524Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.526Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:34.542Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.544Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:34.560Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.561Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:34.578Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.580Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:34.601Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.603Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:34.623Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.625Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:34.642Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:34.643Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:55:56.366Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:55:56.370Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:56:05.878Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:56:05.881Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:56:05.899Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:56:05.902Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:56:06.087Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:56:06.089Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:56:06.100Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:56:06.103Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:56:25.837Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:56:25.841Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:56:35.012Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:56:35.014Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:56:35.044Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:56:35.046Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:56:35.074Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:56:35.076Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:56:35.126Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:56:35.128Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:56:55.165Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:56:55.168Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:57:04.405Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:57:04.407Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:57:04.439Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:57:04.441Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:57:04.469Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:57:04.471Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:57:04.503Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:57:04.505Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:57:26.752Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:57:26.755Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:57:35.819Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:57:35.821Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:57:35.849Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:57:35.851Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:57:35.880Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:57:35.882Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:57:35.932Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:57:35.934Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:57:56.037Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:57:56.040Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:58:05.551Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:58:05.553Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:58:05.581Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:58:05.583Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:58:05.614Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:58:05.616Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:58:05.649Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:58:05.651Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:58:26.544Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:58:26.548Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:58:35.837Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:58:35.839Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:58:35.857Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:58:35.861Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:58:35.901Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:58:35.903Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:58:35.951Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:58:35.953Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:58:56.499Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:58:56.503Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:59:04.271Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:59:04.274Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:59:04.285Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:59:04.286Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:59:04.335Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:59:04.337Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:59:04.370Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:59:04.373Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:59:26.817Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:59:26.820Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:59:34.336Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:59:34.338Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:59:34.351Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:59:34.352Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:59:34.395Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:59:34.396Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:59:34.426Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:59:34.429Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T10:59:56.920Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T10:59:56.924Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:00:04.473Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:00:04.475Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:00:04.502Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:00:04.504Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:00:04.537Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:00:04.539Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:00:04.586Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:00:04.588Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:00:27.018Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:00:27.022Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:00:34.498Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:00:34.500Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:00:34.527Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:00:34.529Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:00:34.560Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:00:34.561Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:00:34.610Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:00:34.612Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:00:57.086Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:00:57.089Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:01:04.659Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:01:04.661Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:01:04.687Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:01:04.689Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:01:04.720Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:01:04.722Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:01:04.768Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:01:04.770Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:01:25.450Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:01:25.453Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:01:34.705Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:01:34.707Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:01:34.720Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:01:34.722Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:01:34.768Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:01:34.769Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:01:34.802Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:01:34.803Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:01:55.597Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:01:55.600Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:02:04.905Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:02:04.908Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:02:04.921Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:02:04.924Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:02:04.969Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:02:04.971Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:02:05.004Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:02:05.006Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:02:25.667Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:02:25.670Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:02:35.081Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:02:35.083Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:02:35.094Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:02:35.096Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:02:35.147Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:02:35.149Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:02:35.181Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:02:35.183Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:02:57.429Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:02:57.432Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:03:06.611Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:03:06.614Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:03:06.630Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:03:06.634Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:03:06.668Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:03:06.670Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:03:06.701Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:03:06.703Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:03:27.391Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:03:27.394Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:03:34.597Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:03:34.599Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:03:34.613Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:03:34.616Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:03:34.660Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:03:34.663Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:03:34.693Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:03:34.695Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:03:56.077Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:03:56.079Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:04:05.440Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:04:05.443Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:04:05.458Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:04:05.460Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:04:05.505Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:04:05.507Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:04:05.541Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:04:05.545Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:04:26.130Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:04:26.133Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:04:35.611Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:04:35.613Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:04:35.625Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:04:35.627Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:04:35.675Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:04:35.678Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:04:35.709Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:04:35.711Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:04:56.398Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:04:56.401Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:05:05.913Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:05:05.916Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:05:05.931Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:05:05.933Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:05:05.977Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:05:05.979Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:05:06.010Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:05:06.012Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:05:26.445Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:05:26.448Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:05:35.815Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:05:35.817Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:05:35.847Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:05:35.849Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:05:35.881Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:05:35.885Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:05:35.930Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:05:35.932Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:05:56.604Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:05:56.608Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:06:06.102Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:06:06.105Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:06:06.116Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:06:06.118Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:06:06.162Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:06:06.165Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:06:06.196Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:06:06.200Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:06:26.550Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:06:26.554Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:06:34.180Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:06:34.183Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:06:34.212Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:06:34.215Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:06:34.262Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:06:34.266Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:06:34.283Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:06:34.285Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:06:56.810Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:06:56.812Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:07:04.166Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:07:04.168Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:07:04.194Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:07:04.197Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:07:04.243Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:07:04.245Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:07:04.275Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:07:04.277Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:07:26.816Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:07:26.819Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:07:34.479Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:07:34.482Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:07:34.510Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:07:34.512Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:07:34.547Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:07:34.551Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:07:34.581Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:07:34.584Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:07:57.378Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:07:57.381Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:08:04.514Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:08:04.517Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:08:04.531Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:08:04.532Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:08:04.577Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:08:04.579Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:08:04.609Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:08:04.611Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:08:27.224Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:08:27.227Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:08:34.722Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:08:34.723Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:08:34.752Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:08:34.754Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:08:34.780Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:08:34.781Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:08:34.828Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:08:34.832Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:08:55.455Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:08:55.458Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:09:04.762Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:09:04.765Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:09:04.777Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:09:04.779Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:09:04.826Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:09:04.829Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:09:04.859Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:09:04.861Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:09:25.424Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:09:25.427Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:09:34.633Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:09:34.635Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:09:34.650Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:09:34.652Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:09:34.697Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:09:34.699Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:09:34.732Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:09:34.737Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:09:55.775Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:09:55.778Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:10:04.987Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:10:04.990Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:10:05.018Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:10:05.020Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:10:05.067Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:10:05.070Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:10:05.100Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:10:05.102Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:10:25.668Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:10:25.671Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:10:35.083Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:10:35.085Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:10:35.114Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:10:35.117Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:10:35.165Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:10:35.167Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:10:35.199Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:10:35.201Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:10:55.983Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:10:55.986Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:05.387Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:05.390Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:05.418Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:05.420Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:05.452Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:05.454Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:05.504Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:05.506Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:11:21.590Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.595Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:11:21.615Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.618Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:11:21.637Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.639Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:21.656Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:11:21.658Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.660Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.662Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:21.677Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:11:21.679Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.680Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.681Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:21.693Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.695Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:11:21.699Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.701Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:21.711Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.715Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:11:21.721Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.722Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:21.731Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.733Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:11:21.740Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.742Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:21.749Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.752Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:21.765Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.767Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:21.782Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.784Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:21.797Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.799Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:21.812Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.815Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:21.827Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.830Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:21.844Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.846Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:21.858Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.860Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:21.873Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.875Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:21.888Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.890Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:21.905Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:21.907Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-14T11:11:23.236Z"} +{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-14T11:11:23.265Z"} +{"count":20,"level":"info","limit":30,"message":"Returning message history for user 1","offset":0,"timestamp":"2025-05-14T11:11:23.273Z","total":20} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:25.996Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:25.998Z"} +{"level":"info","message":"POST /api/chat/message","timestamp":"2025-05-14T11:11:29.082Z"} +{"level":"info","message":"Received /message request","timestamp":"2025-05-14T11:11:29.083Z"} +{"conversationId":15,"level":"info","message":"Created new conversation","timestamp":"2025-05-14T11:11:29.095Z","userId":1} +{"conversationId":15,"level":"info","message":"User message saved","messageId":29,"timestamp":"2025-05-14T11:11:29.110Z"} +{"level":"info","message":"Getting AI response for:","timestamp":"2025-05-14T11:11:29.111Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:52.345Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:52.350Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:52.364Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:52.366Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:52.373Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:52.374Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:52.382Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:52.383Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:11:56.517Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:11:56.519Z"} +{"conversationId":15,"level":"info","message":"AI response received","timestamp":"2025-05-14T11:12:03.544Z"} +{"conversationId":15,"level":"info","message":"AI response saved","messageId":30,"timestamp":"2025-05-14T11:12:03.566Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:22.052Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:22.058Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:22.073Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:22.077Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:22.087Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:22.090Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:22.100Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:22.103Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:26.269Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:26.272Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:12:31.786Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:31.789Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:12:31.815Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:31.821Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:12:31.845Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:31.848Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:31.863Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T11:12:31.867Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:12:31.882Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:31.887Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:31.890Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:31.903Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:31.909Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:12:31.913Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:31.916Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:31.927Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:31.931Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:12:31.939Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:31.943Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:31.949Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:31.951Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:12:31.961Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:31.965Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:31.970Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:31.974Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:12:31.982Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:31.985Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:31.994Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:31.997Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:32.011Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:32.013Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:32.025Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:32.030Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:32.042Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:32.045Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:32.057Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:32.059Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:32.072Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:32.075Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:32.087Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:32.090Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:32.102Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:32.104Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:32.123Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:32.126Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:32.141Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:32.144Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:32.160Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:32.163Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:12:56.343Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:12:56.349Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:01.986Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:01.990Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:02.005Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:02.009Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:02.023Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:02.027Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:02.053Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:02.057Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:26.636Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:26.641Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:32.259Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:32.261Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:32.293Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:32.296Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:32.308Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:32.312Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:32.326Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:32.329Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:13:42.464Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.468Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:13:42.488Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.491Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:13:42.511Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.515Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:42.536Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.541Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:13:42.550Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.555Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:42.575Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.580Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:13:42.590Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.595Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:42.609Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.614Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:13:42.621Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.625Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:42.631Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.634Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:13:42.645Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.648Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:42.651Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.655Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:13:42.668Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.671Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:42.674Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.679Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:42.693Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.698Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:42.712Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.715Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:42.727Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.731Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:42.743Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.746Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:42.759Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.761Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:42.773Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.776Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:42.788Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.791Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:42.803Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.806Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:42.818Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.821Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:42.834Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:42.837Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:13:47.124Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.127Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:13:47.144Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.150Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:47.157Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.162Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:13:47.174Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.177Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:47.183Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.186Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:13:47.200Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.209Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T11:13:47.215Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:47.223Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.237Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:13:47.243Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.253Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:47.262Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.265Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:13:47.275Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.279Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:47.284Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.287Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:13:47.297Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.300Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:47.310Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.315Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:13:47.326Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.334Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:47.338Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.341Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:47.355Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.358Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:47.368Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.370Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:47.381Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.383Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:47.394Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.398Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:47.411Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.414Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:47.426Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.429Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:47.441Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.444Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:47.456Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.460Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:47.472Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:47.476Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:13:56.704Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:13:56.706Z"} +{"level":"info","message":"POST /api/auth/logout","timestamp":"2025-05-14T11:14:16.938Z"} +{"address":null,"authType":null,"authenticated":false,"cookie":{"expires":"2025-06-13T08:15:24.115Z","httpOnly":true,"originalMaxAge":2591999999,"path":"/","sameSite":"lax","secure":false},"email":null,"guestId":null,"isAdmin":false,"level":"info","message":"[SessionService] Saving session data:","pendingEmail":null,"previousGuestId":null,"processedGuestIds":[],"telegramId":null,"timestamp":"2025-05-14T11:14:16.941Z","userId":null} +{"level":"info","message":"Session saved successfully","timestamp":"2025-05-14T11:14:16.969Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:16.986Z"} +{"cookie":{"expires":"2025-06-13T11:14:16.984Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"c7d08b33c81f332520551ac825dccf65","level":"info","message":"[SessionService] Saving session data:","timestamp":"2025-05-14T11:14:16.987Z"} +{"level":"info","message":"Session saved successfully","timestamp":"2025-05-14T11:14:16.991Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:14:17.551Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:14:17.586Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:14:17.643Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:14:17.661Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:18.285Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:18.307Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:18.319Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:18.334Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:18.354Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:25.656Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:25.671Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:25.684Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:25.698Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:27.281Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:27.295Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:27.307Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:27.318Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:29.676Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:29.691Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:29.705Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:29.717Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:32.850Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:32.869Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:32.883Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:32.898Z"} +{"level":"info","message":"GET /api/auth/nonce?address=0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-05-14T11:14:50.711Z"} +{"level":"info","message":"Nonce dbdae4afecea8bd3396adfb988fb1f8a сохранен для адреса 0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-05-14T11:14:50.729Z"} +{"level":"info","message":"POST /api/auth/verify","timestamp":"2025-05-14T11:14:53.498Z"} +{"level":"info","message":"[verify] Verifying signature for address: 0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-05-14T11:14:53.500Z"} +{"level":"info","message":"Checking admin role for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T11:14:53.610Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T11:14:55.953Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","hasTokens":true,"level":"info","message":"Token balance on arbitrum:","timestamp":"2025-05-14T11:14:56.222Z"} +{"level":"info","message":"Found admin tokens on arbitrum","timestamp":"2025-05-14T11:14:56.222Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","hasTokens":true,"level":"info","message":"Token balance on eth:","timestamp":"2025-05-14T11:14:56.224Z"} +{"level":"info","message":"Found admin tokens on eth","timestamp":"2025-05-14T11:14:56.225Z"} +{"level":"error","message":"Provider for bsc is not available: Network check timeout","timestamp":"2025-05-14T11:14:56.622Z"} +{"balances":{"arbitrum":"499999.9","bsc":"Error: Network unavailable","eth":"1500000.0","polygon":"Error: Network unavailable"},"level":"info","message":"Admin role summary for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","networks":["arbitrum","eth"],"timestamp":"2025-05-14T11:14:56.623Z"} +{"level":"info","message":"Admin role granted for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T11:14:56.623Z"} +{"level":"info","message":"[verify] Found or created user 1 for wallet 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T11:14:56.623Z"} +{"level":"info","message":"[IdentityService] Converting guest identity for user 1 to guest_user_mapping: c7d08b33c81f332520551ac825dccf65","timestamp":"2025-05-14T11:14:56.625Z"} +{"level":"info","message":"Checking admin tokens for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T11:14:56.632Z"} +{"level":"info","message":"Checking admin role for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T11:14:56.632Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T11:14:56.844Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","hasTokens":true,"level":"info","message":"Token balance on eth:","timestamp":"2025-05-14T11:14:57.109Z"} +{"level":"info","message":"Found admin tokens on eth","timestamp":"2025-05-14T11:14:57.109Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","hasTokens":true,"level":"info","message":"Token balance on bsc:","timestamp":"2025-05-14T11:14:57.146Z"} +{"level":"info","message":"Found admin tokens on bsc","timestamp":"2025-05-14T11:14:57.147Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","hasTokens":true,"level":"info","message":"Token balance on arbitrum:","timestamp":"2025-05-14T11:14:57.450Z"} +{"level":"info","message":"Found admin tokens on arbitrum","timestamp":"2025-05-14T11:14:57.450Z"} +{"balances":{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","polygon":"Error: Network unavailable"},"level":"info","message":"Admin role summary for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","networks":["eth","bsc","arbitrum"],"timestamp":"2025-05-14T11:14:57.450Z"} +{"level":"info","message":"Admin role granted for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T11:14:57.450Z"} +{"level":"info","message":"Updated user 1 role to admin based on token holdings","timestamp":"2025-05-14T11:14:57.456Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","authType":"wallet","authenticated":true,"cookie":{"expires":"2025-06-13T11:14:16.984Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"c7d08b33c81f332520551ac825dccf65","isAdmin":true,"level":"info","message":"[SessionService] Saving session data:","timestamp":"2025-05-14T11:14:57.458Z","userId":1} +{"level":"info","message":"Session saved successfully","timestamp":"2025-05-14T11:14:57.461Z"} +{"level":"info","message":"[linkGuestMessages] Starting for user 1 with guestId=c7d08b33c81f332520551ac825dccf65, previousGuestId=undefined","timestamp":"2025-05-14T11:14:57.462Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=c7d08b33c81f332520551ac825dccf65","timestamp":"2025-05-14T11:14:57.471Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID c7d08b33c81f332520551ac825dccf65","timestamp":"2025-05-14T11:14:57.472Z"} +{"level":"info","message":"No guest messages found for guest ID c7d08b33c81f332520551ac825dccf65","timestamp":"2025-05-14T11:14:57.478Z"} +{"level":"info","message":"Marked guest mapping as processed (no messages found) for guest ID c7d08b33c81f332520551ac825dccf65","timestamp":"2025-05-14T11:14:57.481Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=c729c21d331c26f9103ad1024956e403","timestamp":"2025-05-14T11:14:57.483Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID c729c21d331c26f9103ad1024956e403","timestamp":"2025-05-14T11:14:57.484Z"} +{"level":"info","message":"Guest messages for guest ID c729c21d331c26f9103ad1024956e403 were already processed.","timestamp":"2025-05-14T11:14:57.485Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=6c8674af64c3c38b58bbf61b065d738e","timestamp":"2025-05-14T11:14:57.487Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 6c8674af64c3c38b58bbf61b065d738e","timestamp":"2025-05-14T11:14:57.487Z"} +{"level":"info","message":"Guest messages for guest ID 6c8674af64c3c38b58bbf61b065d738e were already processed.","timestamp":"2025-05-14T11:14:57.488Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746048025646-a9cve1ac8","timestamp":"2025-05-14T11:14:57.490Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746048025646-a9cve1ac8","timestamp":"2025-05-14T11:14:57.491Z"} +{"level":"info","message":"Guest messages for guest ID 1746048025646-a9cve1ac8 were already processed.","timestamp":"2025-05-14T11:14:57.491Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=758c5501236dd51c907b8035b014561e","timestamp":"2025-05-14T11:14:57.494Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 758c5501236dd51c907b8035b014561e","timestamp":"2025-05-14T11:14:57.494Z"} +{"level":"info","message":"Guest messages for guest ID 758c5501236dd51c907b8035b014561e were already processed.","timestamp":"2025-05-14T11:14:57.495Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0fc862553fa644a4d875a79ff01e1786","timestamp":"2025-05-14T11:14:57.497Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 0fc862553fa644a4d875a79ff01e1786","timestamp":"2025-05-14T11:14:57.498Z"} +{"level":"info","message":"Guest messages for guest ID 0fc862553fa644a4d875a79ff01e1786 were already processed.","timestamp":"2025-05-14T11:14:57.499Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=4ce93dd87f076a6bdcdfd373737d79f9","timestamp":"2025-05-14T11:14:57.501Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 4ce93dd87f076a6bdcdfd373737d79f9","timestamp":"2025-05-14T11:14:57.502Z"} +{"level":"info","message":"Guest messages for guest ID 4ce93dd87f076a6bdcdfd373737d79f9 were already processed.","timestamp":"2025-05-14T11:14:57.503Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1f09a77763c0f046aaa789f9d019984d","timestamp":"2025-05-14T11:14:57.505Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1f09a77763c0f046aaa789f9d019984d","timestamp":"2025-05-14T11:14:57.506Z"} +{"level":"info","message":"Guest messages for guest ID 1f09a77763c0f046aaa789f9d019984d were already processed.","timestamp":"2025-05-14T11:14:57.507Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=655c2a907c038a9f7324344d8e3af59e","timestamp":"2025-05-14T11:14:57.509Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 655c2a907c038a9f7324344d8e3af59e","timestamp":"2025-05-14T11:14:57.510Z"} +{"level":"info","message":"Guest messages for guest ID 655c2a907c038a9f7324344d8e3af59e were already processed.","timestamp":"2025-05-14T11:14:57.511Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0541b3cad5c9eaf088709e380d62d72e","timestamp":"2025-05-14T11:14:57.513Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 0541b3cad5c9eaf088709e380d62d72e","timestamp":"2025-05-14T11:14:57.514Z"} +{"level":"info","message":"Guest messages for guest ID 0541b3cad5c9eaf088709e380d62d72e were already processed.","timestamp":"2025-05-14T11:14:57.515Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=434910a20e533ca13211a6e5338f13f7","timestamp":"2025-05-14T11:14:57.518Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 434910a20e533ca13211a6e5338f13f7","timestamp":"2025-05-14T11:14:57.518Z"} +{"level":"info","message":"Guest messages for guest ID 434910a20e533ca13211a6e5338f13f7 were already processed.","timestamp":"2025-05-14T11:14:57.520Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=ce26ad9c9c646bc448d13e612ddff4c6","timestamp":"2025-05-14T11:14:57.523Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID ce26ad9c9c646bc448d13e612ddff4c6","timestamp":"2025-05-14T11:14:57.523Z"} +{"level":"info","message":"Guest messages for guest ID ce26ad9c9c646bc448d13e612ddff4c6 were already processed.","timestamp":"2025-05-14T11:14:57.524Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=6dcb1a67de88e628de643a201f9f455d","timestamp":"2025-05-14T11:14:57.526Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 6dcb1a67de88e628de643a201f9f455d","timestamp":"2025-05-14T11:14:57.527Z"} +{"level":"info","message":"Guest messages for guest ID 6dcb1a67de88e628de643a201f9f455d were already processed.","timestamp":"2025-05-14T11:14:57.528Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=f6a9e94119b2317d7b9be50733ac5e51","timestamp":"2025-05-14T11:14:57.530Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID f6a9e94119b2317d7b9be50733ac5e51","timestamp":"2025-05-14T11:14:57.530Z"} +{"level":"info","message":"Guest messages for guest ID f6a9e94119b2317d7b9be50733ac5e51 were already processed.","timestamp":"2025-05-14T11:14:57.531Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=19fae7d5baa3b5217a8bb3d96c9cbf82","timestamp":"2025-05-14T11:14:57.533Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 19fae7d5baa3b5217a8bb3d96c9cbf82","timestamp":"2025-05-14T11:14:57.534Z"} +{"level":"info","message":"Guest messages for guest ID 19fae7d5baa3b5217a8bb3d96c9cbf82 were already processed.","timestamp":"2025-05-14T11:14:57.535Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0d929f5ec7a0b00d2e5cfd54eb1c2c7e","timestamp":"2025-05-14T11:14:57.537Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 0d929f5ec7a0b00d2e5cfd54eb1c2c7e","timestamp":"2025-05-14T11:14:57.537Z"} +{"level":"info","message":"Guest messages for guest ID 0d929f5ec7a0b00d2e5cfd54eb1c2c7e were already processed.","timestamp":"2025-05-14T11:14:57.538Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=ba2ffec057a35dd8f68d2f0791c2b842","timestamp":"2025-05-14T11:14:57.540Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID ba2ffec057a35dd8f68d2f0791c2b842","timestamp":"2025-05-14T11:14:57.541Z"} +{"level":"info","message":"Guest messages for guest ID ba2ffec057a35dd8f68d2f0791c2b842 were already processed.","timestamp":"2025-05-14T11:14:57.541Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=3926a395b41803c5a6b0365b97fb3cb5","timestamp":"2025-05-14T11:14:57.544Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 3926a395b41803c5a6b0365b97fb3cb5","timestamp":"2025-05-14T11:14:57.544Z"} +{"level":"info","message":"Guest messages for guest ID 3926a395b41803c5a6b0365b97fb3cb5 were already processed.","timestamp":"2025-05-14T11:14:57.545Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=dcbbfc0c915a1ce026528c2104106209","timestamp":"2025-05-14T11:14:57.547Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID dcbbfc0c915a1ce026528c2104106209","timestamp":"2025-05-14T11:14:57.548Z"} +{"level":"info","message":"Guest messages for guest ID dcbbfc0c915a1ce026528c2104106209 were already processed.","timestamp":"2025-05-14T11:14:57.549Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=a2adbf150cc15e85cad5b6ad087b710b","timestamp":"2025-05-14T11:14:57.551Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID a2adbf150cc15e85cad5b6ad087b710b","timestamp":"2025-05-14T11:14:57.552Z"} +{"level":"info","message":"Guest messages for guest ID a2adbf150cc15e85cad5b6ad087b710b were already processed.","timestamp":"2025-05-14T11:14:57.553Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=b9003e60118545cc8cb0623077cc4f63","timestamp":"2025-05-14T11:14:57.555Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID b9003e60118545cc8cb0623077cc4f63","timestamp":"2025-05-14T11:14:57.555Z"} +{"level":"info","message":"Guest messages for guest ID b9003e60118545cc8cb0623077cc4f63 were already processed.","timestamp":"2025-05-14T11:14:57.557Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=efd5f85208bdbe946f0d3f04c9ba336d","timestamp":"2025-05-14T11:14:57.559Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID efd5f85208bdbe946f0d3f04c9ba336d","timestamp":"2025-05-14T11:14:57.559Z"} +{"level":"info","message":"Guest messages for guest ID efd5f85208bdbe946f0d3f04c9ba336d were already processed.","timestamp":"2025-05-14T11:14:57.560Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=f3b209b70545a9a0aa1a4f94a0238785","timestamp":"2025-05-14T11:14:57.562Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID f3b209b70545a9a0aa1a4f94a0238785","timestamp":"2025-05-14T11:14:57.563Z"} +{"level":"info","message":"Guest messages for guest ID f3b209b70545a9a0aa1a4f94a0238785 were already processed.","timestamp":"2025-05-14T11:14:57.564Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=bf3fdb217687be2bdd5d0baaa18e2665","timestamp":"2025-05-14T11:14:57.566Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID bf3fdb217687be2bdd5d0baaa18e2665","timestamp":"2025-05-14T11:14:57.566Z"} +{"level":"info","message":"Guest messages for guest ID bf3fdb217687be2bdd5d0baaa18e2665 were already processed.","timestamp":"2025-05-14T11:14:57.568Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=fbd39c74ae8b8b48930e08b519787a12","timestamp":"2025-05-14T11:14:57.570Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID fbd39c74ae8b8b48930e08b519787a12","timestamp":"2025-05-14T11:14:57.570Z"} +{"level":"info","message":"Guest messages for guest ID fbd39c74ae8b8b48930e08b519787a12 were already processed.","timestamp":"2025-05-14T11:14:57.572Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=23fb4de594179339d2b6f27be5891a96","timestamp":"2025-05-14T11:14:57.574Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 23fb4de594179339d2b6f27be5891a96","timestamp":"2025-05-14T11:14:57.574Z"} +{"level":"info","message":"Guest messages for guest ID 23fb4de594179339d2b6f27be5891a96 were already processed.","timestamp":"2025-05-14T11:14:57.576Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=806b063766ddc43e8fc0b822c032472d","timestamp":"2025-05-14T11:14:57.578Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 806b063766ddc43e8fc0b822c032472d","timestamp":"2025-05-14T11:14:57.578Z"} +{"level":"info","message":"Guest messages for guest ID 806b063766ddc43e8fc0b822c032472d were already processed.","timestamp":"2025-05-14T11:14:57.579Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=b6f8dc2c159c5b4983e9431cfb3e02ea","timestamp":"2025-05-14T11:14:57.581Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID b6f8dc2c159c5b4983e9431cfb3e02ea","timestamp":"2025-05-14T11:14:57.582Z"} +{"level":"info","message":"Guest messages for guest ID b6f8dc2c159c5b4983e9431cfb3e02ea were already processed.","timestamp":"2025-05-14T11:14:57.583Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=7dcd8237d8bb9b8344a16748851aaa1d","timestamp":"2025-05-14T11:14:57.585Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 7dcd8237d8bb9b8344a16748851aaa1d","timestamp":"2025-05-14T11:14:57.585Z"} +{"level":"info","message":"Guest messages for guest ID 7dcd8237d8bb9b8344a16748851aaa1d were already processed.","timestamp":"2025-05-14T11:14:57.586Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=7fd62b29aad08c99e38fe96abb70158f","timestamp":"2025-05-14T11:14:57.589Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 7fd62b29aad08c99e38fe96abb70158f","timestamp":"2025-05-14T11:14:57.589Z"} +{"level":"info","message":"Guest messages for guest ID 7fd62b29aad08c99e38fe96abb70158f were already processed.","timestamp":"2025-05-14T11:14:57.590Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=dbd03ab1af02855698333b2c8916ec3f","timestamp":"2025-05-14T11:14:57.592Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID dbd03ab1af02855698333b2c8916ec3f","timestamp":"2025-05-14T11:14:57.593Z"} +{"level":"info","message":"Guest messages for guest ID dbd03ab1af02855698333b2c8916ec3f were already processed.","timestamp":"2025-05-14T11:14:57.594Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=937df75e640dce12ded1832a8b607040","timestamp":"2025-05-14T11:14:57.596Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 937df75e640dce12ded1832a8b607040","timestamp":"2025-05-14T11:14:57.596Z"} +{"level":"info","message":"Guest messages for guest ID 937df75e640dce12ded1832a8b607040 were already processed.","timestamp":"2025-05-14T11:14:57.597Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746057084616-5yz5fv65c","timestamp":"2025-05-14T11:14:57.600Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746057084616-5yz5fv65c","timestamp":"2025-05-14T11:14:57.600Z"} +{"level":"info","message":"Guest messages for guest ID 1746057084616-5yz5fv65c were already processed.","timestamp":"2025-05-14T11:14:57.601Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=3919e986b4c273269d4053b4a4753198","timestamp":"2025-05-14T11:14:57.604Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 3919e986b4c273269d4053b4a4753198","timestamp":"2025-05-14T11:14:57.604Z"} +{"level":"info","message":"Guest messages for guest ID 3919e986b4c273269d4053b4a4753198 were already processed.","timestamp":"2025-05-14T11:14:57.605Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=8094762fbaf7141795fd886835bcd372","timestamp":"2025-05-14T11:14:57.608Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 8094762fbaf7141795fd886835bcd372","timestamp":"2025-05-14T11:14:57.608Z"} +{"level":"info","message":"Guest messages for guest ID 8094762fbaf7141795fd886835bcd372 were already processed.","timestamp":"2025-05-14T11:14:57.609Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=061143c028cafec9296f383002126907","timestamp":"2025-05-14T11:14:57.612Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 061143c028cafec9296f383002126907","timestamp":"2025-05-14T11:14:57.612Z"} +{"level":"info","message":"Guest messages for guest ID 061143c028cafec9296f383002126907 were already processed.","timestamp":"2025-05-14T11:14:57.613Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746053084533-wqwfw5fm2","timestamp":"2025-05-14T11:14:57.616Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746053084533-wqwfw5fm2","timestamp":"2025-05-14T11:14:57.616Z"} +{"level":"info","message":"Guest messages for guest ID 1746053084533-wqwfw5fm2 were already processed.","timestamp":"2025-05-14T11:14:57.617Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=e172290cd6263e6f2594333f5f90e4f7","timestamp":"2025-05-14T11:14:57.620Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID e172290cd6263e6f2594333f5f90e4f7","timestamp":"2025-05-14T11:14:57.621Z"} +{"level":"info","message":"Guest messages for guest ID e172290cd6263e6f2594333f5f90e4f7 were already processed.","timestamp":"2025-05-14T11:14:57.621Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=96f5c4804077390d2e15606f9819f55f","timestamp":"2025-05-14T11:14:57.624Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 96f5c4804077390d2e15606f9819f55f","timestamp":"2025-05-14T11:14:57.624Z"} +{"level":"info","message":"Guest messages for guest ID 96f5c4804077390d2e15606f9819f55f were already processed.","timestamp":"2025-05-14T11:14:57.625Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=f76c4b9a764e2d6b8c59fd19687812ff","timestamp":"2025-05-14T11:14:57.627Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID f76c4b9a764e2d6b8c59fd19687812ff","timestamp":"2025-05-14T11:14:57.628Z"} +{"level":"info","message":"Guest messages for guest ID f76c4b9a764e2d6b8c59fd19687812ff were already processed.","timestamp":"2025-05-14T11:14:57.629Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=c4378cb2eaec94d5e68835cd6a95f334","timestamp":"2025-05-14T11:14:57.631Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID c4378cb2eaec94d5e68835cd6a95f334","timestamp":"2025-05-14T11:14:57.631Z"} +{"level":"info","message":"Guest messages for guest ID c4378cb2eaec94d5e68835cd6a95f334 were already processed.","timestamp":"2025-05-14T11:14:57.632Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=72b3851bc1e64d63c499e6b534c2f685","timestamp":"2025-05-14T11:14:57.635Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 72b3851bc1e64d63c499e6b534c2f685","timestamp":"2025-05-14T11:14:57.635Z"} +{"level":"info","message":"Guest messages for guest ID 72b3851bc1e64d63c499e6b534c2f685 were already processed.","timestamp":"2025-05-14T11:14:57.636Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0a4c115f9b71959ba238ed4d69d0b2bd","timestamp":"2025-05-14T11:14:57.639Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 0a4c115f9b71959ba238ed4d69d0b2bd","timestamp":"2025-05-14T11:14:57.639Z"} +{"level":"info","message":"Guest messages for guest ID 0a4c115f9b71959ba238ed4d69d0b2bd were already processed.","timestamp":"2025-05-14T11:14:57.640Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=5e9687d8aa37392dbcc6502eaa8777f5","timestamp":"2025-05-14T11:14:57.642Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 5e9687d8aa37392dbcc6502eaa8777f5","timestamp":"2025-05-14T11:14:57.643Z"} +{"level":"info","message":"Guest messages for guest ID 5e9687d8aa37392dbcc6502eaa8777f5 were already processed.","timestamp":"2025-05-14T11:14:57.644Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=d8eb7603a4d012cc0077750dfe895d4f","timestamp":"2025-05-14T11:14:57.646Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID d8eb7603a4d012cc0077750dfe895d4f","timestamp":"2025-05-14T11:14:57.646Z"} +{"level":"info","message":"Guest messages for guest ID d8eb7603a4d012cc0077750dfe895d4f were already processed.","timestamp":"2025-05-14T11:14:57.648Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=8af4660b9c469159e7e6a3a96fc3e887","timestamp":"2025-05-14T11:14:57.650Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 8af4660b9c469159e7e6a3a96fc3e887","timestamp":"2025-05-14T11:14:57.650Z"} +{"level":"info","message":"Guest messages for guest ID 8af4660b9c469159e7e6a3a96fc3e887 were already processed.","timestamp":"2025-05-14T11:14:57.651Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=2a11b17d8e84aa6bc1f11695c69c7797","timestamp":"2025-05-14T11:14:57.654Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 2a11b17d8e84aa6bc1f11695c69c7797","timestamp":"2025-05-14T11:14:57.654Z"} +{"level":"info","message":"Guest messages for guest ID 2a11b17d8e84aa6bc1f11695c69c7797 were already processed.","timestamp":"2025-05-14T11:14:57.655Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=8b5d6a6fab3d07cbc262c7a27c40007f","timestamp":"2025-05-14T11:14:57.657Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 8b5d6a6fab3d07cbc262c7a27c40007f","timestamp":"2025-05-14T11:14:57.657Z"} +{"level":"info","message":"Guest messages for guest ID 8b5d6a6fab3d07cbc262c7a27c40007f were already processed.","timestamp":"2025-05-14T11:14:57.658Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746463345144-ylmarlnq2","timestamp":"2025-05-14T11:14:57.661Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746463345144-ylmarlnq2","timestamp":"2025-05-14T11:14:57.661Z"} +{"level":"info","message":"Guest messages for guest ID 1746463345144-ylmarlnq2 were already processed.","timestamp":"2025-05-14T11:14:57.662Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=71aa676b5148fcf70266f62033ac07ce","timestamp":"2025-05-14T11:14:57.664Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 71aa676b5148fcf70266f62033ac07ce","timestamp":"2025-05-14T11:14:57.664Z"} +{"level":"info","message":"Guest messages for guest ID 71aa676b5148fcf70266f62033ac07ce were already processed.","timestamp":"2025-05-14T11:14:57.665Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","authType":"wallet","authenticated":true,"cookie":{"expires":"2025-06-13T11:14:16.984Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"c7d08b33c81f332520551ac825dccf65","isAdmin":true,"level":"info","message":"[SessionService] Saving session data:","processedGuestIds":["c7d08b33c81f332520551ac825dccf65","c729c21d331c26f9103ad1024956e403","6c8674af64c3c38b58bbf61b065d738e","1746048025646-a9cve1ac8","758c5501236dd51c907b8035b014561e","0fc862553fa644a4d875a79ff01e1786","4ce93dd87f076a6bdcdfd373737d79f9","1f09a77763c0f046aaa789f9d019984d","655c2a907c038a9f7324344d8e3af59e","0541b3cad5c9eaf088709e380d62d72e","434910a20e533ca13211a6e5338f13f7","ce26ad9c9c646bc448d13e612ddff4c6","6dcb1a67de88e628de643a201f9f455d","f6a9e94119b2317d7b9be50733ac5e51","19fae7d5baa3b5217a8bb3d96c9cbf82","0d929f5ec7a0b00d2e5cfd54eb1c2c7e","ba2ffec057a35dd8f68d2f0791c2b842","3926a395b41803c5a6b0365b97fb3cb5","dcbbfc0c915a1ce026528c2104106209","a2adbf150cc15e85cad5b6ad087b710b","b9003e60118545cc8cb0623077cc4f63","efd5f85208bdbe946f0d3f04c9ba336d","f3b209b70545a9a0aa1a4f94a0238785","bf3fdb217687be2bdd5d0baaa18e2665","fbd39c74ae8b8b48930e08b519787a12","23fb4de594179339d2b6f27be5891a96","806b063766ddc43e8fc0b822c032472d","b6f8dc2c159c5b4983e9431cfb3e02ea","7dcd8237d8bb9b8344a16748851aaa1d","7fd62b29aad08c99e38fe96abb70158f","dbd03ab1af02855698333b2c8916ec3f","937df75e640dce12ded1832a8b607040","1746057084616-5yz5fv65c","3919e986b4c273269d4053b4a4753198","8094762fbaf7141795fd886835bcd372","061143c028cafec9296f383002126907","1746053084533-wqwfw5fm2","e172290cd6263e6f2594333f5f90e4f7","96f5c4804077390d2e15606f9819f55f","f76c4b9a764e2d6b8c59fd19687812ff","c4378cb2eaec94d5e68835cd6a95f334","72b3851bc1e64d63c499e6b534c2f685","0a4c115f9b71959ba238ed4d69d0b2bd","5e9687d8aa37392dbcc6502eaa8777f5","d8eb7603a4d012cc0077750dfe895d4f","8af4660b9c469159e7e6a3a96fc3e887","2a11b17d8e84aa6bc1f11695c69c7797","8b5d6a6fab3d07cbc262c7a27c40007f","1746463345144-ylmarlnq2","71aa676b5148fcf70266f62033ac07ce"],"timestamp":"2025-05-14T11:14:57.667Z","userId":1} +{"level":"info","message":"Session saved successfully","timestamp":"2025-05-14T11:14:57.671Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:57.681Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:14:57.682Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:14:57.693Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:14:57.695Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:57.706Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:14:57.708Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:14:57.719Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:14:57.721Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:14:57.733Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:14:57.734Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:14:57.745Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:14:57.747Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:57.757Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:14:57.759Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:14:57.772Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:14:57.774Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:14:57.792Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:14:57.794Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:14:57.807Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:14:57.810Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T11:14:57.818Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T11:14:57.819Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:14:57.825Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:14:57.829Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:14:57.841Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:14:57.843Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T11:14:58.576Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T11:14:58.943Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T11:14:59.704Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T11:14:59.934Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T11:14:59.934Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T11:14:59.968Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T11:14:59.968Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T11:15:00.410Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T11:15:00.811Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T11:15:01.594Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T11:15:00.818Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T11:15:00.818Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:15:02.143Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.145Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:15:02.159Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.161Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:02.172Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.175Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:15:02.189Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.193Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:02.200Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.207Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:15:02.220Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.222Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:02.224Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.234Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T11:15:02.237Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:15:02.253Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.255Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:02.259Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.265Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:15:02.273Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.276Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:02.280Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.286Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:15:02.296Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.298Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:02.302Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.307Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:15:02.314Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.316Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:02.317Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.320Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:02.330Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.333Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:02.341Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.344Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:02.352Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.354Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:02.365Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.369Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:02.378Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.380Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:02.388Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.390Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:02.398Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.400Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:02.408Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.410Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:02.419Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:02.421Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:15:03.726Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.729Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:15:03.764Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.769Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:03.773Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.776Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:15:03.792Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.795Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:03.798Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.804Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:15:03.816Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.819Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:03.822Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.834Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:15:03.848Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.855Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:03.861Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.864Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:15:03.876Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.879Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:03.885Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.890Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:15:03.900Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.904Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:03.909Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.912Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:15:03.924Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:03.926Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.929Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.931Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:03.941Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.944Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:03.957Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.960Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:03.971Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.973Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:03.984Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:03.987Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:03.998Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:04.001Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:04.012Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:04.014Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:04.026Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:04.029Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:04.040Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:04.044Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:04.055Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:04.059Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T11:15:11.382Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:15:11.388Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:11.392Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:11.413Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:11.417Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:15:11.433Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:11.436Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:11.455Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:11.457Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:11.475Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:11.479Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:11.498Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:11.500Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:27.470Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:27.473Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:34.224Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:34.227Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:34.258Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:34.260Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:34.275Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:34.277Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:34.322Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:34.325Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:41.888Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:41.890Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:15:55.669Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:15:55.673Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:16:05.277Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:16:05.280Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:16:05.293Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:16:05.296Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:16:05.307Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:16:05.310Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:16:05.322Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:16:05.325Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:16:12.772Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:16:12.775Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:16:25.809Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:16:25.814Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:16:35.420Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:16:35.424Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:16:35.442Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:16:35.445Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:16:35.459Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:16:35.463Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:16:35.475Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:16:35.478Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:16:42.933Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:16:42.936Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:16:55.989Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:16:55.995Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:05.589Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:05.592Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:05.629Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:05.632Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:05.644Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:05.647Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:05.660Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:05.663Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:13.098Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:13.101Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:26.008Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.013Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:17:26.501Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.504Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:17:26.526Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.531Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:17:26.549Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.552Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:26.568Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:17:26.573Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.575Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T11:17:26.577Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.581Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:26.593Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.599Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:17:26.605Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.608Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:26.624Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.629Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:17:26.636Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.640Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:26.651Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.654Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:17:26.662Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.665Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:26.672Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.675Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:17:26.685Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.688Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:26.693Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.695Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:26.707Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.710Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:26.720Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.723Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:26.734Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.737Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:26.749Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.752Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:26.763Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.766Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:26.776Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.778Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:26.790Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.792Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:26.806Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.809Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:26.820Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.822Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:26.835Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:26.838Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:56.167Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:56.171Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:56.861Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:56.865Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:56.897Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:56.900Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:56.912Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:56.916Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:17:56.930Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:17:56.933Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:18:26.411Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:18:26.416Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:18:27.123Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:18:27.126Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:18:27.160Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:18:27.162Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:18:27.174Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:18:27.177Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:18:27.191Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:18:27.194Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:18:56.475Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:18:56.479Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:18:57.173Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:18:57.175Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:18:57.210Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:18:57.213Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:18:57.225Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:18:57.227Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:18:57.239Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:18:57.242Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:18:59.973Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:18:59.978Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:18:59.998Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.002Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:19:00.016Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.019Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:00.032Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.036Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:19:00.040Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.043Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:00.054Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.059Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:19:00.063Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.066Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:00.077Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.081Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:19:00.088Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.092Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:00.098Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.101Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:19:00.110Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.114Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:00.121Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.123Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:19:00.134Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.140Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:00.145Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.147Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:00.160Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.163Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:00.175Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.178Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:00.189Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.193Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:00.203Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.206Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:00.218Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.220Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:00.232Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.234Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:00.246Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.248Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:00.259Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.261Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:00.272Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.275Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:00.285Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:00.288Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T11:19:01.973Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:19:01.977Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:01.980Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:02.007Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:02.009Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:19:02.024Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:02.027Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:02.043Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:02.046Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:02.062Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:02.066Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:02.081Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:02.086Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:26.698Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:26.702Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:30.382Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:30.385Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:30.417Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:30.420Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:30.431Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:30.434Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:30.447Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:30.450Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:19:57.055Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:19:57.059Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:20:01.359Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:20:01.362Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:20:01.374Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:20:01.378Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:20:01.389Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:20:01.392Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:20:01.404Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:20:01.407Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:20:27.017Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:20:27.022Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:20:30.691Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:20:30.694Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:20:30.725Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:20:30.729Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:20:30.740Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:20:30.742Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:20:30.755Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:20:30.758Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:20:57.271Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:20:57.275Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:01.079Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:01.083Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:01.102Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:01.105Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:01.121Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:01.123Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:01.136Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:01.140Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:27.568Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:27.572Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:31.866Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:31.868Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:31.880Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:31.882Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:31.893Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:31.896Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:31.910Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:31.913Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:21:46.032Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.036Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:21:46.050Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.052Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:21:46.070Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.074Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:46.089Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:21:46.092Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T11:21:46.095Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.098Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.099Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:46.116Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.120Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:21:46.125Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.129Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:46.140Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.143Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:21:46.149Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.151Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:46.159Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.163Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:21:46.169Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.171Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:46.179Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.183Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:21:46.190Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.194Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:46.199Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.203Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:46.215Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.218Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:46.233Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.238Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:46.252Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.255Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:46.272Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.275Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:46.286Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.288Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:46.299Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.302Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:46.313Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.315Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:46.327Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.330Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:46.341Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.344Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:46.357Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:46.360Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:21:57.578Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:21:57.582Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:22:17.046Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:22:17.053Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:22:17.064Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:22:17.067Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:22:17.079Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:22:17.082Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:22:17.094Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:22:17.097Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:22:27.257Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:22:27.261Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:22:46.033Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:22:46.037Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:22:46.049Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:22:46.051Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:22:46.063Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:22:46.065Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:22:46.077Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:22:46.081Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:22:55.846Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:22:55.850Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:23:17.560Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:23:17.563Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:23:17.573Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:23:17.575Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:23:17.587Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:23:17.588Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:23:17.599Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:23:17.601Z"} +{"client":{"_connected":true,"_connecting":false,"_connectionCallback":null,"_connectionError":false,"_connectionTimeoutMillis":0,"_ended":false,"_ending":true,"_events":{},"_eventsCount":1,"_poolUseCount":16,"_queryable":false,"_types":{"_types":{"arrayParser":{},"builtins":{"ABSTIME":702,"ACLITEM":1033,"BIT":1560,"BOOL":16,"BPCHAR":1042,"BYTEA":17,"CHAR":18,"CID":29,"CIDR":650,"CIRCLE":718,"DATE":1082,"FLOAT4":700,"FLOAT8":701,"GTSVECTOR":3642,"INET":869,"INT2":21,"INT4":23,"INT8":20,"INTERVAL":1186,"JSON":114,"JSONB":3802,"MACADDR":829,"MACADDR8":774,"MONEY":790,"NUMERIC":1700,"OID":26,"PATH":602,"PG_DEPENDENCIES":3402,"PG_LSN":3220,"PG_NDISTINCT":3361,"PG_NODE_TREE":194,"POLYGON":604,"REFCURSOR":1790,"REGCLASS":2205,"REGCONFIG":3734,"REGDICTIONARY":3769,"REGNAMESPACE":4089,"REGOPER":2203,"REGOPERATOR":2204,"REGPROC":24,"REGPROCEDURE":2202,"REGROLE":4096,"REGTYPE":2206,"RELTIME":703,"SMGR":210,"TEXT":25,"TID":27,"TIME":1083,"TIMESTAMP":1114,"TIMESTAMPTZ":1184,"TIMETZ":1266,"TINTERVAL":704,"TSQUERY":3615,"TSVECTOR":3614,"TXID_SNAPSHOT":2970,"UUID":2950,"VARBIT":1562,"VARCHAR":1043,"XID":28,"XML":142}},"binary":{},"text":{}},"activeQuery":null,"binary":false,"connection":{"_connecting":true,"_emitMessage":false,"_ending":true,"_events":{"end":[null,null]},"_eventsCount":23,"_keepAlive":false,"_keepAliveInitialDelayMillis":0,"lastBuffer":false,"parsedStatements":{},"ssl":false,"stream":{"_closeAfterHandlingError":false,"_events":{"end":[null,null]},"_eventsCount":4,"_hadError":false,"_host":"postgres","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"awaitDrainWriters":null,"buffer":[],"bufferIndex":0,"highWaterMark":16384,"length":0,"pipes":[]},"_server":null,"_sockname":null,"_writableState":{"bufferedIndex":0,"corked":0,"highWaterMark":16384,"length":0,"pendingcb":0,"writelen":0},"allowHalfOpen":false,"connecting":false,"server":null}},"connectionParameters":{"binary":false,"client_encoding":"","connect_timeout":0,"database":"dapp_db","host":"postgres","idle_in_transaction_session_timeout":false,"isDomainSocket":false,"lock_timeout":false,"port":5432,"query_timeout":false,"ssl":false,"statement_timeout":false,"user":"dapp_user"},"database":"dapp_db","enableChannelBinding":false,"hasExecuted":true,"host":"postgres","port":5432,"processID":2655,"queryQueue":[],"readyForQuery":true,"saslSession":null,"secretKey":-818342883,"ssl":false,"user":"dapp_user"},"code":"57P01","file":"postgres.c","length":116,"level":"error","line":"3286","message":"Uncaught Exception: terminating connection due to administrator command","name":"error","routine":"ProcessInterrupts","severity":"FATAL","stack":"error: terminating connection due to administrator command\n at Parser.parseErrorMessage (/app/node_modules/pg-protocol/dist/parser.js:285:98)\n at Parser.handlePacket (/app/node_modules/pg-protocol/dist/parser.js:122:29)\n at Parser.parse (/app/node_modules/pg-protocol/dist/parser.js:35:38)\n at Socket. (/app/node_modules/pg-protocol/dist/index.js:11:42)\n at Socket.emit (node:events:524:28)\n at addChunk (node:internal/streams/readable:561:12)\n at readableAddChunkPushByteMode (node:internal/streams/readable:512:3)\n at Readable.push (node:internal/streams/readable:392:5)\n at TCP.onStreamRead (node:internal/stream_base_commons:191:23)","timestamp":"2025-05-14T11:23:19.941Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-05-14T11:23:22.210Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-05-14T11:23:22.213Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-05-14T11:23:22.214Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-05-14T11:23:22.214Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-05-14T11:23:22.215Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-05-14T11:23:22.215Z"} +{"code":"ENETUNREACH","errno":"ENETUNREACH","level":"error","message":"Error launching Telegram bot: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)","stack":"FetchError: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)\n at ClientRequest. (/app/node_modules/node-fetch/lib/index.js:1501:11)\n at ClientRequest.emit (node:events:524:28)\n at emitErrorEvent (node:_http_client:101:11)\n at TLSSocket.socketErrorListener (node:_http_client:504:5)\n at TLSSocket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)","timestamp":"2025-05-14T11:23:22.536Z","type":"system"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:23:26.020Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:23:26.034Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:23:47.735Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:23:47.742Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:23:47.767Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:23:47.770Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:23:47.786Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:23:47.790Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:23:47.804Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:23:47.807Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:24:17.749Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:24:17.753Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:24:17.785Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:24:17.788Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:24:17.802Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:24:17.804Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:24:17.817Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:24:17.819Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:24:23.051Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:24:23.054Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:24:45.759Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:24:45.762Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:24:45.795Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:24:45.797Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:24:45.809Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:24:45.811Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:24:45.825Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:24:45.827Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:23.399Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:23.402Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:23.435Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:23.438Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:23.451Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:23.453Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:23.465Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:23.468Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:23.481Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:23.484Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:56.049Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:56.055Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:56.072Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:56.074Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:56.089Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:56.091Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:56.106Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:56.108Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:56.121Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:56.123Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:25:57.251Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.255Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.289Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.293Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:25:57.317Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.320Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.342Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.346Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T11:25:57.354Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T11:25:57.358Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.398Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.401Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.417Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.420Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:25:57.436Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.438Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:25:57.449Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.452Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.461Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.466Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:25:57.471Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.476Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.482Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.485Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:25:57.496Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.500Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T11:25:57.503Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.509Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.512Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:25:57.519Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.521Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.524Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.527Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:25:57.535Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.537Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.540Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.542Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:25:57.553Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.556Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.561Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.566Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:25:57.587Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.591Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.595Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.598Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.607Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.609Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.618Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.620Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.628Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.630Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.639Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.641Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.654Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.657Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.667Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.669Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.679Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.680Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.688Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.690Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:25:57.698Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:25:57.700Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T11:25:59.984Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T11:26:02.404Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T11:26:03.737Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T11:26:06.159Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T11:26:06.160Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:26:28.067Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:26:28.070Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:26:28.084Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:26:28.087Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:26:28.100Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:26:28.103Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:26:28.116Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:26:28.119Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:26:28.132Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:26:28.134Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:26:58.353Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:26:58.357Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:26:58.391Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:26:58.393Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:26:58.404Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:26:58.407Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:26:58.419Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:26:58.421Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:26:58.435Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:26:58.438Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:27:26.921Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:26.925Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:27:26.963Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:26.966Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:27:26.984Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:26.988Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:27:27.003Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.007Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:27:27.009Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.015Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:27:27.028Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.032Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:27:27.035Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.037Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:27:27.047Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.050Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:27:27.055Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.058Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:27:27.064Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.068Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:27:27.075Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.078Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:27:27.082Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.087Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:27:27.095Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.097Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:27:27.102Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.106Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:27:27.117Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.120Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:27:27.135Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.137Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:27:27.152Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.155Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:27:27.170Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.172Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:27:27.187Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.189Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:27:27.203Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.205Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:27:27.217Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.219Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:27:27.232Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.234Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:27:27.246Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.249Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:27:27.260Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.261Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:27:27.931Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:27:27.933Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-14T11:27:28.609Z"} +{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-14T11:27:28.639Z"} +{"count":22,"level":"info","limit":30,"message":"Returning message history for user 1","offset":0,"timestamp":"2025-05-14T11:27:28.646Z","total":22} +{"level":"info","message":"POST /api/chat/message","timestamp":"2025-05-14T11:27:35.921Z"} +{"level":"info","message":"Received /message request","timestamp":"2025-05-14T11:27:35.923Z"} +{"conversationId":16,"level":"info","message":"Created new conversation","timestamp":"2025-05-14T11:27:35.934Z","userId":1} +{"conversationId":16,"level":"info","message":"User message saved","messageId":31,"timestamp":"2025-05-14T11:27:35.942Z"} +{"level":"info","message":"Getting AI response for:","timestamp":"2025-05-14T11:27:35.942Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:28:09.550Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:28:09.555Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:28:09.571Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:28:09.574Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:28:09.588Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:28:09.590Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:28:09.601Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:28:09.604Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:28:09.619Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:28:09.621Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:28:27.197Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:28:27.206Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:28:27.228Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:28:27.233Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:28:27.258Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:28:27.261Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:28:27.283Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:28:27.289Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:28:27.919Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:28:27.922Z"} +{"conversationId":16,"level":"info","message":"AI response received","timestamp":"2025-05-14T11:28:33.912Z"} +{"conversationId":16,"level":"info","message":"AI response saved","messageId":32,"timestamp":"2025-05-14T11:28:33.930Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:28:57.734Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:28:57.738Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:28:57.832Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:28:57.835Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:28:57.998Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:28:58.000Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:28:58.092Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:28:58.094Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:28:58.799Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:28:58.801Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:26.374Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:26.378Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:26.392Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:26.394Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:26.406Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:26.408Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:26.420Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:26.424Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:27.446Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:27.448Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:43.395Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.398Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:43.415Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.418Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:43.435Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.437Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:43.454Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:43.461Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.465Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T11:29:43.469Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.483Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:43.499Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:43.502Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.503Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.505Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:43.516Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.521Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:43.525Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.527Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:43.537Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.540Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:43.545Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.547Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:43.553Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.556Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:43.562Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.566Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:43.569Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.573Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:43.585Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.588Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:43.601Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.603Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:43.615Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.617Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:43.628Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.630Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:43.642Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.645Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:43.657Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.659Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:43.671Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.673Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:43.686Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.689Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:43.702Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.704Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:43.715Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:43.718Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:45.318Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.321Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:45.341Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.344Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:45.346Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.349Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:45.363Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.365Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:45.367Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.370Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:45.384Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.387Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:45.392Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.394Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:45.425Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.427Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:45.439Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.443Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:45.454Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.457Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:45.466Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.468Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:45.495Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.499Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:45.503Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.506Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:45.516Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.519Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:45.526Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.528Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:45.541Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.543Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:45.554Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.556Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:45.567Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.570Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:45.582Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.584Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:45.596Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.598Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:45.610Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.612Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:45.625Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.628Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:45.646Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.649Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:45.662Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:45.665Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:54.837Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:54.840Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:54.861Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:54.864Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:54.876Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:54.884Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:54.890Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:54.892Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:54.904Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:54.907Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:54.911Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:54.920Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T11:29:54.927Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:54.934Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:54.939Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:54.944Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:54.948Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:54.952Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:54.955Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:54.967Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:54.970Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:54.973Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:54.976Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:54.989Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:54.994Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:54.996Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:54.998Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:29:55.010Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:55.013Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:55.014Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:55.018Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:55.029Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:55.031Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:55.044Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:55.048Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:55.071Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:55.073Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:55.084Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:55.086Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:55.100Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:55.102Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:55.114Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:55.116Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:55.127Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:55.129Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:55.143Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:55.146Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:55.161Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:55.163Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:29:56.114Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:29:56.117Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:30:23.690Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:30:23.695Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:30:23.715Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:30:23.718Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:30:23.750Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:30:23.753Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:30:23.766Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:30:23.768Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:30:26.871Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:30:26.873Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:30:53.831Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:30:53.834Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:30:53.867Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:30:53.869Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:30:53.883Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:30:53.885Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:30:53.897Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:30:53.899Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:30:57.050Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:30:57.052Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:31:24.058Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:31:24.061Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:31:24.074Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:31:24.076Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:31:24.087Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:31:24.089Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:31:24.100Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:31:24.102Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:31:54.235Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:31:54.239Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:31:54.251Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:31:54.255Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:31:54.272Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:31:54.274Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:31:54.285Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:31:54.287Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:31:58.518Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:31:58.520Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:32:24.428Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:32:24.431Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:32:24.447Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:32:24.449Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:32:24.463Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:32:24.466Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:32:24.481Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:32:24.483Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:32:54.578Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:32:54.583Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:32:54.597Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:32:54.599Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:32:54.612Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:32:54.614Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:32:54.626Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:32:54.628Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:32:59.995Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:32:59.997Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:01.598Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:01.602Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:01.632Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:01.635Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:01.647Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:01.650Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:01.661Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:01.662Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:01.675Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:01.677Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:34:12.612Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.617Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:34:12.632Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.636Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:34:12.647Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.651Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:12.662Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:34:12.664Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.665Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.668Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:12.680Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.682Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:34:12.684Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.687Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:12.696Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.700Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:34:12.706Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.709Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:12.714Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.715Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:34:12.724Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.727Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:12.730Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.733Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:34:12.742Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.746Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:12.749Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.751Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:12.764Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.766Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:12.778Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.780Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:12.792Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.795Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:12.806Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.808Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:12.820Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.822Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:12.834Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.836Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:12.848Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.850Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:12.861Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.863Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:12.875Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.877Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:12.888Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:12.890Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:28.402Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:28.406Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:43.437Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:43.440Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:43.468Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:43.469Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:43.477Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:43.479Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:43.487Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:43.488Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:34:58.055Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:34:58.058Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:35:13.195Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:35:13.198Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:35:13.211Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:35:13.213Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:35:13.224Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:35:13.226Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:35:13.236Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:35:13.238Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:35:28.312Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:35:28.316Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:35:43.751Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:35:43.754Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:35:43.788Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:35:43.789Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:35:43.800Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:35:43.802Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:35:43.814Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:35:43.816Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:35:56.709Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:35:56.712Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:13.591Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:13.594Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:13.606Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:13.608Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:13.619Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:13.620Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:13.631Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:13.633Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:36:23.193Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.196Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:36:23.214Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.218Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:36:23.233Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.236Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:23.249Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T11:36:23.252Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:36:23.255Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.256Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.257Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:23.270Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.274Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:36:23.277Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.280Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:23.291Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.293Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:36:23.305Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.307Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:23.308Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.313Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:36:23.324Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.326Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:23.327Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.331Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:23.343Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:36:23.344Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.345Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.347Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:23.358Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.360Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:23.372Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.374Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:23.385Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.387Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:23.400Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.402Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:23.413Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.415Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:23.426Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.428Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:23.439Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.441Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:23.455Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.457Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:23.470Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.472Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:23.485Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:23.487Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:26.289Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:26.291Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:51.645Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:51.648Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:51.659Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:51.660Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:51.671Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:51.673Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:51.686Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:51.688Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:36:57.021Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:36:57.024Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:37:03.451Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.454Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:37:03.490Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.492Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:37:03.506Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.507Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:03.519Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:37:03.522Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.523Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.524Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:03.536Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.538Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:37:03.541Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.543Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:03.552Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.555Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:37:03.561Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.563Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:03.569Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.571Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:37:03.579Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.581Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:03.585Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.588Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:37:03.595Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.597Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:03.602Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.606Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:03.617Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.620Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:03.631Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.633Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:03.645Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.646Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:03.659Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.661Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:03.671Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.673Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:03.685Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.686Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:03.698Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.699Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:03.711Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.713Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:03.724Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.725Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:03.737Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:03.738Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:27.232Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:27.236Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:34.854Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:34.856Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:34.870Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:34.872Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:34.884Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:34.886Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:34.898Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:34.900Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:37:57.432Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:37:57.435Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:38:04.978Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:38:04.979Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:38:04.992Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:38:04.994Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:38:05.004Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:38:05.005Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:38:05.015Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:38:05.017Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:38:35.530Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:38:35.533Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:38:35.565Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:38:35.567Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:38:35.579Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:38:35.580Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:38:35.591Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:38:35.592Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:38:58.894Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:38:58.897Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:39:05.472Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:39:05.474Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:39:05.491Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:39:05.492Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:39:05.503Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:39:05.505Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:39:05.516Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:39:05.518Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:39:35.675Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:39:35.678Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:39:35.708Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:39:35.710Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:39:35.720Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:39:35.722Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:39:35.732Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:39:35.734Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:39:51.932Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:39:51.937Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:39:57.705Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:39:57.707Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:04.897Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:04.899Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:04.911Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:04.913Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:04.927Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:04.930Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:04.944Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:04.946Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:28.554Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:28.557Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:33.720Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:33.722Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:33.753Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:33.756Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:33.766Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:33.768Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:33.779Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:33.781Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:40:56.349Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.352Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:40:56.366Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.368Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T11:40:56.384Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:56.399Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.403Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:40:56.405Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.408Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:56.417Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.420Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:40:56.423Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.425Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:56.434Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.437Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:40:56.441Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.443Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:56.451Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.456Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:40:56.460Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.462Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:56.472Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.475Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:40:56.478Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.479Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:56.487Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.489Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:40:56.495Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.501Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:56.505Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.508Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:56.520Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.521Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:56.532Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.533Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:56.545Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.547Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:56.559Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.561Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:56.571Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.573Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:56.583Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.585Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:56.596Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.597Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:56.608Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.611Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:56.620Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:56.621Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:40:58.031Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:40:58.033Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:41:11.280Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.285Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:41:11.299Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.303Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:41:11.316Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.318Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:11.328Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:41:11.331Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.332Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.334Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:11.346Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.348Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:41:11.350Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.351Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:11.362Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.365Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:41:11.370Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.372Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:11.380Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.382Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:41:11.389Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.393Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:11.396Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.398Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:41:11.406Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.410Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:11.415Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.418Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:11.430Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.432Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:11.446Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.449Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:11.460Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.462Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:11.474Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.476Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:11.486Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.488Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:11.500Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.502Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:11.513Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.515Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:11.526Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.528Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:11.539Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.541Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:11.552Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:11.555Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-14T11:41:12.932Z"} +{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-14T11:41:12.972Z"} +{"count":24,"level":"info","limit":30,"message":"Returning message history for user 1","offset":0,"timestamp":"2025-05-14T11:41:12.977Z","total":24} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:41:13.727Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.731Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:41:13.747Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.749Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:13.751Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.753Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:41:13.765Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.768Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:13.771Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.773Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:41:13.783Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.785Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:13.786Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.788Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:41:13.799Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.801Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:13.806Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.808Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:41:13.818Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.820Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:13.823Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.825Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:41:13.840Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.843Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:13.845Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.848Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T11:41:13.862Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:13.865Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.866Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.868Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:13.881Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.885Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:13.900Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.903Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:13.915Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.918Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:13.931Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.933Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:13.945Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.948Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:13.959Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.962Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:13.975Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.977Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:13.990Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:13.992Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:14.006Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:14.010Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:28.902Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:28.905Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:45.012Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:45.015Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:45.027Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:45.029Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:45.041Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:45.042Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:45.051Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:45.052Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:41:56.742Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:41:56.745Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:42:15.161Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:42:15.167Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:42:15.180Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:42:15.182Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:42:15.192Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:42:15.194Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:42:15.206Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:42:15.208Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:42:26.307Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:42:26.310Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:42:44.543Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:42:44.545Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:42:44.577Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:42:44.579Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:42:44.590Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:42:44.592Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:42:44.605Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:42:44.607Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:42:57.044Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:42:57.047Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:43:15.614Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:43:15.616Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:43:15.628Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:43:15.630Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:43:15.644Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:43:15.646Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:43:15.663Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:43:15.666Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:43:26.660Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:43:26.664Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:43:45.801Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:43:45.804Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:43:45.817Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:43:45.818Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:43:45.830Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:43:45.831Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:43:45.843Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:43:45.844Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:43:57.497Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:43:57.500Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:44:13.642Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:44:13.645Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:44:13.660Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:44:13.663Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:44:13.680Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:44:13.682Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:44:13.695Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:44:13.698Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:44:27.769Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:44:27.773Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:45:23.772Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:45:23.777Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:45:23.795Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:45:23.798Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:45:23.814Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:45:23.816Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:45:23.829Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:45:23.831Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:45:23.843Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:45:23.845Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:46:24.381Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:46:24.386Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:46:24.401Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:46:24.405Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:46:24.420Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:46:24.423Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:46:24.435Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:46:24.437Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:46:24.448Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:46:24.450Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:46:33.631Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:46:33.635Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:46:43.772Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:46:43.775Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:46:43.786Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:46:43.788Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:46:43.799Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:46:43.800Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:46:43.833Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:46:43.835Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:46:58.946Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:46:58.950Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:47:14.921Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:47:14.925Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:47:14.941Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:47:14.943Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:47:14.953Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:47:14.955Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:47:14.967Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:47:14.969Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:47:26.661Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:47:26.665Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:47:45.151Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:47:45.155Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:47:45.189Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:47:45.191Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:47:45.202Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:47:45.203Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:47:45.214Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:47:45.216Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:48:22.738Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:48:22.743Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:48:22.757Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:48:22.760Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:48:22.774Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:48:22.776Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:48:22.787Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:48:22.789Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:48:22.801Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:48:22.803Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:49:23.169Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:49:23.176Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:49:23.203Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:49:23.206Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:49:23.218Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:49:23.220Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:49:23.232Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:49:23.234Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:49:23.247Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:49:23.250Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:50:23.540Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:50:23.544Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:50:23.558Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:50:23.561Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:50:23.575Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:50:23.577Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:50:23.588Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:50:23.590Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:50:23.600Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:50:23.602Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:51:23.950Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:51:23.954Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:51:23.969Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:51:23.971Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:51:23.987Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:51:23.991Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:51:24.002Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:51:24.004Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:51:24.015Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:51:24.017Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:52:24.452Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:52:24.456Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:52:24.472Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:52:24.476Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:52:24.489Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:52:24.491Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:52:24.503Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:52:24.505Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:52:24.516Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:52:24.519Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:53:24.893Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:53:24.897Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:53:24.914Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:53:24.918Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:53:24.936Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:53:24.939Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:53:24.955Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:53:24.957Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:53:24.970Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:53:24.972Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:54:22.870Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:54:22.875Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:54:22.894Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:54:22.897Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:54:22.909Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:54:22.911Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:54:22.922Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:54:22.924Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:54:22.935Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:54:22.937Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:55:23.228Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:55:23.232Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:55:23.260Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:55:23.262Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:55:23.283Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:55:23.285Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:55:23.297Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:55:23.298Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:55:23.309Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:55:23.311Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:56:23.697Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:56:23.703Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:56:23.720Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:56:23.722Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:56:23.737Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:56:23.741Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:56:23.754Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:56:23.756Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:56:23.766Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:56:23.768Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:57:23.984Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:57:23.990Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:57:24.006Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:57:24.009Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:57:24.022Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:57:24.024Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:57:24.035Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:57:24.037Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:57:24.049Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:57:24.051Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:58:24.657Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:58:24.661Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:58:24.676Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:58:24.679Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:58:24.693Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:58:24.698Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:58:24.710Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:58:24.711Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:58:24.724Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:58:24.725Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:59:24.274Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:59:24.279Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:59:24.295Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:59:24.299Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:59:24.311Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:59:24.313Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:59:24.324Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:59:24.326Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T11:59:24.336Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T11:59:24.338Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:00:23.015Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:00:23.022Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:00:23.040Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:00:23.043Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:00:23.054Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:00:23.055Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:00:23.068Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:00:23.070Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:00:23.082Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:00:23.084Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:06.470Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:06.475Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:06.490Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:06.492Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:06.508Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:06.510Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:06.523Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:06.525Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:06.540Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:06.542Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:12.778Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:12.780Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:12.793Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:12.795Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:12.843Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:12.845Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:12.878Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:12.880Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:27.213Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:27.216Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:42.899Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:42.901Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:42.934Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:42.936Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:42.945Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:42.948Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:42.965Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:42.967Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:01:45.463Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.466Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.493Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.496Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:01:45.516Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.518Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T12:01:45.536Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T12:01:45.537Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.547Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.574Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:01:45.587Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.590Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:01:45.605Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.607Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.609Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.612Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:01:45.625Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.628Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.631Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.636Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:01:45.648Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.652Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.657Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.659Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:01:45.670Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.673Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.677Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.679Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:01:45.696Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.699Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.705Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.708Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:01:45.716Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.721Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.727Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.730Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:01:45.739Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.742Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.746Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.748Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.760Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.762Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.772Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.774Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.785Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.786Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.797Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.799Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.809Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.811Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.822Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.824Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.835Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.836Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.847Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.849Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.860Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.862Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.874Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.876Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:01:45.888Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:01:45.890Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T12:01:47.909Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T12:01:50.209Z"} +{"level":"error","message":"Provider for arbitrum is not available: ","timestamp":"2025-05-14T12:01:50.442Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T12:01:52.662Z"} +{"arbitrum":"0","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T12:01:52.662Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:02:16.094Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:02:16.098Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:02:16.129Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:02:16.131Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:02:16.142Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:02:16.143Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:02:16.153Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:02:16.155Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:02:16.175Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:02:16.177Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:02:46.275Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:02:46.278Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:02:46.291Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:02:46.293Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:02:46.303Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:02:46.305Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:02:46.316Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:02:46.319Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:02:46.331Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:02:46.332Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:03:16.470Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:03:16.473Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:03:16.501Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:03:16.503Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:03:16.519Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:03:16.521Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:03:16.536Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:03:16.538Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:03:16.571Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:03:16.572Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:03:46.956Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:03:46.959Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:03:46.991Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:03:46.992Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:03:47.004Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:03:47.006Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:03:47.017Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:03:47.019Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:03:47.030Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:03:47.032Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:04:17.030Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:04:17.033Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:04:17.065Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:04:17.067Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:04:17.078Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:04:17.080Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:04:17.093Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:04:17.095Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:04:17.132Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:04:17.134Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:04:47.245Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:04:47.248Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:04:47.261Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:04:47.263Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:04:47.274Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:04:47.276Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:04:47.288Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:04:47.289Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:04:47.300Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:04:47.302Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:17.701Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:17.704Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:17.739Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:17.741Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:17.753Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:17.755Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:17.768Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:17.770Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:17.782Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:17.785Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:05:35.329Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.333Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:05:35.355Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.356Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.371Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.373Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.387Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.390Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:05:35.397Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.400Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:05:35.419Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.430Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.433Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.435Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T12:05:35.436Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T12:05:35.437Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:05:35.451Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.453Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.457Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.461Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:05:35.470Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.472Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.479Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.482Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:05:35.491Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.494Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.497Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.499Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:05:35.507Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.509Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.514Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.516Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:05:35.523Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.525Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.528Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.531Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:05:35.540Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.545Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.554Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.557Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.569Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.571Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.581Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.583Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.596Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.598Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.609Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.612Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.624Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.626Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.637Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.638Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.649Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.651Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.663Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.664Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.676Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.678Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.689Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.690Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:05:35.704Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:05:35.707Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T12:05:36.869Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T12:05:37.881Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T12:05:38.895Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T12:05:39.795Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T12:05:39.796Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:06.062Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:06.066Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:06.099Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:06.100Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:06.111Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:06.113Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:06.123Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:06.125Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:06.136Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:06.140Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:36.020Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:36.024Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:36.058Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:36.061Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:36.075Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:36.077Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:36.088Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:36.090Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:36.103Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:36.106Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:06:37.996Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:37.999Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:06:38.019Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.022Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T12:06:38.037Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:38.054Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.058Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:06:38.062Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.065Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:38.070Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.072Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:06:38.080Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.083Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:38.086Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.090Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:06:38.100Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.104Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:38.110Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.119Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:06:38.128Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.131Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:38.134Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.135Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:06:38.145Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.147Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:38.149Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.151Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:06:38.162Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:38.166Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.167Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.168Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:38.181Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.184Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:38.197Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.199Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:38.211Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.213Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:38.226Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.228Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:38.241Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.243Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:38.255Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.257Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:38.271Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.273Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:38.287Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.289Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:38.302Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:38.305Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:06:40.206Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.208Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:06:40.243Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.245Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:40.246Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.248Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:06:40.259Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:40.263Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.264Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.264Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:06:40.277Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.279Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:40.281Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.283Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:06:40.295Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.298Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:40.301Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.304Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:06:40.314Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.316Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:40.319Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.320Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:06:40.331Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.334Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:40.335Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.336Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:06:40.346Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:40.350Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.351Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.352Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:40.364Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.366Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:40.377Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.379Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:40.390Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.392Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:40.403Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.405Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:40.417Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.418Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:40.430Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.431Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:40.442Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.444Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:40.454Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.456Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:40.468Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:40.471Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T12:06:42.931Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:06:42.935Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:42.937Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:42.956Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:42.957Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:06:42.972Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:42.975Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:42.990Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:42.992Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:43.006Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:43.008Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:06:43.023Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:06:43.025Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:07:06.351Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:07:06.354Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:07:10.694Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:07:10.696Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:07:10.727Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:07:10.729Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:07:10.739Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:07:10.740Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:07:10.762Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:07:10.764Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:07:36.553Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:07:36.555Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:07:38.310Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:07:38.312Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:07:38.346Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:07:38.348Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:07:38.360Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:07:38.361Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:07:38.395Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:07:38.397Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:08:06.752Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:08:06.755Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:08:08.596Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:08:08.598Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:08:08.611Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:08:08.613Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:08:08.626Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:08:08.628Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:08:08.665Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:08:08.668Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:08:34.523Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:08:34.527Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:08:38.850Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:08:38.852Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:08:38.883Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:08:38.885Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:08:38.895Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:08:38.896Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:08:38.936Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:08:38.938Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:09:04.744Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:09:04.747Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:09:08.974Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:09:08.976Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:09:08.989Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:09:08.991Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:09:09.008Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:09:09.009Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:09:09.059Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:09:09.061Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:09:34.932Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:09:34.936Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:09:39.236Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:09:39.238Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:09:39.269Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:09:39.270Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:09:39.284Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:09:39.285Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:09:39.322Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:09:39.324Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:10:05.173Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:10:05.176Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:10:09.550Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:10:09.552Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:10:09.585Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:10:09.586Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:10:09.597Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:10:09.599Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:10:09.618Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:10:09.619Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:10:35.193Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:10:35.197Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:10:39.562Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:10:39.564Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:10:39.597Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:10:39.599Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:10:39.612Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:10:39.613Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:10:39.646Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:10:39.648Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:11:05.563Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:11:05.567Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:11:09.923Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:11:09.924Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:11:09.954Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:11:09.955Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:11:09.961Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:11:09.963Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:11:10.011Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:11:10.012Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:11:35.851Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:11:35.854Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:11:40.193Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:11:40.195Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:11:40.227Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:11:40.229Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:11:40.239Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:11:40.241Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:11:40.278Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:11:40.280Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:12:06.059Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:12:06.062Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:12:10.359Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:12:10.361Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:12:10.392Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:12:10.394Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:12:10.404Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:12:10.405Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:12:10.444Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:12:10.446Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:12:36.269Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:12:36.272Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:12:40.598Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:12:40.599Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:12:40.615Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:12:40.617Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:12:40.649Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:12:40.651Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:12:40.684Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:12:40.686Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:13:06.489Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:13:06.492Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:13:08.343Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:13:08.345Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:13:08.352Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:13:08.353Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:13:08.378Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:13:08.380Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:13:08.411Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:13:08.413Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T12:13:20.611Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:13:20.616Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:13:20.620Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:13:20.652Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:13:20.655Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:13:20.670Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:13:20.672Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:13:20.688Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:13:20.690Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:13:20.705Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:13:20.707Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:13:20.721Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:13:20.723Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:13:36.690Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:13:36.693Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:13:38.887Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:13:38.889Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:13:38.920Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:13:38.921Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:13:38.931Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:13:38.933Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:13:38.943Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:13:38.945Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:13:51.003Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:13:51.006Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:04.458Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:04.461Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:08.764Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:08.766Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:08.797Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:08.799Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:08.811Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:08.813Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:08.852Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:08.854Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:14:12.206Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.209Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:14:12.227Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.230Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T12:14:12.249Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:12.270Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.273Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:14:12.277Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.280Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:12.287Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.290Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:14:12.297Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.302Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:12.305Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.307Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:14:12.314Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.317Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:12.320Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.322Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:14:12.335Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.337Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:12.339Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.342Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:14:12.357Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:12.358Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.359Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.360Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:12.374Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:14:12.375Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.376Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.378Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:12.390Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.392Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:12.403Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.404Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:12.415Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.417Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:12.429Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.431Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:12.442Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.446Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:12.457Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.459Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:12.471Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.472Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:12.484Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.486Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:12.496Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:12.498Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:14:15.578Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.581Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:14:15.597Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.599Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:15.601Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.603Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:14:15.615Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.616Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:15.617Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.620Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:14:15.634Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.636Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:15.637Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.639Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:14:15.649Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.651Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:15.654Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.657Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:14:15.666Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.669Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:15.672Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.675Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:14:15.683Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.685Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:15.688Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.691Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:14:15.700Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.704Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:15.707Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.710Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:15.722Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.724Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:15.735Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.737Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:15.748Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.750Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:15.761Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.762Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:15.774Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.775Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:15.786Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.788Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:15.799Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.801Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:15.812Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.813Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:15.825Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:15.827Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:34.690Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:34.693Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:45.970Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:45.973Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:45.984Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:45.986Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:45.998Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:46.002Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:46.016Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:46.018Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:14:56.411Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T12:14:56.412Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:56.414Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:56.434Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:56.437Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:14:56.450Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:56.453Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:56.469Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:56.471Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:56.484Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:56.487Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:14:56.501Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:14:56.503Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:15:05.181Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:15:05.185Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:15:17.133Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:15:17.136Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:15:17.148Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:15:17.150Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:15:17.161Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:15:17.163Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:15:17.173Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:15:17.175Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:15:26.982Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:15:26.983Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:15:35.388Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:15:35.391Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:15:47.378Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:15:47.382Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:15:47.395Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:15:47.397Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:15:47.409Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:15:47.410Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:15:47.421Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:15:47.423Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:15:54.738Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:15:54.740Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:16:17.624Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:16:17.627Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:16:17.638Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:16:17.640Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:16:17.653Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:16:17.655Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:16:17.666Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:16:17.669Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:16:22.758Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:16:22.761Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:16:24.927Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:16:24.929Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:16:35.530Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:16:35.533Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:16:47.841Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:16:47.844Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:16:47.856Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:16:47.857Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:16:47.868Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:16:47.869Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:16:47.880Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:16:47.882Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:16:56.823Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:16:56.824Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:17:04.811Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:17:04.814Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:17:17.250Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:17:17.254Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:17:17.261Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:17:17.263Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:17:17.271Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:17:17.274Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:17:17.282Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:17:17.284Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:17:25.336Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:17:25.338Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:17:36.297Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:17:36.300Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:17:55.567Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:17:55.570Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:18:23.513Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:18:23.516Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:18:23.526Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:18:23.529Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:18:23.538Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:18:23.539Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:18:23.546Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:18:23.548Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:18:23.554Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:18:23.555Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:19:23.803Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:19:23.808Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:19:23.823Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:19:23.825Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:19:23.843Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:19:23.847Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:19:23.858Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:19:23.860Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:19:23.870Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:19:23.872Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:19:23.883Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:19:23.885Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:20:24.640Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:20:24.645Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:20:24.662Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:20:24.666Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:20:24.677Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:20:24.679Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:20:24.689Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:20:24.691Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:20:24.701Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:20:24.703Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:20:24.715Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:20:24.717Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:21:24.961Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:21:24.966Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:21:24.984Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:21:24.987Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:21:25.004Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:21:25.007Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:21:25.020Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:21:25.022Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:21:25.031Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:21:25.033Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:21:25.043Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:21:25.045Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:22:22.911Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:22:22.917Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:22:22.934Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:22:22.937Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:22:22.953Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:22:22.956Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:22:22.970Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:22:22.972Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:22:22.983Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:22:22.985Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:22:22.996Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:22:22.999Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:23:23.334Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:23:23.338Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:23:23.350Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:23:23.352Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:23:23.363Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:23:23.365Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:23:23.376Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:23:23.378Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:23:23.387Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:23:23.388Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:23:23.395Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:23:23.396Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:24:23.751Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:24:23.756Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:24:23.774Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:24:23.777Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:24:23.798Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:24:23.801Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:24:23.826Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:24:23.829Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:24:23.842Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:24:23.844Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:24:23.857Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:24:23.859Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:25:24.188Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:25:24.192Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:25:24.206Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:25:24.210Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:25:24.222Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:25:24.224Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:25:24.234Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:25:24.236Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:25:24.245Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:25:24.247Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:25:24.259Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:25:24.260Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:25:43.447Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:25:43.452Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:25:43.464Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:25:43.466Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:25:45.701Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:25:45.703Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:25:45.733Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:25:45.735Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:25:45.747Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:25:45.749Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:25:45.779Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:25:45.781Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T12:25:55.873Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:25:55.874Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:26:04.696Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:26:04.699Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:26:15.997Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:26:16.000Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:26:16.032Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:26:16.034Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:26:16.044Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:26:16.046Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:26:16.057Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:26:16.058Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:26:35.362Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:26:35.368Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:26:46.267Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:26:46.273Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:26:46.291Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:26:46.294Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:26:46.312Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:26:46.315Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:26:46.330Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:26:46.333Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:27:05.339Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:27:05.345Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:27:16.493Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:27:16.499Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:27:16.516Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:27:16.518Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:27:16.532Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:27:16.535Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:27:16.551Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:27:16.553Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:27:34.946Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:27:34.952Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:27:46.295Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:27:46.297Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:27:46.304Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:27:46.305Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:27:46.329Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:27:46.330Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:27:46.364Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:27:46.365Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:28:05.941Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:28:05.943Z"} +{"level":"info","message":"POST /api/settings/rpc","timestamp":"2025-05-14T12:28:16.815Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:28:16.815Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:28:18.602Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:28:18.604Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:28:18.614Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:28:18.615Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:28:18.622Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:28:18.623Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:28:18.630Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:28:18.631Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:28:35.860Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:28:35.862Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:28:44.712Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:28:44.714Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:28:44.721Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:28:44.723Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:28:44.748Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:28:44.749Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:28:44.764Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:28:44.766Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:29:06.046Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:29:06.049Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:29:15.894Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:29:15.897Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:29:15.906Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:29:15.907Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:29:15.914Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:29:15.915Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:29:15.922Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:29:15.923Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:29:36.367Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:29:36.369Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:29:45.122Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:29:45.124Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:29:45.131Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:29:45.132Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:29:45.157Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:29:45.158Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:29:45.190Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:29:45.191Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:30:06.602Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:30:06.604Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:30:16.272Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:30:16.274Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:30:16.284Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:30:16.285Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:30:16.292Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:30:16.294Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:30:16.301Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:30:16.302Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:30:34.576Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:30:34.578Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:30:45.572Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:30:45.574Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:30:45.583Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:30:45.584Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:30:45.607Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:30:45.608Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:30:45.632Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:30:45.633Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:31:04.815Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:31:04.817Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:31:16.851Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:31:16.854Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:31:16.862Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:31:16.864Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:31:16.870Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:31:16.871Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:31:16.878Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:31:16.879Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:31:34.987Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:31:34.989Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:31:46.883Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:31:46.886Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:31:46.895Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:31:46.897Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:31:46.903Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:31:46.905Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:31:46.911Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:31:46.912Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:32:24.944Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:32:24.947Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:32:24.957Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:32:24.960Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:32:24.971Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:32:24.973Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:32:24.984Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:32:24.985Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:32:24.992Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:32:24.994Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:33:22.836Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:33:22.839Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:33:22.847Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:33:22.848Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:33:22.855Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:33:22.856Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:33:22.863Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:33:22.865Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:33:22.873Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:33:22.875Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:33:35.622Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:33:35.624Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:33:47.031Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:33:47.034Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:33:47.041Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:33:47.042Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:33:47.048Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:33:47.049Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:33:47.055Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:33:47.056Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:34:01.702Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.704Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:34:01.714Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.715Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:34:01.726Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.728Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:34:01.737Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.738Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:01.739Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.741Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:01.750Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.752Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:34:01.753Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.754Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:01.759Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.761Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:34:01.767Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.768Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:01.770Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.772Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:34:01.777Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.778Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:01.782Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.784Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:34:01.791Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.793Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:01.795Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.796Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:01.805Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.806Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:01.812Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.813Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:01.822Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.823Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:01.830Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.831Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:01.838Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.840Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:01.846Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.847Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:01.855Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.857Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:01.863Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.864Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:01.871Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.873Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:01.879Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:01.880Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-14T12:34:03.374Z"} +{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-14T12:34:03.388Z"} +{"count":24,"level":"info","limit":30,"message":"Returning message history for user 1","offset":0,"timestamp":"2025-05-14T12:34:03.391Z","total":24} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:05.847Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:05.849Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:34:09.328Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.329Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:34:09.343Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.345Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:09.347Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.350Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:34:09.356Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.358Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:09.361Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.362Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:34:09.367Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.368Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:09.371Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.373Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:34:09.378Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.380Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:09.382Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.383Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:34:09.389Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.391Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:09.392Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.393Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:34:09.400Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:09.403Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.404Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.404Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:09.413Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:34:09.415Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.415Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.416Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:09.422Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.423Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:09.430Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.431Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:09.438Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.439Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:09.446Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.447Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:09.454Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.455Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:09.461Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.463Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:09.470Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.471Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:09.478Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.479Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:09.486Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:09.487Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T12:34:13.292Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:34:13.294Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:13.295Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:13.308Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:13.310Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:34:13.319Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:13.320Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:13.330Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:13.331Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:13.339Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:13.340Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:13.350Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:13.351Z"} +{"level":"info","message":"GET /api/geocoding/nominatim-search?postalcode=453000&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-14T12:34:27.512Z"} +{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?postalcode=453000&format=jsonv2&addressdetails=1&limit=1","timestamp":"2025-05-14T12:34:27.518Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T12:34:28.289Z"} +{"level":"info","message":"GET /api/geocoding/nominatim-search?q=%E4%B8%AD%E5%9B%BD&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-14T12:34:32.540Z"} +{"level":"info","message":"[Geocoding] Proxying request to Nominatim: https://nominatim.openstreetmap.org/search?q=%E4%B8%AD%E5%9B%BD&format=jsonv2&addressdetails=1&limit=5","timestamp":"2025-05-14T12:34:32.541Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:36.044Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:36.047Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:39.644Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:39.645Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:39.653Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:39.654Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:39.661Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:39.662Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:39.669Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:39.670Z"} +{"level":"info","message":"GET /api/isic/codes?parent_code=K","timestamp":"2025-05-14T12:34:41.068Z"} +{"level":"info","message":"GET /api/isic/codes?parent_code=64","timestamp":"2025-05-14T12:34:43.295Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:34:43.548Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:34:43.549Z"} +{"level":"info","message":"GET /api/isic/codes?parent_code=642","timestamp":"2025-05-14T12:34:42.665Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:06.352Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:06.354Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:09.913Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:09.915Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:09.924Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:09.926Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:09.934Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:09.935Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:09.965Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:09.967Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:11.235Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:11.237Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:36.571Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:36.574Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:37.573Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:37.574Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:37.586Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:37.588Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:37.617Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:37.618Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:37.628Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:37.629Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:41.475Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:41.476Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:35:43.263Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.264Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:35:43.274Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.276Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:35:43.287Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.288Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:35:43.298Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.299Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:43.306Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T12:35:43.309Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.311Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:43.319Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:35:43.322Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.322Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.324Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:43.329Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.330Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:35:43.332Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.334Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:43.339Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.340Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:35:43.345Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.347Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:43.350Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.352Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:35:43.357Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.358Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:43.360Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.361Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:43.367Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.368Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:43.375Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.376Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:43.381Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.382Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:43.389Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.390Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:43.397Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.398Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:43.405Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.406Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:43.412Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.414Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:43.420Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.421Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:43.427Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.428Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:35:43.435Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:35:43.436Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:05.986Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:05.988Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:13.606Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:13.607Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:13.615Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:13.617Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:13.624Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:13.625Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:13.632Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:13.633Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:36:31.805Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.807Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:36:31.818Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.820Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:36:31.827Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.829Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:31.836Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:36:31.838Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.839Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.841Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:31.848Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.850Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:36:31.851Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.851Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:31.857Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.859Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:36:31.861Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.861Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:31.866Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.868Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:36:31.870Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.871Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:31.876Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.877Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:36:31.879Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.880Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:31.885Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.886Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:31.893Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.894Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:31.901Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.902Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:31.909Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.910Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:31.917Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.918Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:31.925Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.926Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:31.933Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.935Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:31.942Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.943Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:31.949Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.950Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:31.957Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.957Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:31.964Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:31.965Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:36:34.481Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:36:34.483Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T12:36:38.463Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:36:38.463Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:37:02.120Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:37:02.122Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:37:02.130Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:37:02.132Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:37:02.138Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:37:02.139Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:37:02.145Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:37:02.146Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:37:04.720Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:37:04.721Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:37:33.101Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:37:33.104Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:37:33.111Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:37:33.112Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:37:33.118Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:37:33.119Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:37:33.125Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:37:33.127Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:37:35.259Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:37:35.260Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:38:03.208Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:38:03.210Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:38:03.219Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:38:03.221Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:38:03.229Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:38:03.231Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:38:03.243Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:38:03.245Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T12:38:04.378Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:38:04.378Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:38:12.112Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:38:12.114Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:38:33.497Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:38:33.499Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:38:33.506Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:38:33.507Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:38:33.516Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:38:33.517Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:38:33.524Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:38:33.525Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:38:35.643Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:38:35.644Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:39:03.750Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:39:03.752Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:39:03.761Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:39:03.763Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:39:03.771Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:39:03.772Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:39:03.779Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:39:03.780Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:39:05.918Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:39:05.919Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T12:39:20.415Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:39:20.415Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:39:33.241Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:39:33.244Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:39:33.253Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:39:33.254Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:39:33.261Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:39:33.262Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:39:33.270Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:39:33.271Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:39:35.877Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:39:35.879Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:40:03.503Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:40:03.505Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:40:03.512Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:40:03.513Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:40:03.521Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:40:03.522Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:40:03.529Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:40:03.530Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T12:40:04.859Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:40:04.878Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:40:04.880Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:40:04.892Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:40:04.893Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:40:04.903Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:40:04.903Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:40:04.912Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:40:04.913Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:40:04.921Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:40:04.922Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:40:04.930Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:40:04.932Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:40:06.113Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:40:06.115Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:40:34.492Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:40:34.494Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:40:34.502Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:40:34.503Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:40:34.510Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:40:34.511Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:40:34.518Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:40:34.519Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:40:35.578Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:40:35.580Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:40:36.681Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:40:36.682Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:04.696Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:04.698Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:04.706Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:04.707Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:04.713Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:04.714Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:04.721Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:04.722Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:05.780Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:05.781Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:06.879Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:06.880Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:41:24.295Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.297Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T12:41:24.309Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.326Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.328Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:41:24.330Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.332Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T12:41:24.342Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T12:41:24.343Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:41:24.343Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.344Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:41:24.353Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.356Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.363Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.366Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:41:24.367Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.368Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.373Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.374Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:41:24.377Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.378Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.382Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.384Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:41:24.387Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.388Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.391Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.392Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:41:24.396Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.397Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.399Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.401Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:41:24.407Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.408Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.409Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.411Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:41:24.417Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.419Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.420Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.421Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:41:24.428Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.429Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.430Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.431Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.439Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:41:24.440Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.440Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.441Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.447Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.448Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.455Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.456Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.463Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.464Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.470Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.471Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.478Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.479Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.486Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.487Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.494Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.496Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.503Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.505Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.512Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.513Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.521Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.522Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.529Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.530Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.537Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.538Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.544Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.545Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:24.553Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:24.554Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T12:41:26.345Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T12:41:27.276Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T12:41:28.220Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T12:41:30.276Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T12:41:30.276Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:55.386Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:55.388Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:55.396Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:55.397Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:55.404Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:55.405Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:55.412Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:55.414Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:55.420Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:55.422Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:41:55.428Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:41:55.430Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:25.601Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:25.603Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:25.611Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:25.612Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:25.619Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:25.620Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:25.627Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:25.628Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:25.635Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:25.636Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:25.643Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:25.644Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:42:39.259Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.262Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:42:39.273Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.274Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:42:39.283Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.285Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:39.293Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:42:39.294Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.295Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.296Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T12:42:39.298Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:39.306Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.308Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:42:39.309Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.310Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:39.315Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.316Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:42:39.317Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.318Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:39.323Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.325Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:42:39.327Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.328Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:39.333Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.335Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:42:39.337Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.339Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:39.343Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.345Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:39.352Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.353Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:39.359Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.360Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:39.367Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.368Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:39.374Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.375Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:39.382Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.382Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:39.388Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.389Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:39.396Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.397Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:39.403Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.404Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:39.411Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.412Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:39.418Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:39.419Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:42:41.419Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.420Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:42:41.430Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.431Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:41.431Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.433Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:42:41.440Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.441Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:41.442Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.443Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:42:41.448Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:41.450Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.451Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.452Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:42:41.459Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.460Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:41.461Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.462Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:42:41.468Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.469Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:41.470Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.472Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:42:41.479Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:41.479Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.480Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.481Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:42:41.488Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:41.489Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.489Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.490Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:41.497Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.498Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:41.505Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.506Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:41.513Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.514Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:41.521Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.522Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:41.528Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.529Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:41.535Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.537Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:41.544Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.545Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:41.552Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.553Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:41.560Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:41.561Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T12:42:42.602Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:42:42.602Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:42:55.198Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:42:55.201Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:43:11.869Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:43:11.872Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:43:11.881Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:43:11.882Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:43:11.890Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:43:11.891Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:43:11.898Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:43:11.900Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:43:25.250Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:43:25.253Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:43:42.049Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:43:42.051Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:43:42.066Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:43:42.068Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:43:42.074Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:43:42.076Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:43:42.084Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:43:42.085Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:43:53.163Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:43:53.165Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:44:12.338Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:44:12.341Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:44:12.350Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:44:12.351Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:44:12.363Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:44:12.366Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:44:12.374Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:44:12.376Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:44:24.062Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:44:24.064Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:44:42.604Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:44:42.607Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:44:42.616Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:44:42.618Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:44:42.626Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:44:42.627Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:44:42.634Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:44:42.635Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:44:54.112Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:44:54.115Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:45:12.752Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:45:12.754Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:45:12.763Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:45:12.764Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:45:12.771Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:45:12.773Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:45:12.780Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:45:12.781Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:45:43.076Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:45:43.079Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:45:43.089Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:45:43.090Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:45:43.097Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:45:43.098Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:45:43.105Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:45:43.106Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:45:55.783Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:45:55.785Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:46:10.691Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:46:10.693Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:46:10.747Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:46:10.748Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:46:10.756Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:46:10.757Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:46:10.764Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:46:10.765Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:46:24.897Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:46:24.900Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:46:40.980Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:46:40.983Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:46:40.992Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:46:40.993Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:46:41.000Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:46:41.001Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:46:41.008Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:46:41.010Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:46:55.241Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:46:55.243Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:47:11.263Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:47:11.265Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:47:11.274Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:47:11.275Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:47:11.282Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:47:11.284Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:47:11.291Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:47:11.292Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:47:25.467Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:47:25.470Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:47:41.465Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:47:41.468Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:47:41.477Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:47:41.478Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:47:41.486Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:47:41.487Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:47:41.494Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:47:41.495Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:47:55.737Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:47:55.739Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:48:07.892Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:07.899Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:48:07.927Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:07.929Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:48:07.939Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:07.941Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T12:48:07.952Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:48:07.952Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:48:07.956Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:07.958Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:48:07.965Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:07.966Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:07.968Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:07.971Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:07.979Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:07.980Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:07.987Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:07.988Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:48:11.718Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T12:48:11.720Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T12:48:11.720Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.721Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:11.729Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.734Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:48:11.739Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.741Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:11.746Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.749Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:48:11.754Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.755Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:11.760Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.762Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:48:11.767Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.769Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:11.772Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.774Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:48:11.779Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.781Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:11.784Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.785Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:11.793Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.794Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:11.801Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.803Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:11.810Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.812Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:11.819Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.820Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:11.827Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.828Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:11.836Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.837Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:11.845Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.846Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:11.853Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.854Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:11.861Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.862Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:11.869Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.870Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:11.876Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.877Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:11.884Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:11.885Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T12:48:12.603Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T12:48:13.337Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T12:48:14.294Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T12:48:15.082Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T12:48:15.082Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:43.024Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:43.027Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:43.035Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:43.036Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:43.043Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:43.044Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:43.051Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:43.052Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:48:43.060Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:48:43.061Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:49:12.250Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:49:12.252Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:49:12.259Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:49:12.261Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:49:12.268Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:49:12.269Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:49:12.277Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:49:12.279Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:49:12.287Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:49:12.288Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:49:43.551Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:49:43.554Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:49:43.563Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:49:43.565Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:49:43.573Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:49:43.574Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:49:43.582Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:49:43.583Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:49:43.590Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:49:43.591Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:50:13.810Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:50:13.812Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:50:13.821Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:50:13.822Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:50:13.830Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:50:13.831Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:50:13.838Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:50:13.839Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:50:13.845Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:50:13.846Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:50:43.048Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:50:43.052Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:50:43.063Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:50:43.065Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:50:43.077Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:50:43.079Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:50:43.086Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:50:43.088Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:50:43.095Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:50:43.097Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:11.723Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:11.726Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:11.735Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:11.736Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:11.744Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:11.745Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:11.751Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:11.753Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:11.760Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:11.761Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:51:39.375Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:39.377Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:51:39.397Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:39.399Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:39.410Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:39.412Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:39.420Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:39.422Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T12:51:39.423Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:51:39.423Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T12:51:39.431Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T12:51:39.431Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:51:39.433Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:39.435Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:51:39.445Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:39.446Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:51:39.454Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:39.455Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:51:39.462Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:39.464Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:51:39.474Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:39.475Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T12:51:40.289Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T12:51:40.954Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:41.339Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.341Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:41.350Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.351Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:51:41.354Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.355Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:41.361Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.362Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:51:41.365Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.366Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:41.372Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.374Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:41.382Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.383Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:51:41.384Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.386Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:41.391Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.392Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:41.400Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.401Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:41.408Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.409Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:41.415Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.416Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:41.424Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.425Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:41.432Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.433Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:41.441Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.442Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:41.448Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.449Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:41.456Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.457Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:41.464Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.465Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:41.472Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.473Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:41.480Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.481Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:51:41.488Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:51:41.490Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T12:51:41.906Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T12:51:42.860Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T12:51:42.860Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T12:52:00.294Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:52:00.295Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:12.150Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:12.152Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:12.160Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:12.161Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:12.168Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:12.169Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:12.176Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:12.177Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:12.184Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:12.186Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T12:52:14.000Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:52:14.000Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:52:22.367Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:22.369Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:22.388Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:22.389Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:52:22.405Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:22.408Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:52:22.418Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:22.420Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T12:52:22.427Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:52:22.427Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T12:52:22.432Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T12:52:22.432Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:52:22.435Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:22.437Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:22.447Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:52:22.449Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:22.450Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:22.451Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:22.459Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:52:22.461Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:22.461Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:22.462Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T12:52:23.548Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T12:52:24.312Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T12:52:25.317Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T12:52:26.321Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T12:52:26.321Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:27.046Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:52:27.047Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.048Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.050Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:27.056Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.057Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:52:27.059Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.061Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:27.066Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.068Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:52:27.070Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.071Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:27.075Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.077Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:52:27.079Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.081Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:27.085Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.086Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:27.093Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.094Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:27.101Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.102Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:27.109Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.110Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:27.117Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.118Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:27.127Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.128Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:27.137Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.138Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:27.146Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.147Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:27.154Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.156Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:27.163Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.165Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:27.174Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.175Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:27.182Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.183Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:27.189Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:27.190Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:57.742Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:57.745Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:57.755Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:57.756Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:57.763Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:57.764Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:57.772Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:57.773Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:52:57.780Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:52:57.781Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T12:53:10.798Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:53:10.800Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:10.802Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:10.813Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:10.815Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:53:10.824Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:10.825Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:10.835Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:10.836Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:10.844Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:10.845Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:10.854Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:10.855Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:28.072Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:28.074Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:28.083Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:28.085Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:28.091Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:28.092Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:28.099Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:28.100Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:28.107Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:28.108Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:53:40.057Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.059Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:53:40.069Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.071Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T12:53:40.081Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:40.096Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.097Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:53:40.099Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.101Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:40.105Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.106Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:53:40.110Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.111Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:40.113Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.114Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:53:40.119Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.121Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:40.122Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.124Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:53:40.128Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.129Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:40.131Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.132Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:53:40.138Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.140Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:40.144Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.145Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:53:40.149Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.151Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:40.153Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.155Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:40.161Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.162Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:40.168Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.169Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:40.176Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.177Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:40.183Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.184Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:40.191Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.192Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:40.198Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.199Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:40.206Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.207Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:40.214Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.215Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:40.221Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:40.221Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:53:55.689Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:53:55.691Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:10.935Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:10.937Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:10.945Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:10.946Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:10.953Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:10.954Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:10.961Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:10.962Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:25.941Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:25.944Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:40.668Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:40.670Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:40.678Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:40.679Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:40.686Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:40.687Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:40.694Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:40.696Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:54:43.971Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:43.972Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:54:43.983Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:43.984Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:54:43.993Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:43.994Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:54:44.002Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.003Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:44.004Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.006Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:44.013Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:54:44.016Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.017Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.018Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:44.024Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.025Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:54:44.026Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.027Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:44.033Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.035Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:54:44.037Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.039Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:44.043Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.045Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:54:44.047Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.048Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:44.053Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.054Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:44.061Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.062Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:44.069Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.071Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:44.077Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.078Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:44.084Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.085Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:44.091Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.092Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:44.098Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.099Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:44.105Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.106Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:44.114Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.115Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:44.121Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.122Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:44.128Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:44.129Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T12:54:48.821Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:54:48.822Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:48.823Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:48.836Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:48.837Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T12:54:48.846Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:48.847Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:48.856Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:48.857Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:48.865Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:48.866Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:54:48.874Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:54:48.875Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T12:54:54.793Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:54:54.794Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:55:06.551Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:55:06.553Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:55:14.304Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:55:14.305Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:55:14.316Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:55:14.317Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:55:14.324Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:55:14.325Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:55:14.334Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:55:14.335Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:55:26.380Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:55:26.383Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:55:44.981Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:55:44.984Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:55:44.993Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:55:44.994Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:55:45.001Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:55:45.003Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:55:45.010Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:55:45.011Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:55:56.214Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:55:56.216Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:56:12.534Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:56:12.536Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:56:12.545Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:56:12.546Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:56:12.554Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:56:12.556Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:56:12.563Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:56:12.564Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:56:26.723Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:56:26.725Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:56:42.935Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:56:42.937Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:56:42.945Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:56:42.946Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:56:42.953Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:56:42.954Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:56:42.961Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:56:42.962Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:56:57.140Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:56:57.142Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:57:13.172Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:57:13.174Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:57:13.183Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:57:13.185Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:57:13.193Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:57:13.194Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:57:13.202Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:57:13.203Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:57:43.302Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:57:43.304Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:57:43.313Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:57:43.314Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:57:43.321Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:57:43.322Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:57:43.330Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:57:43.331Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:58:24.629Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:58:24.632Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:58:24.643Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:58:24.645Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:58:24.655Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:58:24.656Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:58:24.664Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:58:24.665Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:58:24.672Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:58:24.674Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:59:25.128Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:59:25.131Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:59:25.142Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:59:25.144Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:59:25.155Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:59:25.158Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:59:25.165Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:59:25.167Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T12:59:24.301Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T12:59:24.302Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:00:22.999Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:00:23.002Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:00:23.014Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:00:23.016Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:00:23.025Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:00:23.027Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:00:23.034Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:00:23.036Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:00:23.043Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:00:23.044Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:01:23.484Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:01:23.487Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:01:23.497Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:01:23.499Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:01:23.510Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:01:23.511Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:01:23.519Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:01:23.520Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:01:23.527Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:01:23.528Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:02:23.962Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:02:23.965Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:02:23.976Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:02:23.978Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:02:23.988Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:02:23.990Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:02:23.997Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:02:23.998Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:02:24.005Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:02:24.006Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:03:24.583Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:03:24.587Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:03:24.599Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:03:24.601Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:03:24.612Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:03:24.615Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:03:24.624Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:03:24.625Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:03:24.632Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:03:24.633Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:04:05.566Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T13:04:05.566Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:11.088Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:11.093Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:11.101Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:11.103Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:11.112Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:11.113Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:11.120Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:11.122Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:11.130Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:11.134Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:13.494Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:13.495Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:13.507Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:13.508Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:13.515Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:13.516Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:13.525Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:13.526Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:14.909Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:14.911Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:14.936Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:14.938Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:14.968Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:14.969Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:14.980Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:14.983Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:04:14.998Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T13:04:14.999Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:15.002Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:15.004Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:15.013Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:15.015Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:04:15.017Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:04:15.018Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:15.023Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:15.024Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:15.024Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:15.027Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:15.037Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:15.038Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T13:04:17.036Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:17.385Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:17.389Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:17.395Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:17.397Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T13:04:17.832Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:17.974Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:17.976Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:17.999Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:18.001Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:04:18.020Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:04:18.021Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:18.023Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:18.025Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:18.044Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:18.045Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:04:18.049Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T13:04:18.050Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:18.061Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:18.063Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:18.064Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:18.065Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:18.073Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:18.075Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:18.077Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:18.078Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:18.092Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:18.093Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T13:04:18.442Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T13:04:18.728Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T13:04:18.826Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T13:04:19.144Z"} +{"level":"error","message":"Provider for polygon is not available: Network check timeout","timestamp":"2025-05-14T13:04:21.835Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T13:04:21.836Z"} +{"level":"error","message":"Provider for polygon is not available: Network check timeout","timestamp":"2025-05-14T13:04:22.146Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T13:04:22.146Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:26.222Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.224Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:26.234Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.235Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:26.251Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.252Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:26.261Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.263Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:26.268Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.270Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:26.273Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.276Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:26.280Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.281Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:26.284Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.285Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:26.290Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.292Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:26.294Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.295Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:26.304Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.305Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:26.313Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.314Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:26.323Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.324Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:26.333Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.334Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:26.343Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.345Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:26.359Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.361Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:26.373Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.375Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:26.388Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.389Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:26.396Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.397Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:26.404Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.406Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:26.413Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:26.414Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:31.188Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.189Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:31.200Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.202Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:31.210Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.211Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:31.217Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.219Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:31.223Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.225Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:31.231Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.235Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T13:04:31.236Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:31.238Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.240Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:31.247Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.248Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:31.253Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.254Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:31.259Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.260Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:31.264Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.266Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:31.271Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.273Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:31.275Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.277Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:31.283Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.284Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:31.286Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.287Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:31.295Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.297Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:31.303Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.304Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:31.311Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.312Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:31.319Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.320Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:31.326Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.327Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:31.335Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.336Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:31.342Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.343Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:31.351Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.352Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:31.359Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:31.360Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:32.445Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.447Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:32.456Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.458Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:32.460Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.461Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:32.466Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.468Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:32.470Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.472Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:32.478Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.479Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:32.481Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.482Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:32.487Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.488Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:32.492Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.494Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:32.501Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.502Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:32.503Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.504Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:32.511Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.513Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:32.515Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.516Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:32.523Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:32.526Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.527Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.527Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:32.535Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.536Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:32.543Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.544Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:32.551Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.552Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:32.560Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.561Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:32.569Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.570Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:32.577Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.578Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:32.586Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.588Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:32.594Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.595Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:32.602Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:32.603Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T13:04:34.255Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:34.261Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:34.263Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:34.280Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:34.281Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:04:34.292Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:34.293Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:34.302Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:34.303Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:34.312Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:34.313Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:04:34.323Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:04:34.324Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:04:35.982Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T13:04:35.983Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:05:27.075Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:05:27.078Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:05:27.086Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:05:27.087Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:05:27.094Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:05:27.095Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:05:27.101Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:05:27.102Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:05:27.109Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:05:27.110Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:05:32.976Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:05:32.977Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:05:32.986Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:05:32.987Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:05:32.996Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:05:32.997Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:05:33.024Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:05:33.025Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:05:55.287Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:05:55.290Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:06:04.016Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:06:04.017Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:06:04.026Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:06:04.027Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:06:04.034Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:06:04.035Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:06:04.042Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:06:04.043Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:06:25.524Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:06:25.526Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:06:34.263Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:06:34.264Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:06:34.271Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:06:34.272Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:06:34.280Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:06:34.281Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:06:34.289Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:06:34.290Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:06:55.740Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:06:55.743Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:07:04.509Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:07:04.510Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:07:04.518Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:07:04.519Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:07:04.526Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:07:04.528Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:07:04.535Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:07:04.537Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:07:26.004Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:07:26.007Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:07:34.792Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:07:34.793Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:07:34.800Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:07:34.802Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:07:34.808Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:07:34.809Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:07:34.816Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:07:34.817Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:07:56.242Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:07:56.244Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:08:05.036Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:08:05.038Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:08:05.048Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:08:05.050Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:08:05.058Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:08:05.060Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:08:05.068Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:08:05.070Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:08:05.296Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T13:08:05.296Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:08:25.536Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:08:25.539Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:08:32.656Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:08:32.658Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:08:32.667Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:08:32.668Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:08:32.676Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:08:32.677Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:08:32.684Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:08:32.685Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:08:56.751Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:08:56.753Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:09:02.908Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:09:02.909Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:09:02.918Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:09:02.919Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:09:02.926Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:09:02.928Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:09:02.935Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:09:02.936Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:09:26.994Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:09:26.996Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:09:33.124Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:09:33.125Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:09:33.134Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:09:33.136Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:09:33.143Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:09:33.144Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:09:33.150Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:09:33.151Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:09:53.749Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:09:53.751Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:02.651Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:02.652Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:02.663Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:02.665Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:02.673Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:02.674Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:02.718Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:02.720Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:24.004Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:24.006Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:32.847Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:32.848Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:32.860Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:32.861Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:32.870Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:32.871Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:32.901Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:32.903Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:42.558Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:42.560Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:42.586Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:42.587Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:42.615Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:42.616Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:42.630Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:42.631Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:10:42.640Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T13:10:42.640Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:42.649Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:42.651Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:42.658Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:42.662Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:42.664Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:42.666Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:10:42.668Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:10:42.669Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:42.675Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:42.678Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:42.684Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:42.685Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T13:10:43.507Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T13:10:44.247Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T13:10:45.153Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T13:10:47.299Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T13:10:47.300Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:47.810Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.812Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:47.817Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.819Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:47.831Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:47.832Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.833Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.834Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:47.850Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.852Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:47.855Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.856Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:47.861Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.864Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:47.869Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.871Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:47.873Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.874Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:47.881Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.882Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:47.889Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.890Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:47.897Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.899Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:47.906Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.907Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:47.914Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.915Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:47.922Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.923Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:47.929Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.931Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:47.939Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.940Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:47.946Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.947Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:47.955Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.956Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:47.968Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.969Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:10:47.977Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:10:47.979Z"} +{"level":"info","message":"POST /api/auth/logout","timestamp":"2025-05-14T13:10:47.662Z"} +{"address":null,"authType":null,"authenticated":false,"cookie":{"expires":"2025-06-13T11:14:16.984Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"email":null,"guestId":null,"isAdmin":false,"level":"info","message":"[SessionService] Saving session data:","pendingEmail":null,"previousGuestId":null,"processedGuestIds":[],"telegramId":null,"timestamp":"2025-05-14T13:10:47.663Z","userId":null} +{"level":"info","message":"Session saved successfully","timestamp":"2025-05-14T13:10:47.666Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:47.682Z"} +{"cookie":{"expires":"2025-06-13T13:10:47.681Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"597e6501b9bae6fdba1dea790ca914e5","level":"info","message":"[SessionService] Saving session data:","timestamp":"2025-05-14T13:10:47.683Z"} +{"level":"info","message":"Session saved successfully","timestamp":"2025-05-14T13:10:47.685Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:53.867Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:53.878Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:53.888Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:53.896Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:55.830Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:55.838Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:55.847Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:55.855Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:57.802Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:57.809Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:57.816Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:10:57.824Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:04.907Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:04.918Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:04.927Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:04.935Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:07.904Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:07.913Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:07.920Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:07.928Z"} +{"level":"info","message":"GET /api/auth/nonce?address=0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-05-14T13:11:12.966Z"} +{"level":"info","message":"Nonce e0cec76ffaec638ccd697048a88de6a1 сохранен для адреса 0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-05-14T13:11:12.975Z"} +{"level":"info","message":"POST /api/auth/verify","timestamp":"2025-05-14T13:11:15.193Z"} +{"level":"info","message":"[verify] Verifying signature for address: 0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-05-14T13:11:15.194Z"} +{"level":"info","message":"Checking admin role for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:11:15.290Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","hasTokens":true,"level":"info","message":"Token balance on bsc:","timestamp":"2025-05-14T13:11:15.955Z"} +{"level":"info","message":"Found admin tokens on bsc","timestamp":"2025-05-14T13:11:15.955Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T13:11:16.040Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","hasTokens":true,"level":"info","message":"Token balance on eth:","timestamp":"2025-05-14T13:11:16.222Z"} +{"level":"info","message":"Found admin tokens on eth","timestamp":"2025-05-14T13:11:16.222Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","hasTokens":true,"level":"info","message":"Token balance on arbitrum:","timestamp":"2025-05-14T13:11:16.655Z"} +{"level":"info","message":"Found admin tokens on arbitrum","timestamp":"2025-05-14T13:11:16.656Z"} +{"balances":{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","polygon":"Error: Network unavailable"},"level":"info","message":"Admin role summary for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","networks":["bsc","eth","arbitrum"],"timestamp":"2025-05-14T13:11:16.656Z"} +{"level":"info","message":"Admin role granted for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:11:16.656Z"} +{"level":"info","message":"[verify] Found or created user 1 for wallet 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:11:16.656Z"} +{"level":"info","message":"[IdentityService] Converting guest identity for user 1 to guest_user_mapping: 597e6501b9bae6fdba1dea790ca914e5","timestamp":"2025-05-14T13:11:16.656Z"} +{"level":"info","message":"Checking admin tokens for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:11:16.665Z"} +{"level":"info","message":"Checking admin role for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:11:16.666Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T13:11:16.868Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","hasTokens":true,"level":"info","message":"Token balance on bsc:","timestamp":"2025-05-14T13:11:16.951Z"} +{"level":"info","message":"Found admin tokens on bsc","timestamp":"2025-05-14T13:11:16.951Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","hasTokens":true,"level":"info","message":"Token balance on eth:","timestamp":"2025-05-14T13:11:17.108Z"} +{"level":"info","message":"Found admin tokens on eth","timestamp":"2025-05-14T13:11:17.109Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","hasTokens":true,"level":"info","message":"Token balance on arbitrum:","timestamp":"2025-05-14T13:11:17.323Z"} +{"level":"info","message":"Found admin tokens on arbitrum","timestamp":"2025-05-14T13:11:17.323Z"} +{"balances":{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","polygon":"Error: Network unavailable"},"level":"info","message":"Admin role summary for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","networks":["bsc","eth","arbitrum"],"timestamp":"2025-05-14T13:11:17.323Z"} +{"level":"info","message":"Admin role granted for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:11:17.324Z"} +{"level":"info","message":"Updated user 1 role to admin based on token holdings","timestamp":"2025-05-14T13:11:17.327Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","authType":"wallet","authenticated":true,"cookie":{"expires":"2025-06-13T13:10:47.681Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"597e6501b9bae6fdba1dea790ca914e5","isAdmin":true,"level":"info","message":"[SessionService] Saving session data:","timestamp":"2025-05-14T13:11:17.329Z","userId":1} +{"level":"info","message":"Session saved successfully","timestamp":"2025-05-14T13:11:17.332Z"} +{"level":"info","message":"[linkGuestMessages] Starting for user 1 with guestId=597e6501b9bae6fdba1dea790ca914e5, previousGuestId=undefined","timestamp":"2025-05-14T13:11:17.332Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=597e6501b9bae6fdba1dea790ca914e5","timestamp":"2025-05-14T13:11:17.336Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 597e6501b9bae6fdba1dea790ca914e5","timestamp":"2025-05-14T13:11:17.337Z"} +{"level":"info","message":"No guest messages found for guest ID 597e6501b9bae6fdba1dea790ca914e5","timestamp":"2025-05-14T13:11:17.341Z"} +{"level":"info","message":"Marked guest mapping as processed (no messages found) for guest ID 597e6501b9bae6fdba1dea790ca914e5","timestamp":"2025-05-14T13:11:17.344Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=758c5501236dd51c907b8035b014561e","timestamp":"2025-05-14T13:11:17.345Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 758c5501236dd51c907b8035b014561e","timestamp":"2025-05-14T13:11:17.346Z"} +{"level":"info","message":"Guest messages for guest ID 758c5501236dd51c907b8035b014561e were already processed.","timestamp":"2025-05-14T13:11:17.346Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0fc862553fa644a4d875a79ff01e1786","timestamp":"2025-05-14T13:11:17.348Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 0fc862553fa644a4d875a79ff01e1786","timestamp":"2025-05-14T13:11:17.348Z"} +{"level":"info","message":"Guest messages for guest ID 0fc862553fa644a4d875a79ff01e1786 were already processed.","timestamp":"2025-05-14T13:11:17.349Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=4ce93dd87f076a6bdcdfd373737d79f9","timestamp":"2025-05-14T13:11:17.350Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 4ce93dd87f076a6bdcdfd373737d79f9","timestamp":"2025-05-14T13:11:17.350Z"} +{"level":"info","message":"Guest messages for guest ID 4ce93dd87f076a6bdcdfd373737d79f9 were already processed.","timestamp":"2025-05-14T13:11:17.351Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746053084533-wqwfw5fm2","timestamp":"2025-05-14T13:11:17.353Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746053084533-wqwfw5fm2","timestamp":"2025-05-14T13:11:17.353Z"} +{"level":"info","message":"Guest messages for guest ID 1746053084533-wqwfw5fm2 were already processed.","timestamp":"2025-05-14T13:11:17.354Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=e172290cd6263e6f2594333f5f90e4f7","timestamp":"2025-05-14T13:11:17.355Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID e172290cd6263e6f2594333f5f90e4f7","timestamp":"2025-05-14T13:11:17.355Z"} +{"level":"info","message":"Guest messages for guest ID e172290cd6263e6f2594333f5f90e4f7 were already processed.","timestamp":"2025-05-14T13:11:17.356Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=96f5c4804077390d2e15606f9819f55f","timestamp":"2025-05-14T13:11:17.357Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 96f5c4804077390d2e15606f9819f55f","timestamp":"2025-05-14T13:11:17.358Z"} +{"level":"info","message":"Guest messages for guest ID 96f5c4804077390d2e15606f9819f55f were already processed.","timestamp":"2025-05-14T13:11:17.358Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=f76c4b9a764e2d6b8c59fd19687812ff","timestamp":"2025-05-14T13:11:17.360Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID f76c4b9a764e2d6b8c59fd19687812ff","timestamp":"2025-05-14T13:11:17.360Z"} +{"level":"info","message":"Guest messages for guest ID f76c4b9a764e2d6b8c59fd19687812ff were already processed.","timestamp":"2025-05-14T13:11:17.361Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=c4378cb2eaec94d5e68835cd6a95f334","timestamp":"2025-05-14T13:11:17.363Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID c4378cb2eaec94d5e68835cd6a95f334","timestamp":"2025-05-14T13:11:17.363Z"} +{"level":"info","message":"Guest messages for guest ID c4378cb2eaec94d5e68835cd6a95f334 were already processed.","timestamp":"2025-05-14T13:11:17.364Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=72b3851bc1e64d63c499e6b534c2f685","timestamp":"2025-05-14T13:11:17.365Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 72b3851bc1e64d63c499e6b534c2f685","timestamp":"2025-05-14T13:11:17.365Z"} +{"level":"info","message":"Guest messages for guest ID 72b3851bc1e64d63c499e6b534c2f685 were already processed.","timestamp":"2025-05-14T13:11:17.366Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0a4c115f9b71959ba238ed4d69d0b2bd","timestamp":"2025-05-14T13:11:17.368Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 0a4c115f9b71959ba238ed4d69d0b2bd","timestamp":"2025-05-14T13:11:17.368Z"} +{"level":"info","message":"Guest messages for guest ID 0a4c115f9b71959ba238ed4d69d0b2bd were already processed.","timestamp":"2025-05-14T13:11:17.369Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=5e9687d8aa37392dbcc6502eaa8777f5","timestamp":"2025-05-14T13:11:17.370Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 5e9687d8aa37392dbcc6502eaa8777f5","timestamp":"2025-05-14T13:11:17.370Z"} +{"level":"info","message":"Guest messages for guest ID 5e9687d8aa37392dbcc6502eaa8777f5 were already processed.","timestamp":"2025-05-14T13:11:17.371Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=d8eb7603a4d012cc0077750dfe895d4f","timestamp":"2025-05-14T13:11:17.372Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID d8eb7603a4d012cc0077750dfe895d4f","timestamp":"2025-05-14T13:11:17.373Z"} +{"level":"info","message":"Guest messages for guest ID d8eb7603a4d012cc0077750dfe895d4f were already processed.","timestamp":"2025-05-14T13:11:17.373Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=8af4660b9c469159e7e6a3a96fc3e887","timestamp":"2025-05-14T13:11:17.375Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 8af4660b9c469159e7e6a3a96fc3e887","timestamp":"2025-05-14T13:11:17.375Z"} +{"level":"info","message":"Guest messages for guest ID 8af4660b9c469159e7e6a3a96fc3e887 were already processed.","timestamp":"2025-05-14T13:11:17.376Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=2a11b17d8e84aa6bc1f11695c69c7797","timestamp":"2025-05-14T13:11:17.378Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 2a11b17d8e84aa6bc1f11695c69c7797","timestamp":"2025-05-14T13:11:17.378Z"} +{"level":"info","message":"Guest messages for guest ID 2a11b17d8e84aa6bc1f11695c69c7797 were already processed.","timestamp":"2025-05-14T13:11:17.379Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=8b5d6a6fab3d07cbc262c7a27c40007f","timestamp":"2025-05-14T13:11:17.381Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 8b5d6a6fab3d07cbc262c7a27c40007f","timestamp":"2025-05-14T13:11:17.381Z"} +{"level":"info","message":"Guest messages for guest ID 8b5d6a6fab3d07cbc262c7a27c40007f were already processed.","timestamp":"2025-05-14T13:11:17.382Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746463345144-ylmarlnq2","timestamp":"2025-05-14T13:11:17.384Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746463345144-ylmarlnq2","timestamp":"2025-05-14T13:11:17.384Z"} +{"level":"info","message":"Guest messages for guest ID 1746463345144-ylmarlnq2 were already processed.","timestamp":"2025-05-14T13:11:17.385Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=71aa676b5148fcf70266f62033ac07ce","timestamp":"2025-05-14T13:11:17.386Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 71aa676b5148fcf70266f62033ac07ce","timestamp":"2025-05-14T13:11:17.386Z"} +{"level":"info","message":"Guest messages for guest ID 71aa676b5148fcf70266f62033ac07ce were already processed.","timestamp":"2025-05-14T13:11:17.387Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1f09a77763c0f046aaa789f9d019984d","timestamp":"2025-05-14T13:11:17.389Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1f09a77763c0f046aaa789f9d019984d","timestamp":"2025-05-14T13:11:17.389Z"} +{"level":"info","message":"Guest messages for guest ID 1f09a77763c0f046aaa789f9d019984d were already processed.","timestamp":"2025-05-14T13:11:17.390Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=655c2a907c038a9f7324344d8e3af59e","timestamp":"2025-05-14T13:11:17.391Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 655c2a907c038a9f7324344d8e3af59e","timestamp":"2025-05-14T13:11:17.391Z"} +{"level":"info","message":"Guest messages for guest ID 655c2a907c038a9f7324344d8e3af59e were already processed.","timestamp":"2025-05-14T13:11:17.392Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0541b3cad5c9eaf088709e380d62d72e","timestamp":"2025-05-14T13:11:17.394Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 0541b3cad5c9eaf088709e380d62d72e","timestamp":"2025-05-14T13:11:17.395Z"} +{"level":"info","message":"Guest messages for guest ID 0541b3cad5c9eaf088709e380d62d72e were already processed.","timestamp":"2025-05-14T13:11:17.396Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=434910a20e533ca13211a6e5338f13f7","timestamp":"2025-05-14T13:11:17.397Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 434910a20e533ca13211a6e5338f13f7","timestamp":"2025-05-14T13:11:17.397Z"} +{"level":"info","message":"Guest messages for guest ID 434910a20e533ca13211a6e5338f13f7 were already processed.","timestamp":"2025-05-14T13:11:17.398Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=ce26ad9c9c646bc448d13e612ddff4c6","timestamp":"2025-05-14T13:11:17.400Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID ce26ad9c9c646bc448d13e612ddff4c6","timestamp":"2025-05-14T13:11:17.400Z"} +{"level":"info","message":"Guest messages for guest ID ce26ad9c9c646bc448d13e612ddff4c6 were already processed.","timestamp":"2025-05-14T13:11:17.401Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=6dcb1a67de88e628de643a201f9f455d","timestamp":"2025-05-14T13:11:17.402Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 6dcb1a67de88e628de643a201f9f455d","timestamp":"2025-05-14T13:11:17.403Z"} +{"level":"info","message":"Guest messages for guest ID 6dcb1a67de88e628de643a201f9f455d were already processed.","timestamp":"2025-05-14T13:11:17.404Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=f6a9e94119b2317d7b9be50733ac5e51","timestamp":"2025-05-14T13:11:17.406Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID f6a9e94119b2317d7b9be50733ac5e51","timestamp":"2025-05-14T13:11:17.406Z"} +{"level":"info","message":"Guest messages for guest ID f6a9e94119b2317d7b9be50733ac5e51 were already processed.","timestamp":"2025-05-14T13:11:17.407Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=19fae7d5baa3b5217a8bb3d96c9cbf82","timestamp":"2025-05-14T13:11:17.408Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 19fae7d5baa3b5217a8bb3d96c9cbf82","timestamp":"2025-05-14T13:11:17.408Z"} +{"level":"info","message":"Guest messages for guest ID 19fae7d5baa3b5217a8bb3d96c9cbf82 were already processed.","timestamp":"2025-05-14T13:11:17.409Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0d929f5ec7a0b00d2e5cfd54eb1c2c7e","timestamp":"2025-05-14T13:11:17.411Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 0d929f5ec7a0b00d2e5cfd54eb1c2c7e","timestamp":"2025-05-14T13:11:17.411Z"} +{"level":"info","message":"Guest messages for guest ID 0d929f5ec7a0b00d2e5cfd54eb1c2c7e were already processed.","timestamp":"2025-05-14T13:11:17.412Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=ba2ffec057a35dd8f68d2f0791c2b842","timestamp":"2025-05-14T13:11:17.413Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID ba2ffec057a35dd8f68d2f0791c2b842","timestamp":"2025-05-14T13:11:17.413Z"} +{"level":"info","message":"Guest messages for guest ID ba2ffec057a35dd8f68d2f0791c2b842 were already processed.","timestamp":"2025-05-14T13:11:17.414Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=c7d08b33c81f332520551ac825dccf65","timestamp":"2025-05-14T13:11:17.416Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID c7d08b33c81f332520551ac825dccf65","timestamp":"2025-05-14T13:11:17.416Z"} +{"level":"info","message":"Guest messages for guest ID c7d08b33c81f332520551ac825dccf65 were already processed.","timestamp":"2025-05-14T13:11:17.418Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=c729c21d331c26f9103ad1024956e403","timestamp":"2025-05-14T13:11:17.419Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID c729c21d331c26f9103ad1024956e403","timestamp":"2025-05-14T13:11:17.420Z"} +{"level":"info","message":"Guest messages for guest ID c729c21d331c26f9103ad1024956e403 were already processed.","timestamp":"2025-05-14T13:11:17.420Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=6c8674af64c3c38b58bbf61b065d738e","timestamp":"2025-05-14T13:11:17.422Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 6c8674af64c3c38b58bbf61b065d738e","timestamp":"2025-05-14T13:11:17.422Z"} +{"level":"info","message":"Guest messages for guest ID 6c8674af64c3c38b58bbf61b065d738e were already processed.","timestamp":"2025-05-14T13:11:17.423Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=3926a395b41803c5a6b0365b97fb3cb5","timestamp":"2025-05-14T13:11:17.424Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 3926a395b41803c5a6b0365b97fb3cb5","timestamp":"2025-05-14T13:11:17.425Z"} +{"level":"info","message":"Guest messages for guest ID 3926a395b41803c5a6b0365b97fb3cb5 were already processed.","timestamp":"2025-05-14T13:11:17.425Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=dcbbfc0c915a1ce026528c2104106209","timestamp":"2025-05-14T13:11:17.427Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID dcbbfc0c915a1ce026528c2104106209","timestamp":"2025-05-14T13:11:17.427Z"} +{"level":"info","message":"Guest messages for guest ID dcbbfc0c915a1ce026528c2104106209 were already processed.","timestamp":"2025-05-14T13:11:17.428Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=a2adbf150cc15e85cad5b6ad087b710b","timestamp":"2025-05-14T13:11:17.429Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID a2adbf150cc15e85cad5b6ad087b710b","timestamp":"2025-05-14T13:11:17.429Z"} +{"level":"info","message":"Guest messages for guest ID a2adbf150cc15e85cad5b6ad087b710b were already processed.","timestamp":"2025-05-14T13:11:17.430Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=b9003e60118545cc8cb0623077cc4f63","timestamp":"2025-05-14T13:11:17.432Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID b9003e60118545cc8cb0623077cc4f63","timestamp":"2025-05-14T13:11:17.432Z"} +{"level":"info","message":"Guest messages for guest ID b9003e60118545cc8cb0623077cc4f63 were already processed.","timestamp":"2025-05-14T13:11:17.433Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=efd5f85208bdbe946f0d3f04c9ba336d","timestamp":"2025-05-14T13:11:17.435Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID efd5f85208bdbe946f0d3f04c9ba336d","timestamp":"2025-05-14T13:11:17.435Z"} +{"level":"info","message":"Guest messages for guest ID efd5f85208bdbe946f0d3f04c9ba336d were already processed.","timestamp":"2025-05-14T13:11:17.436Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=f3b209b70545a9a0aa1a4f94a0238785","timestamp":"2025-05-14T13:11:17.437Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID f3b209b70545a9a0aa1a4f94a0238785","timestamp":"2025-05-14T13:11:17.438Z"} +{"level":"info","message":"Guest messages for guest ID f3b209b70545a9a0aa1a4f94a0238785 were already processed.","timestamp":"2025-05-14T13:11:17.438Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=bf3fdb217687be2bdd5d0baaa18e2665","timestamp":"2025-05-14T13:11:17.440Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID bf3fdb217687be2bdd5d0baaa18e2665","timestamp":"2025-05-14T13:11:17.440Z"} +{"level":"info","message":"Guest messages for guest ID bf3fdb217687be2bdd5d0baaa18e2665 were already processed.","timestamp":"2025-05-14T13:11:17.441Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=fbd39c74ae8b8b48930e08b519787a12","timestamp":"2025-05-14T13:11:17.442Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID fbd39c74ae8b8b48930e08b519787a12","timestamp":"2025-05-14T13:11:17.442Z"} +{"level":"info","message":"Guest messages for guest ID fbd39c74ae8b8b48930e08b519787a12 were already processed.","timestamp":"2025-05-14T13:11:17.443Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=23fb4de594179339d2b6f27be5891a96","timestamp":"2025-05-14T13:11:17.444Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 23fb4de594179339d2b6f27be5891a96","timestamp":"2025-05-14T13:11:17.445Z"} +{"level":"info","message":"Guest messages for guest ID 23fb4de594179339d2b6f27be5891a96 were already processed.","timestamp":"2025-05-14T13:11:17.446Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=806b063766ddc43e8fc0b822c032472d","timestamp":"2025-05-14T13:11:17.447Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 806b063766ddc43e8fc0b822c032472d","timestamp":"2025-05-14T13:11:17.447Z"} +{"level":"info","message":"Guest messages for guest ID 806b063766ddc43e8fc0b822c032472d were already processed.","timestamp":"2025-05-14T13:11:17.448Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=b6f8dc2c159c5b4983e9431cfb3e02ea","timestamp":"2025-05-14T13:11:17.450Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID b6f8dc2c159c5b4983e9431cfb3e02ea","timestamp":"2025-05-14T13:11:17.450Z"} +{"level":"info","message":"Guest messages for guest ID b6f8dc2c159c5b4983e9431cfb3e02ea were already processed.","timestamp":"2025-05-14T13:11:17.451Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=7dcd8237d8bb9b8344a16748851aaa1d","timestamp":"2025-05-14T13:11:17.452Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 7dcd8237d8bb9b8344a16748851aaa1d","timestamp":"2025-05-14T13:11:17.452Z"} +{"level":"info","message":"Guest messages for guest ID 7dcd8237d8bb9b8344a16748851aaa1d were already processed.","timestamp":"2025-05-14T13:11:17.453Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=7fd62b29aad08c99e38fe96abb70158f","timestamp":"2025-05-14T13:11:17.454Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 7fd62b29aad08c99e38fe96abb70158f","timestamp":"2025-05-14T13:11:17.455Z"} +{"level":"info","message":"Guest messages for guest ID 7fd62b29aad08c99e38fe96abb70158f were already processed.","timestamp":"2025-05-14T13:11:17.455Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=dbd03ab1af02855698333b2c8916ec3f","timestamp":"2025-05-14T13:11:16.569Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID dbd03ab1af02855698333b2c8916ec3f","timestamp":"2025-05-14T13:11:16.569Z"} +{"level":"info","message":"Guest messages for guest ID dbd03ab1af02855698333b2c8916ec3f were already processed.","timestamp":"2025-05-14T13:11:16.570Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=937df75e640dce12ded1832a8b607040","timestamp":"2025-05-14T13:11:16.572Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 937df75e640dce12ded1832a8b607040","timestamp":"2025-05-14T13:11:16.572Z"} +{"level":"info","message":"Guest messages for guest ID 937df75e640dce12ded1832a8b607040 were already processed.","timestamp":"2025-05-14T13:11:16.573Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746057084616-5yz5fv65c","timestamp":"2025-05-14T13:11:16.575Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746057084616-5yz5fv65c","timestamp":"2025-05-14T13:11:16.575Z"} +{"level":"info","message":"Guest messages for guest ID 1746057084616-5yz5fv65c were already processed.","timestamp":"2025-05-14T13:11:16.576Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=3919e986b4c273269d4053b4a4753198","timestamp":"2025-05-14T13:11:16.578Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 3919e986b4c273269d4053b4a4753198","timestamp":"2025-05-14T13:11:16.578Z"} +{"level":"info","message":"Guest messages for guest ID 3919e986b4c273269d4053b4a4753198 were already processed.","timestamp":"2025-05-14T13:11:16.579Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=8094762fbaf7141795fd886835bcd372","timestamp":"2025-05-14T13:11:16.580Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 8094762fbaf7141795fd886835bcd372","timestamp":"2025-05-14T13:11:16.580Z"} +{"level":"info","message":"Guest messages for guest ID 8094762fbaf7141795fd886835bcd372 were already processed.","timestamp":"2025-05-14T13:11:16.581Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746048025646-a9cve1ac8","timestamp":"2025-05-14T13:11:16.583Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746048025646-a9cve1ac8","timestamp":"2025-05-14T13:11:16.583Z"} +{"level":"info","message":"Guest messages for guest ID 1746048025646-a9cve1ac8 were already processed.","timestamp":"2025-05-14T13:11:16.584Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=061143c028cafec9296f383002126907","timestamp":"2025-05-14T13:11:16.585Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 061143c028cafec9296f383002126907","timestamp":"2025-05-14T13:11:16.586Z"} +{"level":"info","message":"Guest messages for guest ID 061143c028cafec9296f383002126907 were already processed.","timestamp":"2025-05-14T13:11:16.586Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","authType":"wallet","authenticated":true,"cookie":{"expires":"2025-06-13T13:10:47.681Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"597e6501b9bae6fdba1dea790ca914e5","isAdmin":true,"level":"info","message":"[SessionService] Saving session data:","processedGuestIds":["597e6501b9bae6fdba1dea790ca914e5","758c5501236dd51c907b8035b014561e","0fc862553fa644a4d875a79ff01e1786","4ce93dd87f076a6bdcdfd373737d79f9","1746053084533-wqwfw5fm2","e172290cd6263e6f2594333f5f90e4f7","96f5c4804077390d2e15606f9819f55f","f76c4b9a764e2d6b8c59fd19687812ff","c4378cb2eaec94d5e68835cd6a95f334","72b3851bc1e64d63c499e6b534c2f685","0a4c115f9b71959ba238ed4d69d0b2bd","5e9687d8aa37392dbcc6502eaa8777f5","d8eb7603a4d012cc0077750dfe895d4f","8af4660b9c469159e7e6a3a96fc3e887","2a11b17d8e84aa6bc1f11695c69c7797","8b5d6a6fab3d07cbc262c7a27c40007f","1746463345144-ylmarlnq2","71aa676b5148fcf70266f62033ac07ce","1f09a77763c0f046aaa789f9d019984d","655c2a907c038a9f7324344d8e3af59e","0541b3cad5c9eaf088709e380d62d72e","434910a20e533ca13211a6e5338f13f7","ce26ad9c9c646bc448d13e612ddff4c6","6dcb1a67de88e628de643a201f9f455d","f6a9e94119b2317d7b9be50733ac5e51","19fae7d5baa3b5217a8bb3d96c9cbf82","0d929f5ec7a0b00d2e5cfd54eb1c2c7e","ba2ffec057a35dd8f68d2f0791c2b842","c7d08b33c81f332520551ac825dccf65","c729c21d331c26f9103ad1024956e403","6c8674af64c3c38b58bbf61b065d738e","3926a395b41803c5a6b0365b97fb3cb5","dcbbfc0c915a1ce026528c2104106209","a2adbf150cc15e85cad5b6ad087b710b","b9003e60118545cc8cb0623077cc4f63","efd5f85208bdbe946f0d3f04c9ba336d","f3b209b70545a9a0aa1a4f94a0238785","bf3fdb217687be2bdd5d0baaa18e2665","fbd39c74ae8b8b48930e08b519787a12","23fb4de594179339d2b6f27be5891a96","806b063766ddc43e8fc0b822c032472d","b6f8dc2c159c5b4983e9431cfb3e02ea","7dcd8237d8bb9b8344a16748851aaa1d","7fd62b29aad08c99e38fe96abb70158f","dbd03ab1af02855698333b2c8916ec3f","937df75e640dce12ded1832a8b607040","1746057084616-5yz5fv65c","3919e986b4c273269d4053b4a4753198","8094762fbaf7141795fd886835bcd372","1746048025646-a9cve1ac8","061143c028cafec9296f383002126907"],"timestamp":"2025-05-14T13:11:16.588Z","userId":1} +{"level":"info","message":"Session saved successfully","timestamp":"2025-05-14T13:11:16.591Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:16.600Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:16.601Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:16.610Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:16.611Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:16.624Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:16.625Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:16.635Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:16.636Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:16.651Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:16.653Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:14.916Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:14.918Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:14.932Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:14.934Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:14.948Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:14.949Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:14.968Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:14.969Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:11:14.987Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:11:14.988Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:15.013Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:15.014Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:15.107Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:15.108Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:15.119Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:15.120Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T13:11:15.441Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T13:11:15.725Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T13:11:16.440Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T13:11:16.641Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T13:11:16.642Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:11:16.650Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:11:16.651Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T13:11:17.094Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T13:11:17.393Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T13:11:18.055Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T13:11:18.257Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T13:11:18.258Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-14T13:11:19.930Z"} +{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-14T13:11:19.945Z"} +{"count":24,"level":"info","limit":30,"message":"Returning message history for user 1","offset":0,"timestamp":"2025-05-14T13:11:19.948Z","total":24} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:22.764Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.765Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:22.777Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.779Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:22.784Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.788Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:22.793Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.796Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:22.800Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.801Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:22.807Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.810Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:22.813Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.815Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:22.822Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.823Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:22.827Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.830Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:22.836Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.838Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:22.843Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.844Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:22.850Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.852Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:22.854Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.856Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:11:22.862Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.863Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:22.866Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.868Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:22.876Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.878Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:22.885Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.886Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:22.894Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.895Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:22.902Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.903Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:22.909Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.911Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:22.918Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.919Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:22.926Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.927Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:22.935Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.936Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:22.944Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:22.945Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:45.792Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:45.794Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:53.402Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:53.404Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:53.410Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:53.412Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:53.419Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:53.420Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:11:53.427Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:11:53.428Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:12:16.052Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:12:16.054Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:12:23.746Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:12:23.748Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:12:23.758Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:12:23.760Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:12:23.770Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:12:23.771Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:12:23.782Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:12:23.783Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:12:46.294Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:12:46.297Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:12:53.897Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:12:53.898Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:12:53.907Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:12:53.909Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:12:53.916Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:12:53.917Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:12:53.924Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:12:53.926Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:13:16.504Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:13:16.506Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:13:24.187Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:13:24.190Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:13:24.202Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:13:24.203Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:13:24.214Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:13:24.215Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:13:24.225Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:13:24.227Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:13:46.796Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:13:46.799Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:13:54.445Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:13:54.446Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:13:54.454Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:13:54.455Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:13:54.461Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:13:54.462Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:13:54.469Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:13:54.470Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:14:16.986Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:14:16.990Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:14:24.673Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:14:24.675Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:14:24.687Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:14:24.688Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:14:24.698Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:14:24.699Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:14:24.709Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:14:24.711Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-05-14T13:15:04.509Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-05-14T13:15:04.512Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-05-14T13:15:04.513Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-05-14T13:15:04.513Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-05-14T13:15:04.514Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-05-14T13:15:04.514Z"} +{"code":"ENETUNREACH","errno":"ENETUNREACH","level":"error","message":"Error launching Telegram bot: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)","stack":"FetchError: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)\n at ClientRequest. (/app/node_modules/node-fetch/lib/index.js:1501:11)\n at ClientRequest.emit (node:events:524:28)\n at emitErrorEvent (node:_http_client:101:11)\n at TLSSocket.socketErrorListener (node:_http_client:504:5)\n at TLSSocket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)","timestamp":"2025-05-14T13:15:04.700Z","type":"system"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:15:13.109Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:15:13.114Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:15:13.129Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:15:13.131Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:15:13.141Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:15:13.144Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:15:13.153Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:15:13.155Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:15:13.164Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:15:13.166Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-05-14T13:15:22.302Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-05-14T13:15:22.306Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-05-14T13:15:22.307Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-05-14T13:15:22.308Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-05-14T13:15:22.309Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-05-14T13:15:22.310Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:15:22.628Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:15:22.636Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:15:22.659Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:15:22.661Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:15:22.674Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:15:22.677Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:15:22.687Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:15:22.689Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:15:22.699Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:15:22.701Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:16:05.613Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:16:05.619Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:16:05.632Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:16:05.635Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:16:05.649Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:16:05.652Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:16:05.664Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:16:05.667Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:16:05.678Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:16:05.681Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:16:09.078Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T13:16:09.104Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:16:17.515Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:16:17.516Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:16:22.748Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:16:22.749Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:16:22.760Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:16:22.762Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:16:22.775Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:16:22.777Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:16:22.800Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:16:22.801Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:16:45.690Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:16:45.693Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:16:53.345Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:16:53.346Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:16:53.355Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:16:53.356Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:16:53.364Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:16:53.366Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:16:53.375Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:16:53.377Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:17:15.949Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:17:15.951Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:17:23.553Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:17:23.555Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:17:23.586Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:17:23.589Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:17:23.608Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:17:23.610Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:17:23.634Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:17:23.636Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:18:02.201Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:18:02.206Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:18:02.219Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:18:02.222Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:18:02.236Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:18:02.238Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:18:02.250Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:18:02.252Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:18:02.265Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:18:02.267Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:18:16.457Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:18:16.459Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-05-14T13:18:24.240Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-05-14T13:18:24.243Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-05-14T13:18:24.243Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-05-14T13:18:24.244Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-05-14T13:18:24.245Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-05-14T13:18:24.246Z"} +{"code":"ENETUNREACH","errno":"ENETUNREACH","level":"error","message":"Error launching Telegram bot: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)","stack":"FetchError: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)\n at ClientRequest. (/app/node_modules/node-fetch/lib/index.js:1501:11)\n at ClientRequest.emit (node:events:524:28)\n at emitErrorEvent (node:_http_client:101:11)\n at TLSSocket.socketErrorListener (node:_http_client:504:5)\n at TLSSocket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)","timestamp":"2025-05-14T13:18:24.462Z","type":"system"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:18:46.661Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:18:46.665Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:18:54.327Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:18:54.329Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:18:54.343Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:18:54.346Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:18:54.356Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:18:54.358Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:18:54.382Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:18:54.384Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:19:24.580Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:19:24.584Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:19:24.600Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:19:24.604Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:19:24.616Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:19:24.618Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:19:24.628Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:19:24.629Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:19:24.639Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:19:24.641Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:20:24.257Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:20:24.263Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:20:24.300Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:20:24.302Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:20:24.312Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:20:24.314Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:20:22.561Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:20:22.564Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:20:22.574Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:20:22.576Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:21:23.024Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:21:23.029Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:21:23.057Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:21:23.061Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:21:23.080Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:21:23.083Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:21:23.096Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:21:23.099Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:21:23.108Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:21:23.110Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:22:23.516Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:22:23.521Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:22:23.540Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:22:23.543Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:22:23.555Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:22:23.557Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:22:23.569Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:22:23.572Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:22:23.582Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:22:23.585Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:13.101Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:13.104Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:13.116Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:13.118Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:13.129Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:13.131Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:13.141Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:13.143Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:13.153Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:13.156Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:15.807Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:15.809Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:23.644Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:23.645Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:23.655Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:23.657Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:23.674Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:23.676Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:23.691Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:23.692Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T13:23:35.965Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:23:35.969Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:23:35.974Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:35.977Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:35.995Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:35.997Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:23:36.007Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:36.009Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:36.020Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:36.021Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:36.031Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:36.032Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:36.044Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:36.045Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:46.023Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:46.026Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:53.848Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:53.850Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:53.861Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:53.863Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:53.874Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:53.876Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:23:53.888Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:23:53.889Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:03.040Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.042Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:03.054Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.056Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:03.073Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.076Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:03.096Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:03.100Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.103Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.104Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T13:24:03.110Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:03.131Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:03.137Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.139Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.140Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:03.151Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.154Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:03.158Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.160Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:03.172Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.176Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:03.181Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.183Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:03.187Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.189Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:03.198Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.200Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:03.201Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.204Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:03.213Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.215Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:03.224Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.226Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:03.234Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.236Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:03.246Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.248Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:03.257Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.260Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:03.272Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.274Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:03.285Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.287Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:03.297Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.298Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:03.312Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.314Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:03.323Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:03.325Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:04.523Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.525Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:04.535Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.538Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:04.541Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.542Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:04.549Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.552Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:04.556Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.558Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:04.565Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.568Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:04.571Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.574Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:04.584Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:04.588Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.589Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.591Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:04.603Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.606Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:04.609Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.614Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:04.623Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.625Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:04.627Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.629Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:04.637Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.639Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:04.641Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.643Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:04.653Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.655Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:04.662Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.664Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:04.675Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.676Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:04.686Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.687Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:04.697Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.699Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:04.710Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.712Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:04.720Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.722Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:04.732Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.734Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:04.742Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:04.743Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:06.165Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.168Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:06.182Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.184Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:06.185Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.188Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-14T13:24:06.195Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:06.205Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.208Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:06.210Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.214Z"} +{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-14T13:24:06.225Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:06.230Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.232Z"} +{"count":24,"level":"info","limit":30,"message":"Returning message history for user 1","offset":0,"timestamp":"2025-05-14T13:24:06.235Z","total":24} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:06.238Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.242Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:06.248Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.252Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:06.260Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.263Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:06.285Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.288Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:06.290Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.293Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:06.306Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.309Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:06.311Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.315Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:06.324Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.326Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:06.327Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.330Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:06.339Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.340Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:06.349Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.351Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:06.360Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.362Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:06.370Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.372Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:06.381Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.383Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:06.392Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.393Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:06.400Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.402Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:06.412Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.415Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:06.432Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:06.434Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T13:24:13.321Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:24:13.332Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:13.338Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:13.341Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:13.355Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:13.357Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:24:13.367Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:13.368Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:13.381Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:13.382Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:13.392Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:13.394Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:13.404Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:13.407Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:16.266Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:16.267Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:36.577Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:36.579Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:36.587Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:36.589Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:36.595Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:36.597Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:36.610Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:36.612Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:43.631Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:43.633Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:24:46.536Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:24:46.538Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:25:06.754Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:25:06.756Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:25:06.860Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:25:06.862Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:25:06.963Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:25:06.965Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:25:07.198Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:25:07.199Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:25:13.864Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:25:13.866Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:25:16.781Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:25:16.783Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:25:37.059Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:25:37.061Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:25:37.068Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:25:37.070Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:25:37.077Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:25:37.078Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:25:37.091Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:25:37.092Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:25:44.132Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:25:44.134Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:25:47.038Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:25:47.039Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:25:54.855Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T13:25:54.866Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:26:07.290Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:26:07.292Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:26:07.300Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:26:07.302Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:26:07.311Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:26:07.313Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:26:07.343Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:26:07.345Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T13:26:14.239Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:26:14.259Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:26:14.261Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:26:14.264Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:26:14.276Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:26:14.277Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:26:14.288Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:26:14.289Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:26:14.300Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:26:14.301Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:26:14.311Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:26:14.312Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:26:14.322Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:26:14.323Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:26:17.317Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:26:17.318Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:26:37.521Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:26:37.523Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:26:37.532Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:26:37.533Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:26:37.547Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:26:37.549Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:26:37.580Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:26:37.582Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:26:44.545Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:26:44.546Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:26:48.067Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:26:48.069Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:27:07.799Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:27:07.801Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:27:07.811Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:27:07.812Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:27:07.820Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:27:07.822Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:27:07.853Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:27:07.854Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:27:14.818Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:27:14.819Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:27:15.713Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:27:15.716Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:27:38.752Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:27:38.755Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:27:38.764Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:27:38.766Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:27:38.773Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:27:38.775Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:27:38.783Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:27:38.784Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:27:42.457Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:27:42.459Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:27:45.429Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:27:45.431Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:28:08.290Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:28:08.292Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:28:08.301Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:28:08.303Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:28:08.310Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:28:08.311Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:28:08.327Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:28:08.328Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:28:12.713Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:28:12.715Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:28:15.717Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:28:15.719Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:28:35.960Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:28:35.963Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:28:35.971Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:28:35.973Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:28:35.982Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:28:35.983Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:28:36.008Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:28:36.010Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:28:42.970Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:28:42.972Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:28:45.934Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:28:45.936Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:29:06.228Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:29:06.230Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:29:06.238Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:29:06.239Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:29:06.246Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:29:06.247Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:29:06.261Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:29:06.263Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:29:13.158Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:29:13.160Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:29:16.136Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:29:16.138Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:29:37.129Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:29:37.132Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:29:37.144Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:29:37.146Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:29:37.154Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:29:37.156Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:29:37.164Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:29:37.166Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:29:43.647Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:29:43.648Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:29:46.904Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:29:46.906Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:30:06.702Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:30:06.705Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:30:06.733Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:30:06.735Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:30:06.744Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:30:06.745Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:30:06.753Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:30:06.755Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:30:13.673Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:30:13.676Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:30:16.672Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:30:16.674Z"} +{"level":"info","message":"POST /api/settings/rpc","timestamp":"2025-05-14T13:30:27.704Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:30:34.499Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T13:30:34.510Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:30:36.930Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:30:36.933Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:30:36.947Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:30:36.948Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:30:36.964Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:30:36.966Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:30:36.984Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:30:36.985Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:30:46.976Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:30:46.977Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:31:07.184Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:31:07.186Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:31:07.195Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:31:07.196Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:31:07.223Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:31:07.225Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:31:07.234Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:31:07.236Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:31:17.216Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:31:17.218Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:31:37.373Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:31:37.376Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:31:37.384Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:31:37.386Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:31:37.393Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:31:37.395Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:31:37.421Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:31:37.423Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:31:47.399Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:31:47.401Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:32:07.717Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:32:07.720Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:32:07.728Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:32:07.730Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:32:07.739Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:32:07.741Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:32:07.767Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:32:07.769Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:32:15.074Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:32:15.075Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:32:37.975Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:32:37.977Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:32:37.985Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:32:37.987Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:32:37.993Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:32:37.994Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:32:38.013Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:32:38.014Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:32:45.285Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:32:45.287Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T13:32:53.851Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:32:53.872Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:32:53.883Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:32:53.886Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:32:53.925Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:32:53.927Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:32:53.944Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:32:53.945Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:32:53.955Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:32:53.956Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:32:53.966Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:32:53.967Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:32:53.977Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:32:53.978Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:08.777Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:08.779Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:08.789Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:08.790Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:08.798Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:08.799Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:08.805Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:08.807Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:33:12.420Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.422Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T13:33:12.460Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:33:12.486Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.493Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.496Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:33:12.497Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.500Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:33:12.519Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.520Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:33:12.521Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:33:12.522Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.532Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.536Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:33:12.545Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.547Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.549Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.552Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:33:12.560Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.562Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.562Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.564Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:33:12.572Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.574Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.575Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.577Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:33:12.585Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.586Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.589Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.590Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:33:12.595Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.596Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.598Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.600Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:33:12.606Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.608Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.610Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.612Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:33:12.617Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.619Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.622Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.624Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:33:12.629Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.630Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.633Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.635Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:33:12.643Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.644Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.645Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.646Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.655Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.658Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.665Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.666Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.673Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.674Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.682Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.683Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.690Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.691Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.698Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.700Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.707Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.709Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.717Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.718Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.725Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.726Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.734Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.735Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.742Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.743Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.751Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.752Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:12.759Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:12.760Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T13:33:14.729Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T13:33:15.576Z"} +{"level":"error","message":"Provider for arbitrum is not available: ","timestamp":"2025-05-14T13:33:15.669Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T13:33:17.730Z"} +{"arbitrum":"0","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T13:33:17.731Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:33:18.890Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T13:33:18.901Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:43.064Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:43.066Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:43.075Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:43.077Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:43.085Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:43.086Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:43.096Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:43.097Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:33:43.105Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:33:43.107Z"} +{"level":"info","message":"POST /api/settings/rpc","timestamp":"2025-05-14T13:34:00.370Z"} +{"level":"info","message":"POST /api/settings/auth-tokens","timestamp":"2025-05-14T13:34:00.387Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:34:07.579Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:34:07.594Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:07.597Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T13:34:07.605Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:07.616Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:07.618Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:34:07.630Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:07.632Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:07.645Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:07.647Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:07.657Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:07.659Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:07.668Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:07.670Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T13:34:10.444Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:34:10.446Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:34:10.475Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:10.478Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:10.492Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:10.494Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:34:10.503Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:10.504Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:10.514Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:10.516Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:10.524Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:10.527Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:10.537Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:10.538Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:13.119Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:13.121Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:13.129Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:13.130Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:13.170Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:13.171Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:13.186Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:13.187Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:13.219Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:13.220Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:41.378Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:41.380Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:43.555Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:43.556Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:43.565Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:43.566Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:43.581Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:43.583Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:43.591Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:43.593Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:34:43.601Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:34:43.603Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:35:11.596Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:35:11.599Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:35:13.771Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:35:13.772Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:35:13.781Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:35:13.782Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:35:13.789Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:35:13.790Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:35:13.799Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:35:13.800Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:35:13.807Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:35:13.808Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:35:41.216Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:35:41.219Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:35:45.758Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:35:45.760Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:35:45.770Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:35:45.772Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:35:45.778Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:35:45.779Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:35:45.787Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:35:45.788Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:35:45.796Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:35:45.799Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:36:11.515Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:36:11.517Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:36:14.111Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:36:14.113Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:36:14.124Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:36:14.125Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:36:14.169Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:36:14.172Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:36:14.182Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:36:14.183Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:36:14.209Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:36:14.210Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:36:41.767Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:36:41.769Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:36:44.369Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:36:44.371Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:36:44.388Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:36:44.389Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:36:44.423Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:36:44.425Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:36:44.441Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:36:44.442Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:36:44.460Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:36:44.461Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:37:12.004Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:37:12.007Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:37:14.596Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:37:14.598Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:37:14.611Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:37:14.613Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:37:14.648Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:37:14.650Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:37:14.665Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:37:14.666Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:37:14.687Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:37:14.689Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:37:42.509Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:37:42.511Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:37:44.972Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:37:44.974Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:37:44.987Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:37:44.989Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:37:45.042Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:37:45.044Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:37:45.053Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:37:45.054Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:37:45.075Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:37:45.076Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:38:10.511Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:38:10.514Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:38:12.697Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:38:12.698Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:38:12.707Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:38:12.709Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:38:12.716Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:38:12.717Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:38:12.725Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:38:12.726Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:38:12.733Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:38:12.735Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:38:40.190Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:38:40.192Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:38:42.780Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:38:42.781Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:38:42.789Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:38:42.790Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:38:42.830Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:38:42.832Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:38:42.843Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:38:42.845Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:38:42.881Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:38:42.883Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:39:11.047Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:39:11.049Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:39:13.224Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:39:13.225Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:39:13.236Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:39:13.238Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:39:13.246Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:39:13.247Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:39:13.255Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:39:13.256Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:39:13.264Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:39:13.265Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:39:41.240Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:39:41.242Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:39:43.393Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:39:43.394Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:39:43.402Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:39:43.403Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:39:43.411Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:39:43.412Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:39:43.421Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:39:43.423Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:39:43.430Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:39:43.431Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:40:24.676Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:40:24.679Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:40:24.690Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:40:24.691Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:40:24.699Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:40:24.700Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:40:24.708Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:40:24.709Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:40:24.717Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:40:24.719Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:40:24.727Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:40:24.728Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:41:22.718Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:41:22.721Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:41:22.730Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:41:22.732Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:41:22.740Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:41:22.742Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:41:22.751Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:41:22.753Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:41:22.761Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:41:22.762Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:41:22.772Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:41:22.774Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:41:41.621Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:41:41.623Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:41:44.219Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:41:44.221Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:41:44.234Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:41:44.235Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:41:44.275Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:41:44.276Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:41:44.294Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:41:44.295Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:41:44.325Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:41:44.326Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:42:11.937Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:42:11.940Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:42:14.732Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:42:14.734Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:42:14.743Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:42:14.744Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:42:14.751Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:42:14.753Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:42:14.760Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:42:14.762Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:42:14.770Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:42:14.771Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:42:42.798Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:42:42.800Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:42:44.998Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:42:44.999Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:42:45.007Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:42:45.008Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:42:45.016Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:42:45.018Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:42:45.024Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:42:45.026Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:42:45.033Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:42:45.035Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:13.068Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:13.071Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:23.553Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:23.556Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:23.567Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:23.569Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:23.578Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:23.580Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:23.586Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:23.587Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:23.594Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:23.596Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:47.206Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:47.209Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:47.221Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:47.223Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:47.233Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:47.236Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:47.246Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:47.248Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:47.262Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:47.265Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:47.283Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:47.287Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:43:59.646Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.650Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T13:43:59.669Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.707Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.710Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:43:59.713Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:43:59.719Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.723Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:43:59.735Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T13:43:59.736Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:43:59.744Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.746Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.753Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.755Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:43:59.770Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.773Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.778Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.781Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:43:59.789Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.791Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.794Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.798Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:43:59.804Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.806Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.811Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.815Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:43:59.827Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.829Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.832Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.834Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:43:59.840Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.842Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.847Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.850Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:43:59.856Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.860Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.866Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.869Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:43:59.876Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.878Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.881Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.883Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:43:59.888Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.892Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.897Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.899Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:43:59.903Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.904Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.910Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.912Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.919Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.921Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.931Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.933Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.944Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.947Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.956Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.958Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.966Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.968Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.974Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.976Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.985Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.987Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:43:59.995Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:43:59.997Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:44:00.005Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:44:00.006Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:44:00.014Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:44:00.015Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:44:00.023Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:44:00.025Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:44:00.034Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:44:00.036Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:44:00.045Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:44:00.047Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T13:44:02.157Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T13:44:04.211Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T13:44:05.184Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T13:44:07.394Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T13:44:07.394Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:44:30.684Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:44:30.686Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:44:30.697Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:44:30.698Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:44:30.706Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:44:30.708Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:44:30.714Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:44:30.716Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:44:30.723Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:44:30.725Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:44:30.732Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:44:30.734Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:45:00.387Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:45:00.389Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:45:00.401Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:45:00.403Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:45:00.416Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:45:00.418Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:45:00.430Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:45:00.435Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:45:00.455Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:45:00.459Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:45:00.475Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:45:00.477Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:45:28.020Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:45:28.022Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:45:28.077Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:45:28.078Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:45:28.147Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:45:28.148Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:45:28.245Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:45:28.246Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:45:28.334Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:45:28.335Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:45:28.424Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:45:28.426Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:45:58.276Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:45:58.278Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:45:58.285Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:45:58.286Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:45:58.312Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:45:58.313Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:45:58.322Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:45:58.323Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:45:58.347Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:45:58.348Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:45:58.379Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:45:58.380Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:46:29.040Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:46:29.042Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:46:29.051Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:46:29.053Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:46:29.060Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:46:29.061Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:46:29.069Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:46:29.070Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:46:29.078Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:46:29.079Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:46:29.086Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:46:29.087Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:46:59.227Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:46:59.229Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:46:59.237Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:46:59.239Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:46:59.246Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:46:59.247Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:46:59.254Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:46:59.255Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:46:59.262Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:46:59.263Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:46:59.270Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:46:59.271Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:47:29.069Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:47:29.072Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:47:29.081Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:47:29.083Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:47:29.090Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:47:29.091Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:47:29.121Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:47:29.122Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:47:29.141Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:47:29.142Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:47:29.157Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:47:29.158Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:47:31.798Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T13:47:31.809Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:47:59.286Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:47:59.288Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:47:59.299Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:47:59.300Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:47:59.339Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:47:59.340Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:47:59.359Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:47:59.360Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:47:59.378Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:47:59.379Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:48:30.034Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:48:30.037Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:48:30.047Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:48:30.049Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:48:30.056Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:48:30.057Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:48:30.064Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:48:30.066Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:48:30.073Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:48:30.074Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:49:00.305Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:49:00.308Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:49:00.317Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:49:00.318Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:49:00.326Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:49:00.327Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:49:00.335Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:49:00.336Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:49:00.343Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:49:00.345Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:49:30.465Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:49:30.468Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:49:30.478Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:49:30.480Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:49:30.489Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:49:30.491Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:49:30.500Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:49:30.501Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:49:30.509Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:49:30.511Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:49:37.118Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T13:49:37.150Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:49:37.154Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:49:37.157Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:49:37.179Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:49:37.182Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:49:37.195Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:49:37.197Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:49:37.213Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:49:37.214Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:49:37.230Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:49:37.232Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:49:37.242Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:49:37.244Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T13:49:41.047Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T13:49:41.048Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-05-14T13:49:49.451Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-05-14T13:49:49.455Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-05-14T13:49:49.456Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-05-14T13:49:49.457Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-05-14T13:49:49.457Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-05-14T13:49:49.458Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T13:49:50.501Z"} +{"level":"error","message":"Ошибка при тестировании RPC: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T13:49:50.503Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:50:00.903Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:50:00.907Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:50:00.920Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:50:00.923Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:50:00.933Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:50:00.935Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:50:00.943Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:50:00.945Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:50:00.954Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:50:00.956Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T13:50:06.111Z"} +{"level":"error","message":"Ошибка при тестировании RPC: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T13:50:06.112Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:50:09.619Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:50:09.622Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:50:30.596Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:50:30.598Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:50:30.629Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:50:30.630Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:50:30.659Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:50:30.661Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:50:30.695Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:50:30.696Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:50:30.730Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:50:30.731Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T13:50:30.954Z"} +{"level":"error","message":"Ошибка при тестировании RPC: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T13:50:30.955Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:50:43.548Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:50:43.551Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:50:48.118Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T13:50:48.132Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:50:58.182Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:50:58.185Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:50:58.195Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:50:58.196Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:50:58.232Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:50:58.234Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:50:58.260Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:50:58.262Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:50:58.278Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:50:58.279Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:51:28.932Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:51:28.935Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:51:28.943Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:51:28.945Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:51:28.954Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:51:28.955Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:51:28.963Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:51:28.964Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:51:28.972Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:51:28.974Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:51:59.211Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:51:59.214Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:51:59.223Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:51:59.225Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:51:59.234Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:51:59.236Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:51:59.243Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:51:59.245Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:51:59.253Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:51:59.255Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:00.750Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:00.753Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:00.761Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:00.763Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:00.771Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:00.772Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:00.782Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:00.784Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:00.793Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:00.795Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:29.515Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:29.517Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:29.529Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:29.530Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:29.565Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:29.568Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:29.581Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:29.583Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:29.601Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:29.603Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T13:53:29.632Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:53:29.660Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:53:29.664Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:29.666Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:29.682Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:29.684Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T13:53:29.695Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:29.697Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:29.710Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:29.713Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:29.727Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:29.728Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:29.741Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:29.743Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T13:53:46.382Z"} +{"level":"error","message":"Ошибка при тестировании RPC: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T13:53:46.383Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:59.739Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:59.742Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:59.753Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:59.754Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:59.796Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:59.798Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:59.815Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:59.817Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:59.833Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:59.834Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:53:59.961Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:53:59.962Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:54:30.428Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:54:30.431Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:54:30.442Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:54:30.443Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:54:30.451Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:54:30.453Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:54:30.461Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:54:30.463Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:54:30.471Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:54:30.473Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:54:30.481Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:54:30.483Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:54:46.488Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T13:54:46.501Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:55:00.307Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:55:00.309Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:55:00.319Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:55:00.322Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:55:00.350Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:55:00.352Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:55:00.377Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:55:00.379Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:55:00.393Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:55:00.395Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:55:31.004Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:55:31.007Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:55:31.016Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:55:31.018Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:55:31.026Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:55:31.027Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:55:31.034Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:55:31.035Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:55:31.043Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:55:31.045Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:56:00.426Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:56:00.428Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:56:00.438Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:56:00.439Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:56:00.446Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:56:00.448Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:56:00.457Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:56:00.459Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:56:00.468Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:56:00.470Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:56:09.824Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T13:56:09.836Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T13:56:53.431Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T13:56:53.442Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:57:00.179Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:57:00.182Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:57:00.192Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:57:00.194Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:57:00.202Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:57:00.203Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:57:00.211Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:57:00.213Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:57:00.221Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:57:00.222Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T13:57:28.359Z"} +{"level":"error","message":"Ошибка при тестировании RPC: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T13:57:28.360Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:57:31.342Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:57:31.345Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:57:31.355Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:57:31.356Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:57:31.364Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:57:31.366Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:57:31.373Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:57:31.374Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:57:31.382Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:57:31.383Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:57:59.575Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:57:59.578Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:57:59.587Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:57:59.589Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:57:59.596Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:57:59.597Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:57:59.605Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:57:59.607Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:57:59.615Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:57:59.617Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:58:29.876Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:58:29.878Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:58:29.886Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:58:29.888Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:58:29.896Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:58:29.897Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:58:29.905Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:58:29.906Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:58:29.914Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:58:29.915Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T13:58:44.702Z"} +{"level":"error","message":"Ошибка при тестировании RPC: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T13:58:44.702Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:59:05.877Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:59:05.882Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:59:05.891Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:59:05.893Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:59:05.920Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:59:05.921Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:59:05.930Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:59:05.932Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:59:05.941Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:59:05.943Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T13:59:17.094Z"} +{"level":"error","message":"Ошибка при тестировании RPC: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T13:59:17.095Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T13:59:21.213Z"} +{"level":"error","message":"Ошибка при тестировании RPC: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T13:59:21.213Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T13:59:25.870Z"} +{"level":"error","message":"Ошибка при тестировании RPC: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T13:59:25.871Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:59:29.865Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:59:29.868Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:59:29.880Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:59:29.882Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:59:29.934Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:59:29.935Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:59:29.946Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:59:29.947Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T13:59:29.967Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T13:59:29.968Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:00.682Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:00.685Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:00.695Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:00.696Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:00.705Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:00.707Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:00.714Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:00.716Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:00.724Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:00.725Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T14:00:23.427Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T14:00:23.433Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:00:23.437Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:23.441Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:23.456Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:23.459Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:00:23.472Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:23.473Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:23.483Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:23.484Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:23.493Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:23.494Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:23.505Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:23.506Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:30.405Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:30.407Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:30.417Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:30.419Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:30.475Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:30.476Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:30.493Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:30.495Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:30.511Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:30.512Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:54.522Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:54.524Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:58.505Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:58.507Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:58.518Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:58.520Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:58.527Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:58.528Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:58.536Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:58.538Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:00:58.546Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:00:58.548Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:24.902Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:24.906Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:28.770Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:28.772Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:28.780Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:28.781Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:28.788Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:28.790Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:28.797Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:28.799Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:28.806Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:28.807Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T14:01:38.113Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T14:01:38.125Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T14:01:46.008Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T14:01:46.029Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:01:46.032Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:46.034Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:46.046Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:46.048Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:01:46.057Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:46.059Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:46.068Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:46.070Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:46.080Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:46.082Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:46.091Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:46.092Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:01:47.989Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:47.990Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:01:47.999Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.001Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T14:01:48.005Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:48.009Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.011Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:01:48.017Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.019Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:48.020Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.022Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:01:48.029Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.031Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:48.032Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.034Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:01:48.041Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.042Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:48.046Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.047Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:01:48.052Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.054Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:48.056Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.058Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:01:48.064Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.066Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:48.068Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.070Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:01:48.077Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.078Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:48.080Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.082Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:48.089Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.090Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:48.098Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.099Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:48.106Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.107Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:48.115Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.116Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:48.123Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.125Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:48.133Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.134Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:48.142Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.143Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:48.150Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.152Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:48.159Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:48.160Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:01:56.753Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.756Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:01:56.767Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.769Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:01:56.781Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.782Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:01:56.790Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.791Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:56.793Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.796Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:56.803Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.806Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:01:56.807Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.809Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:56.815Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.817Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:01:56.820Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.823Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:56.829Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.831Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:01:56.837Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.839Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:56.842Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.844Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:01:56.851Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:56.851Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.852Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.853Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:56.861Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.862Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:56.870Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.871Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:56.878Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.880Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:56.887Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.889Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:56.896Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.897Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:56.905Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.906Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:56.914Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.916Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:56.925Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.926Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:56.937Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.939Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:56.946Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:56.948Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:01:58.505Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:01:58.507Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T14:02:00.628Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T14:02:00.642Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:02:25.316Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.319Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:02:25.344Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.345Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:02:25.355Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.357Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:02:25.368Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.370Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.373Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.377Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:02:25.382Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.385Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T14:02:25.388Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.391Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.392Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T14:02:25.402Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T14:02:25.403Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:02:25.408Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.410Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.412Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.413Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.421Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:02:25.422Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.424Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.424Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.432Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:02:25.433Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.434Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.435Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.442Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.443Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:02:25.445Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.446Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.452Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.454Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:02:25.457Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.459Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.463Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.464Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.472Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.474Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.482Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.484Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.492Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.494Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.505Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.506Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.514Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.515Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.611Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.613Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.623Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.624Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.632Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.634Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.642Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.644Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.652Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.653Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.660Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.662Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:25.668Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:25.669Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T14:02:27.560Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:28.180Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:28.181Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:28.189Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:28.191Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:28.199Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:28.201Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:28.209Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:28.210Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T14:02:28.352Z"} +{"level":"error","message":"Provider for arbitrum is not available: ","timestamp":"2025-05-14T14:02:28.435Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:29.278Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:29.279Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T14:02:30.581Z"} +{"arbitrum":"0","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T14:02:30.581Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:56.163Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:56.166Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:56.173Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:56.174Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:56.182Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:56.184Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:56.191Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:56.192Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:56.200Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:56.201Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:58.322Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:58.323Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:58.334Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:58.335Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:58.343Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:58.344Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:58.352Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:58.353Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:02:59.409Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:02:59.410Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:26.535Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:26.538Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:26.546Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:26.547Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:26.555Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:26.556Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:26.565Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:26.566Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:26.573Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:26.575Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:28.722Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:28.724Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:28.732Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:28.734Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:28.741Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:28.743Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:28.751Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:28.752Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:29.820Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:29.821Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:56.806Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:56.809Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:56.817Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:56.819Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:56.826Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:56.827Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:56.835Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:56.836Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:56.844Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:56.845Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:58.990Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:58.992Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:59.003Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:59.004Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:59.012Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:59.014Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:03:59.021Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:03:59.022Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:00.081Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:00.084Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:27.039Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:27.042Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:27.049Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:27.050Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:27.058Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:27.059Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:27.066Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:27.068Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:27.075Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:27.076Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:29.223Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:29.225Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:29.233Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:29.234Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:29.242Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:29.243Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:29.251Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:29.253Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:57.246Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:57.249Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:57.257Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:57.258Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:57.266Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:57.268Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:57.275Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:57.276Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:57.284Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:57.286Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:59.432Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:59.434Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:59.443Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:59.445Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:59.453Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:59.454Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:04:59.463Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:04:59.464Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:05:01.639Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:05:01.641Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-05-14T14:05:23.448Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-05-14T14:05:23.450Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-05-14T14:05:23.451Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-05-14T14:05:23.452Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-05-14T14:05:23.452Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-05-14T14:05:23.452Z"} +{"code":"ENETUNREACH","errno":"ENETUNREACH","level":"error","message":"Error launching Telegram bot: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)","stack":"FetchError: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)\n at ClientRequest. (/app/node_modules/node-fetch/lib/index.js:1501:11)\n at ClientRequest.emit (node:events:524:28)\n at emitErrorEvent (node:_http_client:101:11)\n at TLSSocket.socketErrorListener (node:_http_client:504:5)\n at TLSSocket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)","timestamp":"2025-05-14T14:05:23.622Z","type":"system"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:05:27.522Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:05:27.531Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:05:27.546Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:05:27.549Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:05:27.560Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:05:27.563Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:05:27.572Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:05:27.574Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:05:27.582Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:05:27.584Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-05-14T14:05:56.359Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-05-14T14:05:56.362Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-05-14T14:05:56.363Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-05-14T14:05:56.363Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-05-14T14:05:56.364Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-05-14T14:05:56.364Z"} +{"level":"info","message":"Ethers version: 6.13.7","timestamp":"2025-05-14T14:05:56.432Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:05:57.798Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:05:57.802Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:05:57.816Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:05:57.818Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:05:57.828Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:05:57.830Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:05:57.840Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:05:57.842Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:05:57.851Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:05:57.852Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:00.610Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:00.611Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:00.621Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:00.623Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:00.632Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:00.634Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:00.643Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:00.645Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:00.654Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:00.655Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-05-14T14:06:09.238Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-05-14T14:06:09.242Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-05-14T14:06:09.242Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-05-14T14:06:09.243Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-05-14T14:06:09.244Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-05-14T14:06:09.244Z"} +{"level":"info","message":"Ethers version: 6.13.7","timestamp":"2025-05-14T14:06:09.314Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:26.548Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:26.554Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:26.570Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:26.573Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:26.583Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:26.587Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:26.596Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:26.598Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T14:06:27.683Z"} +{"level":"info","message":"Тестирование RPC для bsc: https://bsc-dataseed1.binance.org","timestamp":"2025-05-14T14:06:27.684Z"} +{"level":"error","message":"Ошибка провайдера при тестировании RPC для bsc: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T14:06:27.685Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:31.489Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:31.492Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:06:34.586Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.589Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.611Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.613Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:06:34.632Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.635Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:06:34.650Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.653Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T14:06:34.661Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:06:34.670Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.672Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T14:06:34.680Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T14:06:34.681Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T14:06:34.688Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:06:34.696Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.699Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.700Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.701Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.713Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.715Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:06:34.717Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.718Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.724Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.728Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:06:34.732Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.734Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.738Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.740Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:06:34.747Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.749Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.751Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.753Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:06:34.759Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.761Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.765Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.767Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:06:34.772Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.775Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.777Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.779Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.789Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.791Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.799Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.801Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.809Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.810Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.820Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.823Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.830Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.832Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.840Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.841Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.849Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.850Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.859Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.860Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.867Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.870Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.878Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.879Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.887Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.888Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:34.897Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:34.898Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T14:06:35.592Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T14:06:36.477Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T14:06:37.674Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T14:06:38.528Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T14:06:38.528Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:56.772Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:56.775Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:56.785Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:56.787Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:56.794Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:56.796Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:56.805Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:56.808Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:06:56.816Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:06:56.818Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:07:05.556Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:07:05.557Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:07:05.568Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:07:05.570Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:07:05.579Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:07:05.580Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:07:05.588Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:07:05.590Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:07:05.598Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:07:05.600Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:07:35.753Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:07:35.757Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:07:35.766Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:07:35.768Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:07:35.775Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:07:35.777Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:07:35.785Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:07:35.786Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:07:35.795Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:07:35.797Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:07:58.381Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:07:58.384Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:07:58.393Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:07:58.395Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:07:58.403Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:07:58.404Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:07:58.414Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:07:58.415Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:07:58.425Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:07:58.428Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T14:08:04.253Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T14:08:04.280Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:08:04.283Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:08:04.285Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:08:04.300Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:08:04.302Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:08:04.312Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:08:04.313Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:08:04.324Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:08:04.325Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:08:04.334Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:08:04.336Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:08:04.346Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:08:04.347Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:08:05.571Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:08:05.573Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:08:05.587Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:08:05.588Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:08:05.596Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:08:05.598Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:08:05.623Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:08:05.624Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:08:05.636Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:08:05.637Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T14:08:07.052Z"} +{"level":"info","message":"Тестирование RPC для polygon: https://polygon-rpc.com","timestamp":"2025-05-14T14:08:07.053Z"} +{"level":"error","message":"Ошибка провайдера при тестировании RPC для polygon: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T14:08:07.053Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T14:08:26.355Z"} +{"level":"info","message":"Тестирование RPC для sepolia: https://eth-sepolia.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52","timestamp":"2025-05-14T14:08:26.356Z"} +{"level":"error","message":"Ошибка провайдера при тестировании RPC для sepolia: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T14:08:26.356Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:08:34.513Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:08:34.516Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:08:35.728Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:08:35.729Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:08:35.751Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:08:35.753Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:08:35.783Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:08:35.784Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:08:35.805Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:08:35.806Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:08:35.817Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:08:35.819Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:00.002Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:00.004Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:00.014Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:00.015Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:00.024Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:00.025Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:00.034Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:00.036Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:00.045Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:00.046Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:05.484Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:05.486Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:06.586Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:06.588Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:06.599Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:06.601Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:06.610Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:06.613Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:06.622Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:06.623Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:06.631Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:06.632Z"} +{"level":"info","message":"POST /api/auth/logout","timestamp":"2025-05-14T14:09:21.467Z"} +{"address":null,"authType":null,"authenticated":false,"cookie":{"expires":"2025-06-13T13:10:47.681Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"email":null,"guestId":null,"isAdmin":false,"level":"info","message":"[SessionService] Saving session data:","pendingEmail":null,"previousGuestId":null,"processedGuestIds":[],"telegramId":null,"timestamp":"2025-05-14T14:09:21.468Z","userId":null} +{"level":"info","message":"Session saved successfully","timestamp":"2025-05-14T14:09:21.474Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:09:21.491Z"} +{"cookie":{"expires":"2025-06-13T14:09:21.489Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"2a574c0eccfae584bf20e8e50b7d0a40","level":"info","message":"[SessionService] Saving session data:","timestamp":"2025-05-14T14:09:21.492Z"} +{"level":"info","message":"Session saved successfully","timestamp":"2025-05-14T14:09:21.495Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:35.104Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:09:35.718Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:09:35.745Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:09:35.764Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:09:35.779Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:09:35.793Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:09:38.138Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:09:38.149Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:09:38.158Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:09:38.166Z"} +{"level":"info","message":"GET /api/auth/nonce?address=0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-05-14T14:09:37.346Z"} +{"level":"info","message":"Nonce 0f7c9a65e3f396a264aafd0ebabdf7b2 сохранен для адреса 0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-05-14T14:09:37.351Z"} +{"level":"info","message":"POST /api/auth/verify","timestamp":"2025-05-14T14:09:39.456Z"} +{"level":"info","message":"[verify] Verifying signature for address: 0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-05-14T14:09:39.458Z"} +{"level":"info","message":"Checking admin role for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T14:09:39.549Z"} +{"level":"error","message":"Provider for arbitrum is not available: ","timestamp":"2025-05-14T14:09:39.744Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","hasTokens":true,"level":"info","message":"Token balance on bsc:","timestamp":"2025-05-14T14:09:40.432Z"} +{"level":"info","message":"Found admin tokens on bsc","timestamp":"2025-05-14T14:09:40.432Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T14:09:40.551Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","hasTokens":true,"level":"info","message":"Token balance on eth:","timestamp":"2025-05-14T14:09:40.602Z"} +{"level":"info","message":"Found admin tokens on eth","timestamp":"2025-05-14T14:09:40.603Z"} +{"balances":{"arbitrum":"Error: Network unavailable","bsc":"500000.0","eth":"1500000.0","polygon":"Error: Network unavailable"},"level":"info","message":"Admin role summary for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","networks":["bsc","eth"],"timestamp":"2025-05-14T14:09:40.603Z"} +{"level":"info","message":"Admin role granted for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T14:09:40.603Z"} +{"level":"info","message":"[verify] Found or created user 1 for wallet 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T14:09:40.604Z"} +{"level":"info","message":"[IdentityService] Converting guest identity for user 1 to guest_user_mapping: 2a574c0eccfae584bf20e8e50b7d0a40","timestamp":"2025-05-14T14:09:40.604Z"} +{"level":"info","message":"Checking admin tokens for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T14:09:40.611Z"} +{"level":"info","message":"Checking admin role for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T14:09:40.612Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T14:09:40.807Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","hasTokens":true,"level":"info","message":"Token balance on bsc:","timestamp":"2025-05-14T14:09:40.877Z"} +{"level":"info","message":"Found admin tokens on bsc","timestamp":"2025-05-14T14:09:40.878Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","hasTokens":true,"level":"info","message":"Token balance on eth:","timestamp":"2025-05-14T14:09:41.050Z"} +{"level":"info","message":"Found admin tokens on eth","timestamp":"2025-05-14T14:09:41.050Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","hasTokens":true,"level":"info","message":"Token balance on arbitrum:","timestamp":"2025-05-14T14:09:41.448Z"} +{"level":"info","message":"Found admin tokens on arbitrum","timestamp":"2025-05-14T14:09:41.448Z"} +{"balances":{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","polygon":"Error: Network unavailable"},"level":"info","message":"Admin role summary for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","networks":["bsc","eth","arbitrum"],"timestamp":"2025-05-14T14:09:41.449Z"} +{"level":"info","message":"Admin role granted for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T14:09:41.449Z"} +{"level":"info","message":"Updated user 1 role to admin based on token holdings","timestamp":"2025-05-14T14:09:41.454Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","authType":"wallet","authenticated":true,"cookie":{"expires":"2025-06-13T14:09:21.489Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"2a574c0eccfae584bf20e8e50b7d0a40","isAdmin":true,"level":"info","message":"[SessionService] Saving session data:","timestamp":"2025-05-14T14:09:41.457Z","userId":1} +{"level":"info","message":"Session saved successfully","timestamp":"2025-05-14T14:09:41.460Z"} +{"level":"info","message":"[linkGuestMessages] Starting for user 1 with guestId=2a574c0eccfae584bf20e8e50b7d0a40, previousGuestId=undefined","timestamp":"2025-05-14T14:09:41.461Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=2a574c0eccfae584bf20e8e50b7d0a40","timestamp":"2025-05-14T14:09:41.466Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 2a574c0eccfae584bf20e8e50b7d0a40","timestamp":"2025-05-14T14:09:41.467Z"} +{"level":"info","message":"No guest messages found for guest ID 2a574c0eccfae584bf20e8e50b7d0a40","timestamp":"2025-05-14T14:09:41.471Z"} +{"level":"info","message":"Marked guest mapping as processed (no messages found) for guest ID 2a574c0eccfae584bf20e8e50b7d0a40","timestamp":"2025-05-14T14:09:41.474Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=8b5d6a6fab3d07cbc262c7a27c40007f","timestamp":"2025-05-14T14:09:41.476Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 8b5d6a6fab3d07cbc262c7a27c40007f","timestamp":"2025-05-14T14:09:41.477Z"} +{"level":"info","message":"Guest messages for guest ID 8b5d6a6fab3d07cbc262c7a27c40007f were already processed.","timestamp":"2025-05-14T14:09:41.478Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746463345144-ylmarlnq2","timestamp":"2025-05-14T14:09:41.480Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746463345144-ylmarlnq2","timestamp":"2025-05-14T14:09:41.480Z"} +{"level":"info","message":"Guest messages for guest ID 1746463345144-ylmarlnq2 were already processed.","timestamp":"2025-05-14T14:09:41.481Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=71aa676b5148fcf70266f62033ac07ce","timestamp":"2025-05-14T14:09:41.483Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 71aa676b5148fcf70266f62033ac07ce","timestamp":"2025-05-14T14:09:41.484Z"} +{"level":"info","message":"Guest messages for guest ID 71aa676b5148fcf70266f62033ac07ce were already processed.","timestamp":"2025-05-14T14:09:41.485Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1f09a77763c0f046aaa789f9d019984d","timestamp":"2025-05-14T14:09:41.488Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1f09a77763c0f046aaa789f9d019984d","timestamp":"2025-05-14T14:09:41.488Z"} +{"level":"info","message":"Guest messages for guest ID 1f09a77763c0f046aaa789f9d019984d were already processed.","timestamp":"2025-05-14T14:09:41.490Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=655c2a907c038a9f7324344d8e3af59e","timestamp":"2025-05-14T14:09:41.493Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 655c2a907c038a9f7324344d8e3af59e","timestamp":"2025-05-14T14:09:41.493Z"} +{"level":"info","message":"Guest messages for guest ID 655c2a907c038a9f7324344d8e3af59e were already processed.","timestamp":"2025-05-14T14:09:41.495Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0541b3cad5c9eaf088709e380d62d72e","timestamp":"2025-05-14T14:09:41.497Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 0541b3cad5c9eaf088709e380d62d72e","timestamp":"2025-05-14T14:09:41.497Z"} +{"level":"info","message":"Guest messages for guest ID 0541b3cad5c9eaf088709e380d62d72e were already processed.","timestamp":"2025-05-14T14:09:41.498Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=434910a20e533ca13211a6e5338f13f7","timestamp":"2025-05-14T14:09:41.500Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 434910a20e533ca13211a6e5338f13f7","timestamp":"2025-05-14T14:09:41.501Z"} +{"level":"info","message":"Guest messages for guest ID 434910a20e533ca13211a6e5338f13f7 were already processed.","timestamp":"2025-05-14T14:09:41.502Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=ce26ad9c9c646bc448d13e612ddff4c6","timestamp":"2025-05-14T14:09:41.504Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID ce26ad9c9c646bc448d13e612ddff4c6","timestamp":"2025-05-14T14:09:41.504Z"} +{"level":"info","message":"Guest messages for guest ID ce26ad9c9c646bc448d13e612ddff4c6 were already processed.","timestamp":"2025-05-14T14:09:41.506Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=6dcb1a67de88e628de643a201f9f455d","timestamp":"2025-05-14T14:09:41.509Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 6dcb1a67de88e628de643a201f9f455d","timestamp":"2025-05-14T14:09:41.509Z"} +{"level":"info","message":"Guest messages for guest ID 6dcb1a67de88e628de643a201f9f455d were already processed.","timestamp":"2025-05-14T14:09:41.510Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=f6a9e94119b2317d7b9be50733ac5e51","timestamp":"2025-05-14T14:09:41.512Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID f6a9e94119b2317d7b9be50733ac5e51","timestamp":"2025-05-14T14:09:41.512Z"} +{"level":"info","message":"Guest messages for guest ID f6a9e94119b2317d7b9be50733ac5e51 were already processed.","timestamp":"2025-05-14T14:09:41.513Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=19fae7d5baa3b5217a8bb3d96c9cbf82","timestamp":"2025-05-14T14:09:41.515Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 19fae7d5baa3b5217a8bb3d96c9cbf82","timestamp":"2025-05-14T14:09:41.516Z"} +{"level":"info","message":"Guest messages for guest ID 19fae7d5baa3b5217a8bb3d96c9cbf82 were already processed.","timestamp":"2025-05-14T14:09:41.517Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0d929f5ec7a0b00d2e5cfd54eb1c2c7e","timestamp":"2025-05-14T14:09:41.519Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 0d929f5ec7a0b00d2e5cfd54eb1c2c7e","timestamp":"2025-05-14T14:09:41.519Z"} +{"level":"info","message":"Guest messages for guest ID 0d929f5ec7a0b00d2e5cfd54eb1c2c7e were already processed.","timestamp":"2025-05-14T14:09:41.520Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=ba2ffec057a35dd8f68d2f0791c2b842","timestamp":"2025-05-14T14:09:41.523Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID ba2ffec057a35dd8f68d2f0791c2b842","timestamp":"2025-05-14T14:09:41.523Z"} +{"level":"info","message":"Guest messages for guest ID ba2ffec057a35dd8f68d2f0791c2b842 were already processed.","timestamp":"2025-05-14T14:09:41.524Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=c7d08b33c81f332520551ac825dccf65","timestamp":"2025-05-14T14:09:41.526Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID c7d08b33c81f332520551ac825dccf65","timestamp":"2025-05-14T14:09:41.527Z"} +{"level":"info","message":"Guest messages for guest ID c7d08b33c81f332520551ac825dccf65 were already processed.","timestamp":"2025-05-14T14:09:41.528Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746057084616-5yz5fv65c","timestamp":"2025-05-14T14:09:41.530Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746057084616-5yz5fv65c","timestamp":"2025-05-14T14:09:41.530Z"} +{"level":"info","message":"Guest messages for guest ID 1746057084616-5yz5fv65c were already processed.","timestamp":"2025-05-14T14:09:41.531Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=3919e986b4c273269d4053b4a4753198","timestamp":"2025-05-14T14:09:41.533Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 3919e986b4c273269d4053b4a4753198","timestamp":"2025-05-14T14:09:41.533Z"} +{"level":"info","message":"Guest messages for guest ID 3919e986b4c273269d4053b4a4753198 were already processed.","timestamp":"2025-05-14T14:09:41.534Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=8094762fbaf7141795fd886835bcd372","timestamp":"2025-05-14T14:09:41.536Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 8094762fbaf7141795fd886835bcd372","timestamp":"2025-05-14T14:09:41.537Z"} +{"level":"info","message":"Guest messages for guest ID 8094762fbaf7141795fd886835bcd372 were already processed.","timestamp":"2025-05-14T14:09:41.538Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=c729c21d331c26f9103ad1024956e403","timestamp":"2025-05-14T14:09:41.540Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID c729c21d331c26f9103ad1024956e403","timestamp":"2025-05-14T14:09:41.540Z"} +{"level":"info","message":"Guest messages for guest ID c729c21d331c26f9103ad1024956e403 were already processed.","timestamp":"2025-05-14T14:09:41.542Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=6c8674af64c3c38b58bbf61b065d738e","timestamp":"2025-05-14T14:09:41.544Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 6c8674af64c3c38b58bbf61b065d738e","timestamp":"2025-05-14T14:09:41.544Z"} +{"level":"info","message":"Guest messages for guest ID 6c8674af64c3c38b58bbf61b065d738e were already processed.","timestamp":"2025-05-14T14:09:41.545Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=597e6501b9bae6fdba1dea790ca914e5","timestamp":"2025-05-14T14:09:41.547Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 597e6501b9bae6fdba1dea790ca914e5","timestamp":"2025-05-14T14:09:41.548Z"} +{"level":"info","message":"Guest messages for guest ID 597e6501b9bae6fdba1dea790ca914e5 were already processed.","timestamp":"2025-05-14T14:09:41.549Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=758c5501236dd51c907b8035b014561e","timestamp":"2025-05-14T14:09:41.551Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 758c5501236dd51c907b8035b014561e","timestamp":"2025-05-14T14:09:41.552Z"} +{"level":"info","message":"Guest messages for guest ID 758c5501236dd51c907b8035b014561e were already processed.","timestamp":"2025-05-14T14:09:41.553Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0fc862553fa644a4d875a79ff01e1786","timestamp":"2025-05-14T14:09:41.555Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 0fc862553fa644a4d875a79ff01e1786","timestamp":"2025-05-14T14:09:41.555Z"} +{"level":"info","message":"Guest messages for guest ID 0fc862553fa644a4d875a79ff01e1786 were already processed.","timestamp":"2025-05-14T14:09:41.557Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=4ce93dd87f076a6bdcdfd373737d79f9","timestamp":"2025-05-14T14:09:41.559Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 4ce93dd87f076a6bdcdfd373737d79f9","timestamp":"2025-05-14T14:09:41.559Z"} +{"level":"info","message":"Guest messages for guest ID 4ce93dd87f076a6bdcdfd373737d79f9 were already processed.","timestamp":"2025-05-14T14:09:41.560Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746053084533-wqwfw5fm2","timestamp":"2025-05-14T14:09:41.562Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746053084533-wqwfw5fm2","timestamp":"2025-05-14T14:09:41.563Z"} +{"level":"info","message":"Guest messages for guest ID 1746053084533-wqwfw5fm2 were already processed.","timestamp":"2025-05-14T14:09:41.564Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=e172290cd6263e6f2594333f5f90e4f7","timestamp":"2025-05-14T14:09:41.566Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID e172290cd6263e6f2594333f5f90e4f7","timestamp":"2025-05-14T14:09:41.567Z"} +{"level":"info","message":"Guest messages for guest ID e172290cd6263e6f2594333f5f90e4f7 were already processed.","timestamp":"2025-05-14T14:09:41.568Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=96f5c4804077390d2e15606f9819f55f","timestamp":"2025-05-14T14:09:41.570Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 96f5c4804077390d2e15606f9819f55f","timestamp":"2025-05-14T14:09:41.570Z"} +{"level":"info","message":"Guest messages for guest ID 96f5c4804077390d2e15606f9819f55f were already processed.","timestamp":"2025-05-14T14:09:41.572Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=f76c4b9a764e2d6b8c59fd19687812ff","timestamp":"2025-05-14T14:09:41.574Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID f76c4b9a764e2d6b8c59fd19687812ff","timestamp":"2025-05-14T14:09:41.574Z"} +{"level":"info","message":"Guest messages for guest ID f76c4b9a764e2d6b8c59fd19687812ff were already processed.","timestamp":"2025-05-14T14:09:41.575Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=c4378cb2eaec94d5e68835cd6a95f334","timestamp":"2025-05-14T14:09:41.578Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID c4378cb2eaec94d5e68835cd6a95f334","timestamp":"2025-05-14T14:09:41.578Z"} +{"level":"info","message":"Guest messages for guest ID c4378cb2eaec94d5e68835cd6a95f334 were already processed.","timestamp":"2025-05-14T14:09:41.579Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=72b3851bc1e64d63c499e6b534c2f685","timestamp":"2025-05-14T14:09:41.581Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 72b3851bc1e64d63c499e6b534c2f685","timestamp":"2025-05-14T14:09:41.582Z"} +{"level":"info","message":"Guest messages for guest ID 72b3851bc1e64d63c499e6b534c2f685 were already processed.","timestamp":"2025-05-14T14:09:41.583Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0a4c115f9b71959ba238ed4d69d0b2bd","timestamp":"2025-05-14T14:09:41.585Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 0a4c115f9b71959ba238ed4d69d0b2bd","timestamp":"2025-05-14T14:09:41.585Z"} +{"level":"info","message":"Guest messages for guest ID 0a4c115f9b71959ba238ed4d69d0b2bd were already processed.","timestamp":"2025-05-14T14:09:41.586Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=5e9687d8aa37392dbcc6502eaa8777f5","timestamp":"2025-05-14T14:09:41.588Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 5e9687d8aa37392dbcc6502eaa8777f5","timestamp":"2025-05-14T14:09:41.588Z"} +{"level":"info","message":"Guest messages for guest ID 5e9687d8aa37392dbcc6502eaa8777f5 were already processed.","timestamp":"2025-05-14T14:09:41.589Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=d8eb7603a4d012cc0077750dfe895d4f","timestamp":"2025-05-14T14:09:41.591Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID d8eb7603a4d012cc0077750dfe895d4f","timestamp":"2025-05-14T14:09:41.591Z"} +{"level":"info","message":"Guest messages for guest ID d8eb7603a4d012cc0077750dfe895d4f were already processed.","timestamp":"2025-05-14T14:09:41.592Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=8af4660b9c469159e7e6a3a96fc3e887","timestamp":"2025-05-14T14:09:41.594Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 8af4660b9c469159e7e6a3a96fc3e887","timestamp":"2025-05-14T14:09:41.594Z"} +{"level":"info","message":"Guest messages for guest ID 8af4660b9c469159e7e6a3a96fc3e887 were already processed.","timestamp":"2025-05-14T14:09:41.595Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=2a11b17d8e84aa6bc1f11695c69c7797","timestamp":"2025-05-14T14:09:41.597Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 2a11b17d8e84aa6bc1f11695c69c7797","timestamp":"2025-05-14T14:09:41.598Z"} +{"level":"info","message":"Guest messages for guest ID 2a11b17d8e84aa6bc1f11695c69c7797 were already processed.","timestamp":"2025-05-14T14:09:41.599Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=3926a395b41803c5a6b0365b97fb3cb5","timestamp":"2025-05-14T14:09:41.600Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 3926a395b41803c5a6b0365b97fb3cb5","timestamp":"2025-05-14T14:09:41.601Z"} +{"level":"info","message":"Guest messages for guest ID 3926a395b41803c5a6b0365b97fb3cb5 were already processed.","timestamp":"2025-05-14T14:09:41.602Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=dcbbfc0c915a1ce026528c2104106209","timestamp":"2025-05-14T14:09:41.604Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID dcbbfc0c915a1ce026528c2104106209","timestamp":"2025-05-14T14:09:41.605Z"} +{"level":"info","message":"Guest messages for guest ID dcbbfc0c915a1ce026528c2104106209 were already processed.","timestamp":"2025-05-14T14:09:41.606Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=a2adbf150cc15e85cad5b6ad087b710b","timestamp":"2025-05-14T14:09:41.608Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID a2adbf150cc15e85cad5b6ad087b710b","timestamp":"2025-05-14T14:09:41.608Z"} +{"level":"info","message":"Guest messages for guest ID a2adbf150cc15e85cad5b6ad087b710b were already processed.","timestamp":"2025-05-14T14:09:41.609Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=b9003e60118545cc8cb0623077cc4f63","timestamp":"2025-05-14T14:09:41.611Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID b9003e60118545cc8cb0623077cc4f63","timestamp":"2025-05-14T14:09:41.612Z"} +{"level":"info","message":"Guest messages for guest ID b9003e60118545cc8cb0623077cc4f63 were already processed.","timestamp":"2025-05-14T14:09:41.613Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=efd5f85208bdbe946f0d3f04c9ba336d","timestamp":"2025-05-14T14:09:41.614Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID efd5f85208bdbe946f0d3f04c9ba336d","timestamp":"2025-05-14T14:09:41.615Z"} +{"level":"info","message":"Guest messages for guest ID efd5f85208bdbe946f0d3f04c9ba336d were already processed.","timestamp":"2025-05-14T14:09:41.616Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=f3b209b70545a9a0aa1a4f94a0238785","timestamp":"2025-05-14T14:09:41.618Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID f3b209b70545a9a0aa1a4f94a0238785","timestamp":"2025-05-14T14:09:41.618Z"} +{"level":"info","message":"Guest messages for guest ID f3b209b70545a9a0aa1a4f94a0238785 were already processed.","timestamp":"2025-05-14T14:09:41.619Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=bf3fdb217687be2bdd5d0baaa18e2665","timestamp":"2025-05-14T14:09:41.621Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID bf3fdb217687be2bdd5d0baaa18e2665","timestamp":"2025-05-14T14:09:41.621Z"} +{"level":"info","message":"Guest messages for guest ID bf3fdb217687be2bdd5d0baaa18e2665 were already processed.","timestamp":"2025-05-14T14:09:41.623Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746048025646-a9cve1ac8","timestamp":"2025-05-14T14:09:41.625Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746048025646-a9cve1ac8","timestamp":"2025-05-14T14:09:41.625Z"} +{"level":"info","message":"Guest messages for guest ID 1746048025646-a9cve1ac8 were already processed.","timestamp":"2025-05-14T14:09:41.626Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=061143c028cafec9296f383002126907","timestamp":"2025-05-14T14:09:41.628Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 061143c028cafec9296f383002126907","timestamp":"2025-05-14T14:09:41.629Z"} +{"level":"info","message":"Guest messages for guest ID 061143c028cafec9296f383002126907 were already processed.","timestamp":"2025-05-14T14:09:41.630Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=fbd39c74ae8b8b48930e08b519787a12","timestamp":"2025-05-14T14:09:41.631Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID fbd39c74ae8b8b48930e08b519787a12","timestamp":"2025-05-14T14:09:41.632Z"} +{"level":"info","message":"Guest messages for guest ID fbd39c74ae8b8b48930e08b519787a12 were already processed.","timestamp":"2025-05-14T14:09:41.633Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=23fb4de594179339d2b6f27be5891a96","timestamp":"2025-05-14T14:09:41.634Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 23fb4de594179339d2b6f27be5891a96","timestamp":"2025-05-14T14:09:41.635Z"} +{"level":"info","message":"Guest messages for guest ID 23fb4de594179339d2b6f27be5891a96 were already processed.","timestamp":"2025-05-14T14:09:41.636Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=806b063766ddc43e8fc0b822c032472d","timestamp":"2025-05-14T14:09:41.637Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 806b063766ddc43e8fc0b822c032472d","timestamp":"2025-05-14T14:09:41.638Z"} +{"level":"info","message":"Guest messages for guest ID 806b063766ddc43e8fc0b822c032472d were already processed.","timestamp":"2025-05-14T14:09:41.639Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=b6f8dc2c159c5b4983e9431cfb3e02ea","timestamp":"2025-05-14T14:09:41.640Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID b6f8dc2c159c5b4983e9431cfb3e02ea","timestamp":"2025-05-14T14:09:41.641Z"} +{"level":"info","message":"Guest messages for guest ID b6f8dc2c159c5b4983e9431cfb3e02ea were already processed.","timestamp":"2025-05-14T14:09:41.641Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=7dcd8237d8bb9b8344a16748851aaa1d","timestamp":"2025-05-14T14:09:41.643Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 7dcd8237d8bb9b8344a16748851aaa1d","timestamp":"2025-05-14T14:09:41.644Z"} +{"level":"info","message":"Guest messages for guest ID 7dcd8237d8bb9b8344a16748851aaa1d were already processed.","timestamp":"2025-05-14T14:09:41.645Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=7fd62b29aad08c99e38fe96abb70158f","timestamp":"2025-05-14T14:09:41.646Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 7fd62b29aad08c99e38fe96abb70158f","timestamp":"2025-05-14T14:09:41.647Z"} +{"level":"info","message":"Guest messages for guest ID 7fd62b29aad08c99e38fe96abb70158f were already processed.","timestamp":"2025-05-14T14:09:41.648Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=dbd03ab1af02855698333b2c8916ec3f","timestamp":"2025-05-14T14:09:41.650Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID dbd03ab1af02855698333b2c8916ec3f","timestamp":"2025-05-14T14:09:41.650Z"} +{"level":"info","message":"Guest messages for guest ID dbd03ab1af02855698333b2c8916ec3f were already processed.","timestamp":"2025-05-14T14:09:41.652Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=937df75e640dce12ded1832a8b607040","timestamp":"2025-05-14T14:09:41.655Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 937df75e640dce12ded1832a8b607040","timestamp":"2025-05-14T14:09:41.655Z"} +{"level":"info","message":"Guest messages for guest ID 937df75e640dce12ded1832a8b607040 were already processed.","timestamp":"2025-05-14T14:09:41.657Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","authType":"wallet","authenticated":true,"cookie":{"expires":"2025-06-13T14:09:21.489Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"2a574c0eccfae584bf20e8e50b7d0a40","isAdmin":true,"level":"info","message":"[SessionService] Saving session data:","processedGuestIds":["2a574c0eccfae584bf20e8e50b7d0a40","8b5d6a6fab3d07cbc262c7a27c40007f","1746463345144-ylmarlnq2","71aa676b5148fcf70266f62033ac07ce","1f09a77763c0f046aaa789f9d019984d","655c2a907c038a9f7324344d8e3af59e","0541b3cad5c9eaf088709e380d62d72e","434910a20e533ca13211a6e5338f13f7","ce26ad9c9c646bc448d13e612ddff4c6","6dcb1a67de88e628de643a201f9f455d","f6a9e94119b2317d7b9be50733ac5e51","19fae7d5baa3b5217a8bb3d96c9cbf82","0d929f5ec7a0b00d2e5cfd54eb1c2c7e","ba2ffec057a35dd8f68d2f0791c2b842","c7d08b33c81f332520551ac825dccf65","1746057084616-5yz5fv65c","3919e986b4c273269d4053b4a4753198","8094762fbaf7141795fd886835bcd372","c729c21d331c26f9103ad1024956e403","6c8674af64c3c38b58bbf61b065d738e","597e6501b9bae6fdba1dea790ca914e5","758c5501236dd51c907b8035b014561e","0fc862553fa644a4d875a79ff01e1786","4ce93dd87f076a6bdcdfd373737d79f9","1746053084533-wqwfw5fm2","e172290cd6263e6f2594333f5f90e4f7","96f5c4804077390d2e15606f9819f55f","f76c4b9a764e2d6b8c59fd19687812ff","c4378cb2eaec94d5e68835cd6a95f334","72b3851bc1e64d63c499e6b534c2f685","0a4c115f9b71959ba238ed4d69d0b2bd","5e9687d8aa37392dbcc6502eaa8777f5","d8eb7603a4d012cc0077750dfe895d4f","8af4660b9c469159e7e6a3a96fc3e887","2a11b17d8e84aa6bc1f11695c69c7797","3926a395b41803c5a6b0365b97fb3cb5","dcbbfc0c915a1ce026528c2104106209","a2adbf150cc15e85cad5b6ad087b710b","b9003e60118545cc8cb0623077cc4f63","efd5f85208bdbe946f0d3f04c9ba336d","f3b209b70545a9a0aa1a4f94a0238785","bf3fdb217687be2bdd5d0baaa18e2665","1746048025646-a9cve1ac8","061143c028cafec9296f383002126907","fbd39c74ae8b8b48930e08b519787a12","23fb4de594179339d2b6f27be5891a96","806b063766ddc43e8fc0b822c032472d","b6f8dc2c159c5b4983e9431cfb3e02ea","7dcd8237d8bb9b8344a16748851aaa1d","7fd62b29aad08c99e38fe96abb70158f","dbd03ab1af02855698333b2c8916ec3f","937df75e640dce12ded1832a8b607040"],"timestamp":"2025-05-14T14:09:41.659Z","userId":1} +{"level":"info","message":"Session saved successfully","timestamp":"2025-05-14T14:09:41.663Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:09:41.766Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:41.768Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:41.781Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:41.783Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:09:41.795Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:41.796Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:41.807Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:41.808Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:41.819Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:41.820Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:41.830Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:41.832Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:09:41.845Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:41.846Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:41.864Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:41.866Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:09:41.887Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:41.889Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:41.907Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:41.910Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T14:09:41.913Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T14:09:41.914Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:41.928Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:41.931Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:09:41.944Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:09:41.946Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T14:09:42.358Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T14:09:42.643Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T14:09:43.331Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T14:09:43.526Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T14:09:43.527Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T14:09:43.538Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T14:09:43.538Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on eth:","timestamp":"2025-05-14T14:09:43.959Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T14:09:44.224Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T14:09:45.181Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T14:09:45.376Z"} +{"arbitrum":"499999.9","bsc":"500000.0","eth":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T14:09:45.377Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:10:01.588Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:10:01.591Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:10:01.599Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:10:01.600Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:10:01.608Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:10:01.609Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:10:01.618Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:10:01.620Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:10:01.628Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:10:01.629Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:10:12.121Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:10:12.124Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:10:13.195Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:10:13.196Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:10:42.375Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:10:42.378Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:10:43.452Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:10:43.454Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:11:00.589Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:11:00.591Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:11:00.601Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:11:00.602Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:11:00.610Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:11:00.612Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:11:00.619Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:11:00.621Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:11:00.627Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:11:00.629Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:11:12.615Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:11:12.618Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:11:13.694Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:11:13.695Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:11:42.922Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:11:42.925Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:11:44.009Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:11:44.010Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:12:02.198Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:12:02.201Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:12:02.211Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:12:02.213Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:12:02.223Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:12:02.225Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:12:02.233Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:12:02.234Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:12:02.243Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:12:02.244Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:12:13.189Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:12:13.191Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:12:14.283Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:12:14.285Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:12:43.411Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:12:43.414Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:12:44.496Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:12:44.498Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:13:03.788Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:13:03.791Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:13:03.801Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:13:03.802Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:13:03.810Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:13:03.812Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:13:03.820Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:13:03.821Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:13:03.830Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:13:03.831Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:13:23.095Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:13:23.099Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:13:23.111Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:13:23.113Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:01.702Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:01.712Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:01.730Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:01.733Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:05.408Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:05.409Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:05.419Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:05.420Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:05.428Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:05.430Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:05.437Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:05.439Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:05.446Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:05.447Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:14:10.984Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:10.986Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:14:11.002Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.004Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:14:11.030Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.032Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:14:11.046Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.049Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T14:14:11.050Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:11.054Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.058Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:11.076Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.079Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:14:11.084Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.087Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:11.095Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.098Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:14:11.102Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.104Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:11.116Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.119Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:14:11.121Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.123Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:11.131Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.135Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:14:11.138Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.140Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:11.145Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.147Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:11.157Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.159Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:11.168Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.170Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:11.178Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.180Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:11.189Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.191Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:11.200Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.202Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:11.209Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.211Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:11.218Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.220Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:11.227Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.229Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:11.237Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.238Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:11.246Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.248Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:11.612Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:11.614Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:14:12.644Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.646Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:14:12.659Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.662Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:12.663Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.665Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:14:12.674Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.677Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:12.678Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.680Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:14:12.689Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.691Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:12.693Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.696Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:14:12.704Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.706Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:12.711Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.714Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:14:12.721Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.724Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:12.727Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.729Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:14:12.736Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.738Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:12.743Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.744Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:14:12.751Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.754Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:12.761Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.763Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:12.774Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.776Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:12.786Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.787Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:12.797Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.799Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:12.808Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.810Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:12.821Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.824Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:12.841Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.844Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:12.854Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.855Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:12.864Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.866Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:12.876Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:12.877Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T14:14:17.113Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T14:14:17.126Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:28.029Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:28.032Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:28.068Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:28.069Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:28.101Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:28.103Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:28.180Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:28.181Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:28.262Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:28.264Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:41.883Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:41.886Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:43.023Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:43.024Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:43.038Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:43.040Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:43.056Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:43.058Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:43.091Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:43.092Z"} +{"level":"info","message":"POST /api/settings/rpc","timestamp":"2025-05-14T14:14:49.523Z"} +{"level":"info","message":"POST /api/settings/auth-tokens","timestamp":"2025-05-14T14:14:49.541Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:57.143Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:57.145Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:57.155Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:57.156Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:57.165Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:57.166Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:57.174Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:57.175Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:14:57.182Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:14:57.183Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:15:13.140Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:15:13.143Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:15:14.210Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:15:14.212Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:15:14.222Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:15:14.224Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:15:14.232Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:15:14.234Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:15:14.243Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:15:14.246Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:15:27.404Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:15:27.407Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:15:27.416Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:15:27.418Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:15:27.425Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:15:27.426Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:15:27.434Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:15:27.437Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:15:27.444Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:15:27.445Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:15:43.444Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:15:43.446Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:15:44.518Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:15:44.519Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:15:44.530Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:15:44.532Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:15:44.540Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:15:44.542Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:15:44.550Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:15:44.552Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:16:14.808Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:16:14.811Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:16:14.822Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:16:14.824Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:16:14.832Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:16:14.833Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:16:14.842Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:16:14.843Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:16:24.695Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:16:24.697Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:16:24.711Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:16:24.713Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:16:24.725Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:16:24.728Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:16:24.737Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:16:24.738Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:16:24.745Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:16:24.747Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:16:24.754Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:16:24.756Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:16:45.039Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:16:45.042Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:16:45.051Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:16:45.053Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:16:45.061Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:16:45.063Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:16:45.071Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:16:45.073Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:17:15.346Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:17:15.349Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:17:15.357Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:17:15.358Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:17:15.366Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:17:15.367Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:17:15.376Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:17:15.377Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:17:22.508Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:17:22.511Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:17:22.523Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:17:22.525Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:17:22.535Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:17:22.537Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:17:22.549Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:17:22.551Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:17:22.559Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:17:22.560Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:17:22.569Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:17:22.570Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:03.062Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:03.065Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:03.082Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:03.084Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:03.115Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:03.117Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:03.139Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:03.141Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:03.156Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:03.158Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:14.784Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:14.786Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:15.873Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:15.874Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:15.884Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:15.885Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:15.893Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:15.895Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:15.903Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:15.904Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:23.008Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:23.011Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:23.025Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:23.027Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:23.040Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:23.043Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:23.054Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:23.057Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:23.068Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:23.070Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:44.983Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:44.986Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:43.403Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:43.404Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:43.413Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:43.414Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:43.423Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:43.424Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:18:43.440Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:18:43.442Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:19:11.564Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:19:11.567Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:19:12.684Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:19:12.686Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:19:12.702Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:19:12.704Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:19:12.740Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:19:12.742Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:19:12.755Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:19:12.758Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:19:23.567Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:19:23.570Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:19:23.581Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:19:23.584Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:19:23.593Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:19:23.594Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:19:23.604Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:19:23.605Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:19:23.612Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:19:23.613Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:19:42.847Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:19:42.849Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:19:43.908Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:19:43.909Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:19:43.921Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:19:43.922Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:19:43.930Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:19:43.931Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:19:43.939Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:19:43.940Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:20:13.112Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:20:13.115Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:20:14.196Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:20:14.198Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:20:14.209Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:20:14.210Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:20:14.218Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:20:14.220Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:20:14.229Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:20:14.231Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:20:24.103Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:20:24.107Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:20:24.125Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:20:24.127Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:20:24.141Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:20:24.144Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:20:24.156Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:20:24.158Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:20:24.167Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:20:24.168Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T14:20:40.664Z"} +{"level":"info","message":"Тестирование RPC для polygon: https://polygon-rpc.com","timestamp":"2025-05-14T14:20:40.664Z"} +{"level":"error","message":"Ошибка провайдера при тестировании RPC для polygon: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T14:20:40.664Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-05-14T14:20:45.810Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-05-14T14:20:45.813Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-05-14T14:20:45.814Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-05-14T14:20:45.815Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-05-14T14:20:45.816Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-05-14T14:20:45.816Z"} +{"level":"info","message":"Ethers version: 6.13.7","timestamp":"2025-05-14T14:20:45.967Z"} +{"code":"ENETUNREACH","errno":"ENETUNREACH","level":"error","message":"Error launching Telegram bot: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)","stack":"FetchError: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)\n at ClientRequest. (/app/node_modules/node-fetch/lib/index.js:1501:11)\n at ClientRequest.emit (node:events:524:28)\n at emitErrorEvent (node:_http_client:101:11)\n at TLSSocket.socketErrorListener (node:_http_client:504:5)\n at TLSSocket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)","timestamp":"2025-05-14T14:20:46.082Z","type":"system"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:20:47.406Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:20:47.412Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:20:47.433Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:20:47.435Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:20:47.445Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:20:47.447Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:20:47.456Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:20:47.458Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:20:47.473Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:20:47.483Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:21:13.567Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:21:13.570Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:21:14.655Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:21:14.657Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:21:14.669Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:21:14.670Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:21:14.681Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:21:14.683Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:21:14.694Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:21:14.695Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:21:24.554Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:21:24.558Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:21:24.572Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:21:24.576Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:21:24.589Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:21:24.591Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:21:24.602Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:21:24.603Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:21:24.611Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:21:24.613Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:21:43.930Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:21:43.933Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:21:45.005Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:21:45.006Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:21:45.018Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:21:45.020Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:21:45.029Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:21:45.030Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:21:45.040Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:21:45.042Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:22:22.473Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:22:22.477Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:22:22.489Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:22:22.492Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:22:22.500Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:22:22.503Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:22:22.511Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:22:22.512Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:22:22.521Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:22:22.522Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:22:22.530Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:22:22.531Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:22:22.540Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:22:22.542Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:22:22.550Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:22:22.552Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:22:22.560Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:22:22.561Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:22:22.570Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:22:22.571Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:23:23.022Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:23:23.026Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:23:23.037Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:23:23.040Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:23:23.053Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:23:23.055Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:23:23.064Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:23:23.066Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:23:23.075Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:23:23.078Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:23:23.088Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:23:23.090Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:23:23.100Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:23:23.102Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:23:23.110Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:23:23.111Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:23:23.120Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:23:23.122Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:23:23.130Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:23:23.131Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-05-14T14:23:44.922Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-05-14T14:23:44.924Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-05-14T14:23:44.925Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-05-14T14:23:44.925Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-05-14T14:23:44.926Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-05-14T14:23:44.926Z"} +{"level":"info","message":"Ethers version: 6.13.7","timestamp":"2025-05-14T14:23:44.990Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:23:44.171Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:23:44.181Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:23:44.201Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:23:44.205Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:23:44.227Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:23:44.231Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:23:44.243Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:23:44.245Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:23:44.257Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:23:44.258Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T14:23:51.858Z"} +{"level":"info","message":"Тестирование RPC для sepolia: https://eth-sepolia.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52","timestamp":"2025-05-14T14:23:51.859Z"} +{"level":"info","message":"Успешное тестирование RPC для sepolia: https://eth-sepolia.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52, номер блока: 8325545","timestamp":"2025-05-14T14:23:53.972Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T14:24:01.880Z"} +{"level":"info","message":"Тестирование RPC для ethereum: https://eth-sepolia.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52","timestamp":"2025-05-14T14:24:01.881Z"} +{"level":"info","message":"Успешное тестирование RPC для ethereum: https://eth-sepolia.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52, номер блока: 8325546","timestamp":"2025-05-14T14:24:02.818Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T14:24:06.912Z"} +{"level":"info","message":"Тестирование RPC для polygon: https://polygon-rpc.com","timestamp":"2025-05-14T14:24:06.913Z"} +{"level":"info","message":"Успешное тестирование RPC для polygon: https://polygon-rpc.com, номер блока: 71509369","timestamp":"2025-05-14T14:24:08.489Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T14:24:12.044Z"} +{"level":"info","message":"Тестирование RPC для arbitrum: https://arb1.arbitrum.io/rpc","timestamp":"2025-05-14T14:24:12.045Z"} +{"level":"info","message":"Успешное тестирование RPC для arbitrum: https://arb1.arbitrum.io/rpc, номер блока: 336622492","timestamp":"2025-05-14T14:24:12.720Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:11.941Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:11.943Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:12.649Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:12.650Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:12.664Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:12.665Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:12.683Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:12.685Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:12.718Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:12.720Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:23.511Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:23.515Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:23.529Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:23.532Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:23.545Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:23.547Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:23.556Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:23.558Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:23.567Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:23.569Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T14:24:31.834Z"} +{"level":"info","message":"Тестирование RPC для bsc: https://bsc-dataseed1.binance.org","timestamp":"2025-05-14T14:24:31.835Z"} +{"level":"info","message":"Успешное тестирование RPC для bsc: https://bsc-dataseed1.binance.org, номер блока: 49659549","timestamp":"2025-05-14T14:24:32.632Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:41.776Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:41.778Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T14:24:42.349Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T14:24:42.370Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:24:42.373Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:42.376Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:42.391Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:42.394Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:24:42.407Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:42.408Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:42.419Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:42.421Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:42.431Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:42.433Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:42.443Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:42.444Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:42.896Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:42.898Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:42.911Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:42.913Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:42.950Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:42.952Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:24:42.967Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:24:42.969Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T14:24:45.583Z"} +{"level":"info","message":"Тестирование RPC для bsc: https://bsc-dataseed1.binance.org","timestamp":"2025-05-14T14:24:45.584Z"} +{"level":"info","message":"Успешное тестирование RPC для bsc: https://bsc-dataseed1.binance.org, номер блока: 49659558","timestamp":"2025-05-14T14:24:46.209Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:25:13.065Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:25:13.068Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:25:13.078Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:25:13.079Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:25:14.144Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:25:14.145Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:25:14.154Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:25:14.156Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:25:14.164Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:25:14.166Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:25:14.174Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:25:14.176Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:25:24.003Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:25:24.005Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:25:24.019Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:25:24.021Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:25:24.069Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:25:24.071Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:25:24.103Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:25:24.105Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:25:24.136Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:25:24.138Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:25:43.298Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:25:43.301Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:25:43.309Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:25:43.310Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:25:44.372Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:25:44.373Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:25:44.383Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:25:44.385Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:25:44.394Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:25:44.395Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:25:44.405Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:25:44.407Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:26:13.610Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:26:13.613Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:26:24.616Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:26:24.620Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:26:24.633Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:26:24.636Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:26:24.644Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:26:24.645Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:26:24.652Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:26:24.654Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:26:24.685Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:26:24.687Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:26:24.705Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:26:24.706Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:26:24.722Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:26:24.724Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:26:24.741Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:26:24.742Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:26:24.752Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:26:24.754Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:26:24.763Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:26:24.764Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:26:43.884Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:26:43.887Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:27:14.139Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:27:14.142Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:27:22.431Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:27:22.441Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:27:22.459Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:27:22.462Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:27:22.470Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:27:22.471Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:27:22.479Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:27:22.480Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:27:22.487Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:27:22.489Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:27:22.497Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:27:22.498Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:27:22.505Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:27:22.506Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:27:22.514Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:27:22.515Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:27:22.522Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:27:22.524Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:27:22.531Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:27:22.532Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:27:44.405Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:27:44.407Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:28:22.951Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:28:22.955Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:28:22.967Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:28:22.970Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:28:22.978Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:28:22.980Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:28:22.987Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:28:22.988Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:28:22.995Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:28:22.996Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:28:23.004Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:28:23.006Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:28:23.014Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:28:23.015Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:28:23.023Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:28:23.024Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:28:23.032Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:28:23.034Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:28:23.041Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:28:23.043Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:28:23.050Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:28:23.051Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:29:23.496Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:29:23.499Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:29:23.509Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:29:23.512Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:29:23.523Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:29:23.525Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:29:23.532Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:29:23.533Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:29:23.540Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:29:23.541Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:29:23.549Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:29:23.550Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:29:23.557Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:29:23.559Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:29:23.566Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:29:23.567Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:29:23.575Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:29:23.577Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:29:23.585Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:29:23.586Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:29:23.593Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:29:23.594Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:00.719Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:00.729Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:00.749Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:00.753Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:00.772Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:00.774Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:00.792Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:00.795Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:00.811Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:00.815Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:00.836Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:00.839Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:12.010Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:12.014Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:12.665Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:12.667Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:13.140Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:13.142Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:13.177Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:13.179Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:13.192Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:13.194Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:13.207Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:13.210Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:24.046Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:24.053Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:24.079Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:24.089Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:24.107Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:24.110Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:24.124Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:24.127Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:24.140Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:24.142Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:42.287Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:42.290Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:42.932Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:42.935Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:43.391Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:43.393Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:43.411Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:43.413Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:43.445Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:43.447Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:30:43.462Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:30:43.464Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:31:13.215Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:31:13.220Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:31:13.237Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:31:13.240Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:31:13.596Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:31:13.599Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:31:13.615Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:31:13.618Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:31:13.641Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:31:13.644Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:31:13.664Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:31:13.666Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:31:24.483Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:31:24.490Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:31:24.508Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:31:24.513Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:31:24.531Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:31:24.533Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:31:24.545Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:31:24.547Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:31:24.559Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:31:24.563Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T14:31:29.141Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T14:31:29.161Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:31:42.763Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:31:42.766Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:31:43.876Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:31:43.878Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:31:43.891Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:31:43.893Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:31:43.925Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:31:43.928Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:31:43.943Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:31:43.945Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:32:13.054Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:32:13.057Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:32:14.171Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:32:14.173Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:32:14.192Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:32:14.194Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:32:14.217Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:32:14.218Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:32:14.244Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:32:14.246Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:32:25.089Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:32:25.094Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:32:25.108Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:32:25.109Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:32:25.117Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:32:25.119Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:32:25.128Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:32:25.129Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:32:25.138Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:32:25.139Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:32:44.363Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:32:44.367Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:32:45.445Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:32:45.447Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:32:45.480Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:32:45.482Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:32:45.496Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:32:45.499Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:32:45.511Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:32:45.514Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:33:14.650Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:33:14.654Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:33:15.732Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:33:15.735Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:33:15.769Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:33:15.772Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:33:15.784Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:33:15.787Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:33:15.802Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:33:15.804Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:33:22.916Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:33:22.921Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:33:22.941Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:33:22.946Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:33:22.966Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:33:22.971Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:33:22.986Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:33:22.989Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:33:23.010Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:33:23.013Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:34:14.645Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:34:14.649Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:34:14.682Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:34:14.685Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:34:14.697Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:34:14.699Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:34:14.712Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:34:14.713Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:34:14.725Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:34:14.727Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:34:23.417Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:34:23.420Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:34:23.435Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:34:23.438Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:34:23.459Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:34:23.462Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:34:23.474Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:34:23.478Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:34:23.490Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:34:23.492Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:35:16.268Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:35:16.272Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:35:16.296Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:35:16.299Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:35:16.310Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:35:16.312Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:35:16.323Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:35:16.325Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:35:16.337Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:35:16.339Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:35:23.963Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:35:23.967Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:35:23.985Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:35:23.988Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:35:24.005Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:35:24.008Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:35:24.024Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:35:24.027Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:35:24.039Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:35:24.042Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:36:17.931Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:36:17.934Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:36:17.967Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:36:17.970Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:36:17.982Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:36:17.984Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:36:17.997Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:36:17.999Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:36:18.012Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:36:18.016Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:36:24.514Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:36:24.519Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:36:24.553Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:36:24.557Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:36:24.577Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:36:24.583Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:36:24.603Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:36:24.606Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:36:24.617Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:36:24.620Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:37:19.559Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:37:19.563Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:37:19.595Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:37:19.597Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:37:19.609Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:37:19.611Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:37:19.623Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:37:19.625Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:37:19.637Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:37:19.639Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:37:25.047Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:37:25.050Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:37:25.068Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:37:25.071Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:37:25.087Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:37:25.090Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:37:25.109Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:37:25.112Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:37:25.125Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:37:25.127Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:37:44.360Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:37:44.364Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:37:45.450Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:37:45.452Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:37:45.467Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:37:45.469Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:37:45.483Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:37:45.485Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:37:45.498Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:37:45.501Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:38:14.605Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:38:14.609Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:38:15.682Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:38:15.684Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:38:15.718Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:38:15.720Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:38:15.732Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:38:15.734Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:38:15.746Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:38:15.749Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:38:22.886Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:38:22.889Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:38:22.917Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:38:22.921Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:38:22.945Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:38:22.948Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:38:22.960Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:38:22.963Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:38:22.976Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:38:22.979Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:12.490Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:12.496Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:12.515Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:12.517Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:12.532Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:12.534Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:12.551Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:12.554Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:12.567Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:12.571Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:14.131Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:14.132Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:12.542Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:12.544Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:12.553Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:12.554Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:12.587Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:12.588Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:12.596Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:12.598Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:23.445Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:23.451Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:23.469Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:23.472Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:23.485Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:23.487Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:23.498Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:23.501Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:23.512Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:23.514Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:41.672Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:41.675Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:42.818Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:42.820Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:42.835Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:42.837Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:42.854Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:42.856Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:39:42.880Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:39:42.882Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:40:11.914Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:40:11.917Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:40:13.032Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:40:13.034Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:40:13.050Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:40:13.052Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:40:13.079Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:40:13.081Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:40:13.095Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:40:13.097Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:40:23.929Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:40:23.934Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:40:23.954Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:40:23.958Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:40:23.970Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:40:23.972Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:40:23.983Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:40:23.985Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:40:23.996Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:40:23.999Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:40:43.221Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:40:43.224Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:40:44.303Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:40:44.305Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:40:44.338Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:40:44.340Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:40:44.352Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:40:44.355Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:40:44.367Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:40:44.370Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:41:13.464Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:41:13.468Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:41:14.544Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:41:14.546Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:41:14.579Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:41:14.581Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:41:14.594Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:41:14.596Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:41:14.609Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:41:14.611Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:41:24.451Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:41:24.455Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:41:24.472Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:41:24.475Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:41:24.491Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:41:24.494Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:41:24.509Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:41:24.511Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:41:24.523Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:41:24.525Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:10.216Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:10.222Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:10.236Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:10.239Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:10.255Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:10.258Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:10.274Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:10.277Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:10.291Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:10.293Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:12.981Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:12.983Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:14.133Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:14.135Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:14.144Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:14.145Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:14.168Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:14.170Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:14.195Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:14.196Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T14:42:17.837Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T14:42:17.870Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:42:17.877Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:17.881Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:17.901Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:17.903Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:42:17.917Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:17.919Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:17.936Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:17.938Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:17.953Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:17.954Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:17.969Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:17.972Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:25.003Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:25.006Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:25.043Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:25.047Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:25.066Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:25.069Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:25.087Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:25.089Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:25.101Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:25.103Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:43.303Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:43.307Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:44.427Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:44.429Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:44.463Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:44.466Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:44.477Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:44.480Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:44.495Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:44.497Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:42:48.265Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:42:48.267Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:43:14.562Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:43:14.566Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:43:15.636Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:43:15.638Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:43:15.653Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:43:15.656Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:43:15.668Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:43:15.670Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:43:15.683Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:43:15.685Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:43:18.506Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:43:18.509Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:43:22.847Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:43:22.851Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:43:22.871Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:43:22.876Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:43:22.894Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:43:22.898Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:43:22.910Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:43:22.912Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:43:22.922Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:43:22.924Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:43:43.836Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:43:43.840Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:43:44.955Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:43:44.957Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:43:44.968Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:43:44.969Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:43:45.004Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:43:45.006Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:43:45.021Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:43:45.023Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:43:46.042Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:43:46.044Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T14:43:53.641Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T14:43:53.660Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:44:12.409Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:44:12.413Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:44:13.502Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:44:13.508Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:44:13.542Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:44:13.544Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:44:13.557Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:44:13.560Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:44:13.574Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:44:13.577Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:44:23.404Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:44:23.410Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:44:23.432Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:44:23.436Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:44:23.452Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:44:23.456Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:44:23.471Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:44:23.473Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:44:23.484Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:44:23.486Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:44:42.684Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:44:42.687Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:44:43.767Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:44:43.770Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:44:43.802Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:44:43.804Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:44:43.817Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:44:43.819Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:44:43.832Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:44:43.835Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:45:23.939Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:45:23.944Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:45:23.966Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:45:23.968Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:45:23.984Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:45:23.987Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:45:24.001Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:45:24.006Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:45:24.021Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:45:24.025Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:45:24.039Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:45:24.042Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:45:24.058Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:45:24.061Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:45:24.075Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:45:24.078Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:45:24.089Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:45:24.091Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:45:24.104Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:45:24.107Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-05-14T14:45:32.805Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-05-14T14:45:32.808Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-05-14T14:45:32.809Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-05-14T14:45:32.810Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-05-14T14:45:32.811Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-05-14T14:45:32.811Z"} +{"level":"info","message":"Ethers version: 6.13.7","timestamp":"2025-05-14T14:45:32.920Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-05-14T14:45:45.227Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-05-14T14:45:45.230Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-05-14T14:45:45.231Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-05-14T14:45:45.232Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-05-14T14:45:45.232Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-05-14T14:45:45.233Z"} +{"level":"info","message":"Ethers version: 6.13.7","timestamp":"2025-05-14T14:45:45.307Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-05-14T14:46:02.631Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-05-14T14:46:02.634Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-05-14T14:46:02.635Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-05-14T14:46:02.636Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-05-14T14:46:02.636Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-05-14T14:46:02.637Z"} +{"level":"info","message":"Ethers version: 6.13.7","timestamp":"2025-05-14T14:46:02.722Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:46:24.543Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:46:24.550Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:46:24.566Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:46:24.570Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:46:24.584Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:46:24.587Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:46:24.599Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:46:24.600Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:46:24.612Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:46:24.614Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:46:24.623Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:46:24.626Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:46:24.636Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:46:24.637Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:46:24.649Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:46:24.651Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:46:24.661Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:46:24.663Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:46:24.673Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:46:24.675Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:00.843Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:00.851Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:00.867Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:00.871Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:00.888Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:00.892Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:00.909Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:00.912Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:00.928Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:00.933Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:12.965Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:12.969Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:14.084Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:14.088Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:14.124Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:14.128Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:14.140Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:14.143Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:14.156Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:14.159Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:25.002Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:25.008Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:25.036Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:25.040Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:25.061Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:25.063Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:25.075Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:25.077Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:25.089Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:25.092Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T14:47:24.668Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T14:47:24.707Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:47:24.712Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:24.717Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:24.737Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:24.739Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T14:47:24.757Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:24.759Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:24.776Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:24.778Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:24.794Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:24.796Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:24.812Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:24.815Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:43.293Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:43.297Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:44.405Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:44.407Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:44.419Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:44.422Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:44.447Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:44.450Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:44.464Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:44.467Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:47:55.844Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:47:55.850Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:48:14.546Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:48:14.550Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:48:15.630Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:48:15.634Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:48:15.652Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:48:15.656Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:48:15.671Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:48:15.674Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:48:15.686Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:48:15.688Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:48:22.820Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:48:22.823Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:48:22.850Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:48:22.853Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:48:22.868Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:48:22.871Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:48:22.888Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:48:22.891Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:48:22.905Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:48:22.907Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:48:26.109Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:48:26.112Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:48:44.831Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:48:44.834Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:48:45.904Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:48:45.908Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:48:45.932Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:48:45.937Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:48:45.952Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:48:45.954Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:48:45.967Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:48:45.969Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T14:48:56.383Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T14:48:56.387Z"} +{"level":"info","message":"Директория существует: /app/contracts-data","timestamp":"2025-05-14T16:20:32.512Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data","timestamp":"2025-05-14T16:20:32.527Z"} +{"level":"info","message":"Директория существует: /app/contracts-data/dles","timestamp":"2025-05-14T16:20:32.528Z"} +{"level":"info","message":"Директория доступна для записи: /app/contracts-data/dles","timestamp":"2025-05-14T16:20:32.530Z"} +{"level":"info","message":"Директория существует: /app/temp","timestamp":"2025-05-14T16:20:32.530Z"} +{"level":"info","message":"Директория доступна для записи: /app/temp","timestamp":"2025-05-14T16:20:32.531Z"} +{"level":"info","message":"Ethers version: 6.13.7","timestamp":"2025-05-14T16:20:32.788Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:20:45.282Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.299Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:20:45.354Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.358Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.386Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.400Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.438Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:20:45.451Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.453Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.463Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:20:45.509Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.514Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.517Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.522Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:20:45.544Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.550Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T16:20:45.556Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T16:20:45.558Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.591Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.597Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:20:45.614Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.619Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.639Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.644Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:20:45.655Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.658Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.665Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.673Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:20:45.683Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.686Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.693Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.696Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:20:45.706Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.709Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.716Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.722Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:20:45.731Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.736Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.743Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.746Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.760Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.764Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.776Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.778Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.791Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.793Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.806Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.808Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.820Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.822Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.834Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.836Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.848Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.851Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.863Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.865Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.878Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.880Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.893Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.896Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:20:45.910Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:20:45.913Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-14T16:20:47.049Z"} +{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-14T16:20:47.083Z"} +{"count":24,"level":"info","limit":30,"message":"Returning message history for user 1","offset":0,"timestamp":"2025-05-14T16:20:47.093Z","total":24} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on ethereum:","timestamp":"2025-05-14T16:20:47.841Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T16:20:49.907Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T16:20:52.130Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T16:20:54.332Z"} +{"arbitrum":"499999.9","bsc":"500000.0","ethereum":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T16:20:54.333Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:21:16.671Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:21:16.674Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:21:16.692Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:21:16.696Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:21:16.716Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:21:16.719Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:21:16.734Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:21:16.737Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:21:16.753Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:21:16.758Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:21:46.823Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:21:46.827Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:21:46.853Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:21:46.856Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:21:46.873Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:21:46.875Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:21:46.892Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:21:46.896Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:21:46.915Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:21:46.918Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:22:08.351Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.356Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:22:08.406Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.408Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:22:08.431Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.434Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:22:08.464Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.468Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.471Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.479Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:22:08.493Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.497Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.500Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.506Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.534Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:22:08.538Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.541Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.543Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.563Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:22:08.567Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.571Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.573Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T16:22:08.582Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T16:22:08.586Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.613Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:22:08.616Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.619Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.623Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.640Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.644Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:22:08.648Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.651Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.668Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.672Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:22:08.676Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.679Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.689Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.692Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.706Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.709Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.724Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.727Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.743Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.746Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.761Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.764Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.777Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.780Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.793Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.797Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.809Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.812Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.826Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.829Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.844Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.846Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.859Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.863Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.877Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.881Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:08.894Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:08.897Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on ethereum:","timestamp":"2025-05-14T16:22:09.828Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-14T16:22:10.025Z"} +{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-14T16:22:10.062Z"} +{"count":24,"level":"info","limit":30,"message":"Returning message history for user 1","offset":0,"timestamp":"2025-05-14T16:22:10.069Z","total":24} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T16:22:10.679Z"} +{"level":"error","message":"Provider for arbitrum is not available: ","timestamp":"2025-05-14T16:22:11.865Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T16:22:12.829Z"} +{"arbitrum":"0","bsc":"500000.0","ethereum":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T16:22:12.830Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:22:16.969Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:16.972Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:22:16.993Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:16.996Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:17.014Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.019Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:22:17.023Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.028Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:17.045Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.052Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:22:17.067Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.077Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:17.084Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.095Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:22:17.107Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.111Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:17.118Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.121Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:22:17.132Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.139Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:17.145Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.148Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:22:17.161Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.164Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:17.166Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.169Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:22:17.186Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:17.188Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.190Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.192Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:17.208Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.211Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:17.225Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.228Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:17.240Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.243Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:17.257Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.259Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:17.273Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.276Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:17.291Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.299Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:17.316Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.320Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:17.337Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.339Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:17.355Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:17.357Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T16:22:23.478Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T16:22:23.501Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:39.611Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:39.615Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:48.045Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:48.048Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:48.063Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:48.066Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:48.085Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:48.088Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:22:48.107Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:22:48.114Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:23:08.944Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:23:08.948Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T16:23:17.229Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T16:23:17.259Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:23:17.301Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:23:17.307Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:23:17.355Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:23:17.357Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:23:17.378Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:23:17.381Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:23:17.402Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:23:17.404Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:23:17.424Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:23:17.432Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:23:17.458Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:23:17.460Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:23:17.528Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:23:17.531Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:23:17.548Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:23:17.550Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:23:17.580Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:23:17.584Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:23:17.624Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:23:17.627Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T16:23:21.866Z"} +{"level":"info","message":"Тестирование RPC для ethereum: https://eth-sepolia.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52","timestamp":"2025-05-14T16:23:21.869Z"} +{"level":"info","message":"Успешное тестирование RPC для ethereum: https://eth-sepolia.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52, номер блока: 8326103","timestamp":"2025-05-14T16:23:24.263Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:23:39.926Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:23:39.929Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:23:47.546Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:23:47.549Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:23:47.587Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:23:47.590Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:23:47.612Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:23:47.615Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:23:47.651Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:23:47.654Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:23:47.699Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:23:47.702Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:24:10.021Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:24:10.025Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:24:17.772Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:24:17.775Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:24:17.858Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:24:17.863Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:24:17.882Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:24:17.886Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:24:17.915Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:24:17.918Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:24:17.969Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:24:17.973Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T16:24:23.056Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T16:24:23.074Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:24:39.287Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:24:39.292Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:24:48.775Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:24:48.777Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:24:48.813Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:24:48.818Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:24:48.833Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:24:48.836Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:24:48.850Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:24:48.852Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:25:09.706Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:25:09.709Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:25:18.353Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:25:18.355Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:25:18.391Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:25:18.394Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:25:18.409Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:25:18.412Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:25:18.427Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:25:18.430Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:25:40.651Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:25:40.656Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:26:09.721Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:26:09.725Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:26:09.761Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:26:09.764Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:26:09.778Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:26:09.780Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:26:09.794Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:26:09.797Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:27:10.095Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:27:10.098Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:27:10.119Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:27:10.121Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:27:10.139Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:27:10.141Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:27:10.171Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:27:10.175Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:27:10.194Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:27:10.196Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:27:50.815Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:27:50.819Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:27:50.834Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:27:50.837Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:27:50.858Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:27:50.861Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:27:50.880Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:27:50.884Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:27:50.899Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:27:50.904Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T16:28:05.348Z"} +{"level":"info","message":"Тестирование RPC для ethereum: https://eth-sepolia.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52","timestamp":"2025-05-14T16:28:05.349Z"} +{"level":"info","message":"Успешное тестирование RPC для ethereum: https://eth-sepolia.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52, номер блока: 8326123","timestamp":"2025-05-14T16:28:07.597Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:28:10.502Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:28:10.507Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:28:17.791Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:28:17.793Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:28:17.825Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:28:17.830Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:28:17.843Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:28:17.846Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:28:17.861Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:28:17.864Z"} +{"level":"info","message":"POST /api/auth/logout","timestamp":"2025-05-14T16:28:35.407Z"} +{"address":null,"authType":null,"authenticated":false,"cookie":{"expires":"2025-06-13T14:09:21.489Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"email":null,"guestId":null,"isAdmin":false,"level":"info","message":"[SessionService] Saving session data:","pendingEmail":null,"previousGuestId":null,"processedGuestIds":[],"telegramId":null,"timestamp":"2025-05-14T16:28:35.408Z","userId":null} +{"level":"info","message":"Session saved successfully","timestamp":"2025-05-14T16:28:35.434Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:28:35.459Z"} +{"cookie":{"expires":"2025-06-13T16:28:35.456Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"e6484b3cc0923b4e299465dbd022a5a5","level":"info","message":"[SessionService] Saving session data:","timestamp":"2025-05-14T16:28:35.462Z"} +{"level":"info","message":"Session saved successfully","timestamp":"2025-05-14T16:28:35.467Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:28:48.101Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:28:48.117Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:28:48.155Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:28:48.172Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:28:49.287Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:28:49.353Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:28:49.372Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:28:49.396Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:28:49.416Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:28:55.596Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:28:55.613Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:28:55.631Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:28:55.649Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:28:57.644Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:28:57.657Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:28:57.669Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:28:57.680Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:29:00.257Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:29:00.270Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:29:00.282Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:29:00.293Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:29:05.485Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:29:05.577Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:29:05.651Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:29:05.705Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:29:04.974Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:29:05.121Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:29:05.131Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:29:05.141Z"} +{"level":"info","message":"GET /api/auth/nonce?address=0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-05-14T16:29:16.696Z"} +{"level":"info","message":"Nonce 8be28cceafd3d4d0099f8859d984f697 сохранен для адреса 0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-05-14T16:29:16.710Z"} +{"level":"info","message":"POST /api/auth/verify","timestamp":"2025-05-14T16:29:19.696Z"} +{"level":"info","message":"[verify] Verifying signature for address: 0xF45aa4917b3775bA37f48Aeb3dc1a943561e9e0B","timestamp":"2025-05-14T16:29:19.697Z"} +{"level":"info","message":"Checking admin role for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T16:29:19.820Z"} +{"level":"error","message":"Provider for bsc is not available: getaddrinfo ENOTFOUND bsc-dataseed.binance.org","timestamp":"2025-05-14T16:29:20.026Z"} +{"level":"error","message":"Provider for arbitrum is not available: getaddrinfo ENOTFOUND arb1.arbitrum.io","timestamp":"2025-05-14T16:29:20.083Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T16:29:20.792Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","hasTokens":true,"level":"info","message":"Token balance on ethereum:","timestamp":"2025-05-14T16:29:22.360Z"} +{"level":"info","message":"Found admin tokens on ethereum","timestamp":"2025-05-14T16:29:22.360Z"} +{"balances":{"arbitrum":"Error: Network unavailable","bsc":"Error: Network unavailable","ethereum":"1500000.0","polygon":"Error: Network unavailable"},"level":"info","message":"Admin role summary for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","networks":["ethereum"],"timestamp":"2025-05-14T16:29:22.361Z"} +{"level":"info","message":"Admin role granted for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T16:29:22.361Z"} +{"level":"info","message":"[verify] Found or created user 1 for wallet 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T16:29:22.361Z"} +{"level":"info","message":"[IdentityService] Converting guest identity for user 1 to guest_user_mapping: e6484b3cc0923b4e299465dbd022a5a5","timestamp":"2025-05-14T16:29:22.362Z"} +{"level":"info","message":"Checking admin tokens for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T16:29:22.383Z"} +{"level":"info","message":"Checking admin role for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T16:29:22.383Z"} +{"level":"error","message":"Provider for bsc is not available: getaddrinfo ENOTFOUND bsc-dataseed.binance.org","timestamp":"2025-05-14T16:29:22.427Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T16:29:22.582Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","hasTokens":true,"level":"info","message":"Token balance on ethereum:","timestamp":"2025-05-14T16:29:22.873Z"} +{"level":"info","message":"Found admin tokens on ethereum","timestamp":"2025-05-14T16:29:22.874Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","hasTokens":true,"level":"info","message":"Token balance on arbitrum:","timestamp":"2025-05-14T16:29:23.409Z"} +{"level":"info","message":"Found admin tokens on arbitrum","timestamp":"2025-05-14T16:29:23.409Z"} +{"balances":{"arbitrum":"499999.9","bsc":"Error: Network unavailable","ethereum":"1500000.0","polygon":"Error: Network unavailable"},"level":"info","message":"Admin role summary for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","networks":["ethereum","arbitrum"],"timestamp":"2025-05-14T16:29:23.410Z"} +{"level":"info","message":"Admin role granted for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T16:29:23.410Z"} +{"level":"info","message":"Updated user 1 role to admin based on token holdings","timestamp":"2025-05-14T16:29:23.415Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","authType":"wallet","authenticated":true,"cookie":{"expires":"2025-06-13T16:28:35.456Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"e6484b3cc0923b4e299465dbd022a5a5","isAdmin":true,"level":"info","message":"[SessionService] Saving session data:","timestamp":"2025-05-14T16:29:23.418Z","userId":1} +{"level":"info","message":"Session saved successfully","timestamp":"2025-05-14T16:29:23.421Z"} +{"level":"info","message":"[linkGuestMessages] Starting for user 1 with guestId=e6484b3cc0923b4e299465dbd022a5a5, previousGuestId=undefined","timestamp":"2025-05-14T16:29:23.422Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=e6484b3cc0923b4e299465dbd022a5a5","timestamp":"2025-05-14T16:29:23.429Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID e6484b3cc0923b4e299465dbd022a5a5","timestamp":"2025-05-14T16:29:23.430Z"} +{"level":"info","message":"No guest messages found for guest ID e6484b3cc0923b4e299465dbd022a5a5","timestamp":"2025-05-14T16:29:23.436Z"} +{"level":"info","message":"Marked guest mapping as processed (no messages found) for guest ID e6484b3cc0923b4e299465dbd022a5a5","timestamp":"2025-05-14T16:29:23.440Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=4ce93dd87f076a6bdcdfd373737d79f9","timestamp":"2025-05-14T16:29:23.443Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 4ce93dd87f076a6bdcdfd373737d79f9","timestamp":"2025-05-14T16:29:23.443Z"} +{"level":"info","message":"Guest messages for guest ID 4ce93dd87f076a6bdcdfd373737d79f9 were already processed.","timestamp":"2025-05-14T16:29:23.445Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746053084533-wqwfw5fm2","timestamp":"2025-05-14T16:29:23.448Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746053084533-wqwfw5fm2","timestamp":"2025-05-14T16:29:23.448Z"} +{"level":"info","message":"Guest messages for guest ID 1746053084533-wqwfw5fm2 were already processed.","timestamp":"2025-05-14T16:29:23.450Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=e172290cd6263e6f2594333f5f90e4f7","timestamp":"2025-05-14T16:29:23.453Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID e172290cd6263e6f2594333f5f90e4f7","timestamp":"2025-05-14T16:29:23.453Z"} +{"level":"info","message":"Guest messages for guest ID e172290cd6263e6f2594333f5f90e4f7 were already processed.","timestamp":"2025-05-14T16:29:23.457Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=96f5c4804077390d2e15606f9819f55f","timestamp":"2025-05-14T16:29:23.463Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 96f5c4804077390d2e15606f9819f55f","timestamp":"2025-05-14T16:29:23.464Z"} +{"level":"info","message":"Guest messages for guest ID 96f5c4804077390d2e15606f9819f55f were already processed.","timestamp":"2025-05-14T16:29:23.466Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=f76c4b9a764e2d6b8c59fd19687812ff","timestamp":"2025-05-14T16:29:23.471Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID f76c4b9a764e2d6b8c59fd19687812ff","timestamp":"2025-05-14T16:29:23.471Z"} +{"level":"info","message":"Guest messages for guest ID f76c4b9a764e2d6b8c59fd19687812ff were already processed.","timestamp":"2025-05-14T16:29:23.473Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=c4378cb2eaec94d5e68835cd6a95f334","timestamp":"2025-05-14T16:29:23.476Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID c4378cb2eaec94d5e68835cd6a95f334","timestamp":"2025-05-14T16:29:23.477Z"} +{"level":"info","message":"Guest messages for guest ID c4378cb2eaec94d5e68835cd6a95f334 were already processed.","timestamp":"2025-05-14T16:29:23.478Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=72b3851bc1e64d63c499e6b534c2f685","timestamp":"2025-05-14T16:29:23.484Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 72b3851bc1e64d63c499e6b534c2f685","timestamp":"2025-05-14T16:29:23.484Z"} +{"level":"info","message":"Guest messages for guest ID 72b3851bc1e64d63c499e6b534c2f685 were already processed.","timestamp":"2025-05-14T16:29:23.486Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0a4c115f9b71959ba238ed4d69d0b2bd","timestamp":"2025-05-14T16:29:23.489Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 0a4c115f9b71959ba238ed4d69d0b2bd","timestamp":"2025-05-14T16:29:23.490Z"} +{"level":"info","message":"Guest messages for guest ID 0a4c115f9b71959ba238ed4d69d0b2bd were already processed.","timestamp":"2025-05-14T16:29:23.493Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=5e9687d8aa37392dbcc6502eaa8777f5","timestamp":"2025-05-14T16:29:23.497Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 5e9687d8aa37392dbcc6502eaa8777f5","timestamp":"2025-05-14T16:29:23.498Z"} +{"level":"info","message":"Guest messages for guest ID 5e9687d8aa37392dbcc6502eaa8777f5 were already processed.","timestamp":"2025-05-14T16:29:23.500Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=d8eb7603a4d012cc0077750dfe895d4f","timestamp":"2025-05-14T16:29:23.504Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID d8eb7603a4d012cc0077750dfe895d4f","timestamp":"2025-05-14T16:29:23.504Z"} +{"level":"info","message":"Guest messages for guest ID d8eb7603a4d012cc0077750dfe895d4f were already processed.","timestamp":"2025-05-14T16:29:23.507Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=8af4660b9c469159e7e6a3a96fc3e887","timestamp":"2025-05-14T16:29:23.510Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 8af4660b9c469159e7e6a3a96fc3e887","timestamp":"2025-05-14T16:29:23.510Z"} +{"level":"info","message":"Guest messages for guest ID 8af4660b9c469159e7e6a3a96fc3e887 were already processed.","timestamp":"2025-05-14T16:29:23.512Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=2a11b17d8e84aa6bc1f11695c69c7797","timestamp":"2025-05-14T16:29:23.515Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 2a11b17d8e84aa6bc1f11695c69c7797","timestamp":"2025-05-14T16:29:23.516Z"} +{"level":"info","message":"Guest messages for guest ID 2a11b17d8e84aa6bc1f11695c69c7797 were already processed.","timestamp":"2025-05-14T16:29:23.522Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=3926a395b41803c5a6b0365b97fb3cb5","timestamp":"2025-05-14T16:29:23.526Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 3926a395b41803c5a6b0365b97fb3cb5","timestamp":"2025-05-14T16:29:23.527Z"} +{"level":"info","message":"Guest messages for guest ID 3926a395b41803c5a6b0365b97fb3cb5 were already processed.","timestamp":"2025-05-14T16:29:23.529Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=dcbbfc0c915a1ce026528c2104106209","timestamp":"2025-05-14T16:29:23.533Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID dcbbfc0c915a1ce026528c2104106209","timestamp":"2025-05-14T16:29:23.534Z"} +{"level":"info","message":"Guest messages for guest ID dcbbfc0c915a1ce026528c2104106209 were already processed.","timestamp":"2025-05-14T16:29:23.536Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=a2adbf150cc15e85cad5b6ad087b710b","timestamp":"2025-05-14T16:29:23.540Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID a2adbf150cc15e85cad5b6ad087b710b","timestamp":"2025-05-14T16:29:23.541Z"} +{"level":"info","message":"Guest messages for guest ID a2adbf150cc15e85cad5b6ad087b710b were already processed.","timestamp":"2025-05-14T16:29:23.543Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=b9003e60118545cc8cb0623077cc4f63","timestamp":"2025-05-14T16:29:23.546Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID b9003e60118545cc8cb0623077cc4f63","timestamp":"2025-05-14T16:29:23.547Z"} +{"level":"info","message":"Guest messages for guest ID b9003e60118545cc8cb0623077cc4f63 were already processed.","timestamp":"2025-05-14T16:29:23.549Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=efd5f85208bdbe946f0d3f04c9ba336d","timestamp":"2025-05-14T16:29:23.553Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID efd5f85208bdbe946f0d3f04c9ba336d","timestamp":"2025-05-14T16:29:23.554Z"} +{"level":"info","message":"Guest messages for guest ID efd5f85208bdbe946f0d3f04c9ba336d were already processed.","timestamp":"2025-05-14T16:29:23.556Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=f3b209b70545a9a0aa1a4f94a0238785","timestamp":"2025-05-14T16:29:23.560Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID f3b209b70545a9a0aa1a4f94a0238785","timestamp":"2025-05-14T16:29:23.561Z"} +{"level":"info","message":"Guest messages for guest ID f3b209b70545a9a0aa1a4f94a0238785 were already processed.","timestamp":"2025-05-14T16:29:23.563Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=bf3fdb217687be2bdd5d0baaa18e2665","timestamp":"2025-05-14T16:29:23.566Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID bf3fdb217687be2bdd5d0baaa18e2665","timestamp":"2025-05-14T16:29:23.566Z"} +{"level":"info","message":"Guest messages for guest ID bf3fdb217687be2bdd5d0baaa18e2665 were already processed.","timestamp":"2025-05-14T16:29:23.568Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746048025646-a9cve1ac8","timestamp":"2025-05-14T16:29:23.572Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746048025646-a9cve1ac8","timestamp":"2025-05-14T16:29:23.573Z"} +{"level":"info","message":"Guest messages for guest ID 1746048025646-a9cve1ac8 were already processed.","timestamp":"2025-05-14T16:29:23.574Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=061143c028cafec9296f383002126907","timestamp":"2025-05-14T16:29:23.578Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 061143c028cafec9296f383002126907","timestamp":"2025-05-14T16:29:23.579Z"} +{"level":"info","message":"Guest messages for guest ID 061143c028cafec9296f383002126907 were already processed.","timestamp":"2025-05-14T16:29:23.581Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=fbd39c74ae8b8b48930e08b519787a12","timestamp":"2025-05-14T16:29:23.584Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID fbd39c74ae8b8b48930e08b519787a12","timestamp":"2025-05-14T16:29:23.585Z"} +{"level":"info","message":"Guest messages for guest ID fbd39c74ae8b8b48930e08b519787a12 were already processed.","timestamp":"2025-05-14T16:29:23.586Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=23fb4de594179339d2b6f27be5891a96","timestamp":"2025-05-14T16:29:23.590Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 23fb4de594179339d2b6f27be5891a96","timestamp":"2025-05-14T16:29:23.590Z"} +{"level":"info","message":"Guest messages for guest ID 23fb4de594179339d2b6f27be5891a96 were already processed.","timestamp":"2025-05-14T16:29:23.592Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=806b063766ddc43e8fc0b822c032472d","timestamp":"2025-05-14T16:29:23.595Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 806b063766ddc43e8fc0b822c032472d","timestamp":"2025-05-14T16:29:23.596Z"} +{"level":"info","message":"Guest messages for guest ID 806b063766ddc43e8fc0b822c032472d were already processed.","timestamp":"2025-05-14T16:29:23.597Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=2a574c0eccfae584bf20e8e50b7d0a40","timestamp":"2025-05-14T16:29:23.600Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 2a574c0eccfae584bf20e8e50b7d0a40","timestamp":"2025-05-14T16:29:23.600Z"} +{"level":"info","message":"Guest messages for guest ID 2a574c0eccfae584bf20e8e50b7d0a40 were already processed.","timestamp":"2025-05-14T16:29:23.602Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=8b5d6a6fab3d07cbc262c7a27c40007f","timestamp":"2025-05-14T16:29:23.605Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 8b5d6a6fab3d07cbc262c7a27c40007f","timestamp":"2025-05-14T16:29:23.605Z"} +{"level":"info","message":"Guest messages for guest ID 8b5d6a6fab3d07cbc262c7a27c40007f were already processed.","timestamp":"2025-05-14T16:29:23.607Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746463345144-ylmarlnq2","timestamp":"2025-05-14T16:29:23.610Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746463345144-ylmarlnq2","timestamp":"2025-05-14T16:29:23.610Z"} +{"level":"info","message":"Guest messages for guest ID 1746463345144-ylmarlnq2 were already processed.","timestamp":"2025-05-14T16:29:23.612Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=71aa676b5148fcf70266f62033ac07ce","timestamp":"2025-05-14T16:29:23.615Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 71aa676b5148fcf70266f62033ac07ce","timestamp":"2025-05-14T16:29:23.616Z"} +{"level":"info","message":"Guest messages for guest ID 71aa676b5148fcf70266f62033ac07ce were already processed.","timestamp":"2025-05-14T16:29:23.617Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1f09a77763c0f046aaa789f9d019984d","timestamp":"2025-05-14T16:29:23.620Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1f09a77763c0f046aaa789f9d019984d","timestamp":"2025-05-14T16:29:23.620Z"} +{"level":"info","message":"Guest messages for guest ID 1f09a77763c0f046aaa789f9d019984d were already processed.","timestamp":"2025-05-14T16:29:23.622Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=655c2a907c038a9f7324344d8e3af59e","timestamp":"2025-05-14T16:29:23.625Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 655c2a907c038a9f7324344d8e3af59e","timestamp":"2025-05-14T16:29:23.626Z"} +{"level":"info","message":"Guest messages for guest ID 655c2a907c038a9f7324344d8e3af59e were already processed.","timestamp":"2025-05-14T16:29:23.628Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0541b3cad5c9eaf088709e380d62d72e","timestamp":"2025-05-14T16:29:23.631Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 0541b3cad5c9eaf088709e380d62d72e","timestamp":"2025-05-14T16:29:23.631Z"} +{"level":"info","message":"Guest messages for guest ID 0541b3cad5c9eaf088709e380d62d72e were already processed.","timestamp":"2025-05-14T16:29:23.633Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=434910a20e533ca13211a6e5338f13f7","timestamp":"2025-05-14T16:29:23.636Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 434910a20e533ca13211a6e5338f13f7","timestamp":"2025-05-14T16:29:23.636Z"} +{"level":"info","message":"Guest messages for guest ID 434910a20e533ca13211a6e5338f13f7 were already processed.","timestamp":"2025-05-14T16:29:23.638Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=ce26ad9c9c646bc448d13e612ddff4c6","timestamp":"2025-05-14T16:29:23.641Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID ce26ad9c9c646bc448d13e612ddff4c6","timestamp":"2025-05-14T16:29:23.641Z"} +{"level":"info","message":"Guest messages for guest ID ce26ad9c9c646bc448d13e612ddff4c6 were already processed.","timestamp":"2025-05-14T16:29:23.644Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=6dcb1a67de88e628de643a201f9f455d","timestamp":"2025-05-14T16:29:23.647Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 6dcb1a67de88e628de643a201f9f455d","timestamp":"2025-05-14T16:29:23.648Z"} +{"level":"info","message":"Guest messages for guest ID 6dcb1a67de88e628de643a201f9f455d were already processed.","timestamp":"2025-05-14T16:29:23.651Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=f6a9e94119b2317d7b9be50733ac5e51","timestamp":"2025-05-14T16:29:23.653Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID f6a9e94119b2317d7b9be50733ac5e51","timestamp":"2025-05-14T16:29:23.654Z"} +{"level":"info","message":"Guest messages for guest ID f6a9e94119b2317d7b9be50733ac5e51 were already processed.","timestamp":"2025-05-14T16:29:23.655Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=19fae7d5baa3b5217a8bb3d96c9cbf82","timestamp":"2025-05-14T16:29:23.658Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 19fae7d5baa3b5217a8bb3d96c9cbf82","timestamp":"2025-05-14T16:29:23.658Z"} +{"level":"info","message":"Guest messages for guest ID 19fae7d5baa3b5217a8bb3d96c9cbf82 were already processed.","timestamp":"2025-05-14T16:29:23.661Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0d929f5ec7a0b00d2e5cfd54eb1c2c7e","timestamp":"2025-05-14T16:29:23.664Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 0d929f5ec7a0b00d2e5cfd54eb1c2c7e","timestamp":"2025-05-14T16:29:23.664Z"} +{"level":"info","message":"Guest messages for guest ID 0d929f5ec7a0b00d2e5cfd54eb1c2c7e were already processed.","timestamp":"2025-05-14T16:29:23.666Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=ba2ffec057a35dd8f68d2f0791c2b842","timestamp":"2025-05-14T16:29:23.669Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID ba2ffec057a35dd8f68d2f0791c2b842","timestamp":"2025-05-14T16:29:23.670Z"} +{"level":"info","message":"Guest messages for guest ID ba2ffec057a35dd8f68d2f0791c2b842 were already processed.","timestamp":"2025-05-14T16:29:23.671Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=c7d08b33c81f332520551ac825dccf65","timestamp":"2025-05-14T16:29:23.674Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID c7d08b33c81f332520551ac825dccf65","timestamp":"2025-05-14T16:29:23.674Z"} +{"level":"info","message":"Guest messages for guest ID c7d08b33c81f332520551ac825dccf65 were already processed.","timestamp":"2025-05-14T16:29:23.676Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=1746057084616-5yz5fv65c","timestamp":"2025-05-14T16:29:23.679Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 1746057084616-5yz5fv65c","timestamp":"2025-05-14T16:29:23.680Z"} +{"level":"info","message":"Guest messages for guest ID 1746057084616-5yz5fv65c were already processed.","timestamp":"2025-05-14T16:29:23.682Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=3919e986b4c273269d4053b4a4753198","timestamp":"2025-05-14T16:29:23.686Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 3919e986b4c273269d4053b4a4753198","timestamp":"2025-05-14T16:29:23.686Z"} +{"level":"info","message":"Guest messages for guest ID 3919e986b4c273269d4053b4a4753198 were already processed.","timestamp":"2025-05-14T16:29:23.688Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=8094762fbaf7141795fd886835bcd372","timestamp":"2025-05-14T16:29:23.691Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 8094762fbaf7141795fd886835bcd372","timestamp":"2025-05-14T16:29:23.691Z"} +{"level":"info","message":"Guest messages for guest ID 8094762fbaf7141795fd886835bcd372 were already processed.","timestamp":"2025-05-14T16:29:23.693Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=c729c21d331c26f9103ad1024956e403","timestamp":"2025-05-14T16:29:23.695Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID c729c21d331c26f9103ad1024956e403","timestamp":"2025-05-14T16:29:23.696Z"} +{"level":"info","message":"Guest messages for guest ID c729c21d331c26f9103ad1024956e403 were already processed.","timestamp":"2025-05-14T16:29:23.697Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=6c8674af64c3c38b58bbf61b065d738e","timestamp":"2025-05-14T16:29:23.700Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 6c8674af64c3c38b58bbf61b065d738e","timestamp":"2025-05-14T16:29:23.701Z"} +{"level":"info","message":"Guest messages for guest ID 6c8674af64c3c38b58bbf61b065d738e were already processed.","timestamp":"2025-05-14T16:29:23.703Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=597e6501b9bae6fdba1dea790ca914e5","timestamp":"2025-05-14T16:29:23.706Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 597e6501b9bae6fdba1dea790ca914e5","timestamp":"2025-05-14T16:29:23.706Z"} +{"level":"info","message":"Guest messages for guest ID 597e6501b9bae6fdba1dea790ca914e5 were already processed.","timestamp":"2025-05-14T16:29:23.707Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=758c5501236dd51c907b8035b014561e","timestamp":"2025-05-14T16:29:23.710Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 758c5501236dd51c907b8035b014561e","timestamp":"2025-05-14T16:29:23.710Z"} +{"level":"info","message":"Guest messages for guest ID 758c5501236dd51c907b8035b014561e were already processed.","timestamp":"2025-05-14T16:29:23.711Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=0fc862553fa644a4d875a79ff01e1786","timestamp":"2025-05-14T16:29:23.714Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 0fc862553fa644a4d875a79ff01e1786","timestamp":"2025-05-14T16:29:23.715Z"} +{"level":"info","message":"Guest messages for guest ID 0fc862553fa644a4d875a79ff01e1786 were already processed.","timestamp":"2025-05-14T16:29:23.716Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=b6f8dc2c159c5b4983e9431cfb3e02ea","timestamp":"2025-05-14T16:29:23.719Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID b6f8dc2c159c5b4983e9431cfb3e02ea","timestamp":"2025-05-14T16:29:23.720Z"} +{"level":"info","message":"Guest messages for guest ID b6f8dc2c159c5b4983e9431cfb3e02ea were already processed.","timestamp":"2025-05-14T16:29:23.723Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=7dcd8237d8bb9b8344a16748851aaa1d","timestamp":"2025-05-14T16:29:23.726Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 7dcd8237d8bb9b8344a16748851aaa1d","timestamp":"2025-05-14T16:29:23.726Z"} +{"level":"info","message":"Guest messages for guest ID 7dcd8237d8bb9b8344a16748851aaa1d were already processed.","timestamp":"2025-05-14T16:29:23.728Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=7fd62b29aad08c99e38fe96abb70158f","timestamp":"2025-05-14T16:29:23.730Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 7fd62b29aad08c99e38fe96abb70158f","timestamp":"2025-05-14T16:29:23.731Z"} +{"level":"info","message":"Guest messages for guest ID 7fd62b29aad08c99e38fe96abb70158f were already processed.","timestamp":"2025-05-14T16:29:23.732Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=dbd03ab1af02855698333b2c8916ec3f","timestamp":"2025-05-14T16:29:23.735Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID dbd03ab1af02855698333b2c8916ec3f","timestamp":"2025-05-14T16:29:23.735Z"} +{"level":"info","message":"Guest messages for guest ID dbd03ab1af02855698333b2c8916ec3f were already processed.","timestamp":"2025-05-14T16:29:23.736Z"} +{"level":"info","message":"[processGuestMessagesWrapper] Processing messages: userId=1, guestId=937df75e640dce12ded1832a8b607040","timestamp":"2025-05-14T16:29:23.739Z"} +{"level":"info","message":"Processing guest messages for user 1 with guest ID 937df75e640dce12ded1832a8b607040","timestamp":"2025-05-14T16:29:23.740Z"} +{"level":"info","message":"Guest messages for guest ID 937df75e640dce12ded1832a8b607040 were already processed.","timestamp":"2025-05-14T16:29:23.742Z"} +{"address":"0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","authType":"wallet","authenticated":true,"cookie":{"expires":"2025-06-13T16:28:35.456Z","httpOnly":true,"originalMaxAge":2592000000,"path":"/","sameSite":"lax","secure":false},"guestId":"e6484b3cc0923b4e299465dbd022a5a5","isAdmin":true,"level":"info","message":"[SessionService] Saving session data:","processedGuestIds":["e6484b3cc0923b4e299465dbd022a5a5","4ce93dd87f076a6bdcdfd373737d79f9","1746053084533-wqwfw5fm2","e172290cd6263e6f2594333f5f90e4f7","96f5c4804077390d2e15606f9819f55f","f76c4b9a764e2d6b8c59fd19687812ff","c4378cb2eaec94d5e68835cd6a95f334","72b3851bc1e64d63c499e6b534c2f685","0a4c115f9b71959ba238ed4d69d0b2bd","5e9687d8aa37392dbcc6502eaa8777f5","d8eb7603a4d012cc0077750dfe895d4f","8af4660b9c469159e7e6a3a96fc3e887","2a11b17d8e84aa6bc1f11695c69c7797","3926a395b41803c5a6b0365b97fb3cb5","dcbbfc0c915a1ce026528c2104106209","a2adbf150cc15e85cad5b6ad087b710b","b9003e60118545cc8cb0623077cc4f63","efd5f85208bdbe946f0d3f04c9ba336d","f3b209b70545a9a0aa1a4f94a0238785","bf3fdb217687be2bdd5d0baaa18e2665","1746048025646-a9cve1ac8","061143c028cafec9296f383002126907","fbd39c74ae8b8b48930e08b519787a12","23fb4de594179339d2b6f27be5891a96","806b063766ddc43e8fc0b822c032472d","2a574c0eccfae584bf20e8e50b7d0a40","8b5d6a6fab3d07cbc262c7a27c40007f","1746463345144-ylmarlnq2","71aa676b5148fcf70266f62033ac07ce","1f09a77763c0f046aaa789f9d019984d","655c2a907c038a9f7324344d8e3af59e","0541b3cad5c9eaf088709e380d62d72e","434910a20e533ca13211a6e5338f13f7","ce26ad9c9c646bc448d13e612ddff4c6","6dcb1a67de88e628de643a201f9f455d","f6a9e94119b2317d7b9be50733ac5e51","19fae7d5baa3b5217a8bb3d96c9cbf82","0d929f5ec7a0b00d2e5cfd54eb1c2c7e","ba2ffec057a35dd8f68d2f0791c2b842","c7d08b33c81f332520551ac825dccf65","1746057084616-5yz5fv65c","3919e986b4c273269d4053b4a4753198","8094762fbaf7141795fd886835bcd372","c729c21d331c26f9103ad1024956e403","6c8674af64c3c38b58bbf61b065d738e","597e6501b9bae6fdba1dea790ca914e5","758c5501236dd51c907b8035b014561e","0fc862553fa644a4d875a79ff01e1786","b6f8dc2c159c5b4983e9431cfb3e02ea","7dcd8237d8bb9b8344a16748851aaa1d","7fd62b29aad08c99e38fe96abb70158f","dbd03ab1af02855698333b2c8916ec3f","937df75e640dce12ded1832a8b607040"],"timestamp":"2025-05-14T16:29:23.745Z","userId":1} +{"level":"info","message":"Session saved successfully","timestamp":"2025-05-14T16:29:23.749Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:29:23.763Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:29:23.764Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:29:23.778Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:29:23.780Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:29:23.793Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:29:23.795Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:29:23.839Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:29:23.841Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:29:23.873Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:29:23.874Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:29:23.912Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:29:23.914Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:29:23.946Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:29:23.948Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:29:23.986Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:29:23.989Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:29:24.030Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:29:24.033Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:29:24.054Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:29:24.056Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T16:29:24.061Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T16:29:24.062Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:29:24.071Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:29:24.074Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:29:24.092Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:29:24.094Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on ethereum:","timestamp":"2025-05-14T16:29:24.510Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T16:29:25.475Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T16:29:26.142Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T16:29:26.403Z"} +{"arbitrum":"499999.9","bsc":"500000.0","ethereum":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T16:29:26.404Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T16:29:26.417Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T16:29:26.419Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on ethereum:","timestamp":"2025-05-14T16:29:26.917Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T16:29:27.263Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T16:29:27.959Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T16:29:28.187Z"} +{"arbitrum":"499999.9","bsc":"500000.0","ethereum":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T16:29:28.188Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-14T16:29:29.837Z"} +{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-14T16:29:29.864Z"} +{"count":24,"level":"info","limit":30,"message":"Returning message history for user 1","offset":0,"timestamp":"2025-05-14T16:29:29.872Z","total":24} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:29:54.823Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:29:54.828Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:29:54.841Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:29:54.844Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:30:24.937Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:30:24.941Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:30:24.967Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:30:24.971Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:30:55.195Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:30:55.199Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:30:55.213Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:30:55.216Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:31:25.402Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:31:25.406Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:31:25.420Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:31:25.423Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:31:53.334Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:31:53.338Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:31:53.372Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:31:53.375Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:32:21.517Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.522Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:32:21.560Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.563Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T16:32:21.583Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:21.616Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.622Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:32:21.625Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.631Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:21.643Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.646Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:32:21.659Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.663Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:21.672Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.678Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:32:21.693Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:21.701Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.703Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.705Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:32:21.730Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.734Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:21.586Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.589Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:32:21.593Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.595Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:21.623Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.628Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:32:21.635Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.640Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:21.651Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.654Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:21.669Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.672Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:21.687Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.690Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:21.709Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.715Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:21.735Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.738Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:21.754Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.758Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:21.776Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:21.779Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:21.797Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:19.740Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:19.758Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:19.763Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:19.785Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:19.789Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:23.144Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:23.147Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:50.453Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:50.457Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:50.469Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:50.472Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:50.484Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:50.486Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:50.498Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:50.500Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:32:53.680Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:32:53.682Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:33:20.559Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:33:20.564Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:33:20.600Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:33:20.603Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:33:20.619Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:33:20.623Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:33:20.638Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:33:20.641Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:33:23.791Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:33:23.795Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:33:50.829Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:33:50.834Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:33:50.850Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:33:50.854Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:33:50.868Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:33:50.872Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:33:50.888Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:33:50.892Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:34:10.195Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:34:10.199Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:34:20.928Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:34:20.933Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:34:20.950Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:34:20.952Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:34:20.975Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:34:20.980Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:34:21.000Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:34:21.004Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:34:51.066Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:34:51.070Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:34:51.108Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:34:51.112Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:34:51.126Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:34:51.129Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:34:51.145Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:34:51.148Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:35:08.318Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:35:08.322Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:35:21.388Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:35:21.392Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:35:21.428Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:35:21.432Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:35:21.450Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:35:21.454Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:35:21.471Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:35:21.476Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:06.922Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:06.927Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:06.942Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:06.945Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:06.960Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:06.962Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:06.977Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:06.980Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:06.994Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:06.999Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:36:13.914Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:13.916Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:36:13.954Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:13.957Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:36:13.977Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:13.979Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:13.994Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:36:13.999Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.001Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.006Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:14.024Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.030Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:36:14.035Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.038Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:14.052Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.057Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:36:14.064Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.067Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:14.084Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.094Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:36:14.106Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.108Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:14.124Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.127Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:36:14.136Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.139Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:14.149Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.152Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:14.178Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.180Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:14.200Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.203Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:14.219Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.222Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:14.236Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.239Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:14.255Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.257Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:14.272Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.274Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:14.288Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.291Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:14.304Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.306Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:14.320Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.323Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:14.337Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:14.339Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T16:36:16.201Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T16:36:16.205Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:36:16.238Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:16.242Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:16.262Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:16.264Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:36:16.276Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:16.278Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:16.308Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:16.310Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:16.324Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:16.326Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:16.341Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:16.343Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:24.440Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:24.443Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:45.205Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:45.208Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:45.240Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:45.243Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:45.256Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:45.261Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:45.277Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:45.280Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:47.342Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:47.345Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:36:54.933Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:36:54.935Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:37:15.445Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:37:15.449Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:37:15.486Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:37:15.490Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:37:15.505Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:37:15.508Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:37:15.525Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:37:15.529Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:37:17.593Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:37:17.596Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:37:24.839Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:37:24.842Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T16:37:26.222Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T16:37:26.251Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:37:44.609Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:37:44.613Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:37:44.649Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:37:44.652Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:37:44.669Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:37:44.672Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:37:44.689Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:37:44.692Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:37:54.879Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:37:54.883Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:38:14.938Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:38:14.943Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:38:14.979Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:38:14.982Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:38:14.997Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:38:15.000Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:38:15.015Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:38:15.018Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:38:22.995Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:38:22.998Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:38:45.043Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:38:45.047Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:38:45.090Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:38:45.093Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:38:45.109Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:38:45.112Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:38:45.126Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:38:45.130Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:38:53.172Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:38:53.177Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:39:15.258Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:39:15.262Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:39:15.290Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:39:15.293Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:39:15.309Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:39:15.312Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:39:15.330Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:39:15.333Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:39:23.600Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:39:23.603Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:39:45.398Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:39:45.402Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:39:45.437Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:39:45.440Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:39:45.455Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:39:45.459Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:39:45.477Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:39:45.481Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T16:39:45.966Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T16:39:45.982Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:39:53.843Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:39:53.845Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:40:14.316Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:40:14.320Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:40:14.333Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:40:14.336Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:40:14.351Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:40:14.355Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:40:14.369Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:40:14.373Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:40:23.951Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:40:23.955Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T16:40:41.903Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T16:40:41.923Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:40:44.483Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:40:44.488Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:40:44.522Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:40:44.524Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:40:44.538Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:40:44.541Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:40:44.557Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:40:44.560Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:41:07.883Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:41:07.887Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:41:13.582Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:41:13.584Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:41:13.612Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:41:13.614Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:41:13.624Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:41:13.627Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:41:13.640Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:41:13.642Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:41:23.754Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:41:23.758Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:41:43.928Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:41:43.933Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:41:43.967Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:41:43.970Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:41:43.989Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:41:43.994Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:41:44.015Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:41:44.018Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:41:54.463Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:41:54.466Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:42:14.954Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:42:14.960Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:42:14.998Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:42:15.001Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:42:15.022Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:42:15.025Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:42:15.041Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:42:15.043Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:42:24.678Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:42:24.680Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:42:45.187Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:42:45.193Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:42:45.231Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:42:45.237Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:42:45.254Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:42:45.260Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:42:45.276Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:42:45.279Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:42:54.929Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:42:54.934Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:43:15.372Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:43:15.376Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:43:15.394Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:43:15.397Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:43:15.414Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:43:15.420Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:43:15.438Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:43:15.442Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:43:24.753Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:43:24.755Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T16:43:32.007Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T16:43:32.056Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:43:32.062Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:43:32.067Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:43:32.089Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:43:32.092Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:43:32.109Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:43:32.111Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:43:32.129Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:43:32.131Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:43:32.148Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:43:32.151Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:43:32.168Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:43:32.170Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:43:44.582Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:43:44.586Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:43:44.601Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:43:44.603Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:43:44.618Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:43:44.621Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:43:44.649Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:43:44.652Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:43:55.185Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:43:55.189Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:44:02.696Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:44:02.699Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:44:15.569Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:44:15.573Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:44:15.617Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:44:15.621Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:44:15.640Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:44:15.644Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:44:15.662Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:44:15.665Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:44:25.296Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:44:25.300Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:44:32.822Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:44:32.824Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:44:45.806Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:44:45.810Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:44:45.844Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:44:45.847Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:44:45.866Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:44:45.869Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:44:45.887Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:44:45.890Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:44:53.302Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:44:53.305Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:45:03.016Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:45:03.019Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:45:15.939Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:45:15.943Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:45:15.966Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:45:15.969Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:45:15.986Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:45:15.989Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:45:16.006Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:45:16.009Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:45:23.166Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:45:23.168Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:45:33.177Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:45:33.179Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:45:46.143Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:45:46.147Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:45:46.181Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:45:46.185Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:45:46.204Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:45:46.208Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:45:46.228Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:45:46.232Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:45:53.617Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:45:53.620Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:46:03.315Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:46:03.317Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:46:16.302Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:46:16.306Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:46:16.339Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:46:16.342Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:46:16.358Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:46:16.361Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:46:16.378Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:46:16.381Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:46:23.647Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:46:23.650Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:46:33.347Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:46:33.351Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:46:59.763Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:46:59.768Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:46:59.783Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:46:59.786Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:46:59.800Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:46:59.803Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:46:59.818Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:46:59.824Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:46:59.839Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:46:59.841Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:47:03.359Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:47:03.361Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:47:13.628Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:47:13.631Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:47:13.660Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:47:13.662Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:47:13.672Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:47:13.674Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:47:13.686Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:47:13.688Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:47:23.822Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:47:23.826Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:47:33.920Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:47:33.926Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T16:47:38.303Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:47:38.358Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T16:47:38.361Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:47:38.363Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:47:38.536Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:47:38.537Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:47:38.603Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:47:38.605Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:47:38.686Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:47:38.687Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:47:38.745Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:47:38.747Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:47:38.816Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:47:38.818Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:47:44.617Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:47:44.620Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:47:44.640Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:47:44.643Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:47:44.658Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:47:44.662Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:47:44.673Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:47:44.675Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:47:53.978Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:47:53.981Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:07.245Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:07.249Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:48:12.588Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:12.590Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:12.671Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:12.673Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:48:12.706Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:12.715Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T16:48:12.774Z"} +{"level":"info","message":"GET /api/tokens/balances?address=0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T16:48:12.780Z"} +{"level":"info","message":"Fetching token balances for address: 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b","timestamp":"2025-05-14T16:48:12.781Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:48:12.803Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:12.808Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:48:12.843Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:12.849Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T16:48:12.851Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:48:12.871Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:12.873Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:12.876Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:12.881Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:48:12.895Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:12.898Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:12.901Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:12.904Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:48:12.916Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:12.918Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:12.919Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:12.920Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:12.933Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:48:12.935Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:12.937Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:12.939Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:12.953Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:12.957Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:48:12.961Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:12.964Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:12.973Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:12.975Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:48:12.979Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:12.981Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:12.989Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:12.991Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:48:12.995Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:13.000Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:13.007Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:13.009Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:48:13.016Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:13.019Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:13.022Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:13.024Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:13.034Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:13.037Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:13.048Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:13.051Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:13.061Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:13.063Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:13.075Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:13.077Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:13.091Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:13.094Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:13.110Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:13.113Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:13.128Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:13.131Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:13.143Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:13.146Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:13.160Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:13.162Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:13.174Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:13.177Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:13.191Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:13.194Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:13.207Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:13.210Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:13.222Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:13.225Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:13.237Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:13.240Z"} +{"balance":"1500000.0","contract":"0xd95a45fc46a7300e6022885afec3d618d7d3f27c","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on ethereum:","timestamp":"2025-05-14T16:48:15.410Z"} +{"balance":"500000.0","contract":"0x4B294265720B09ca39BFBA18c7E368413c0f68eB","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on bsc:","timestamp":"2025-05-14T16:48:16.655Z"} +{"balance":"499999.9","contract":"0xdce769b847a0a697239777d0b1c7dd33b6012ba0","level":"info","message":"Token balance for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b on arbitrum:","timestamp":"2025-05-14T16:48:17.697Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T16:48:19.959Z"} +{"arbitrum":"499999.9","bsc":"500000.0","ethereum":"1500000.0","level":"info","message":"Token balances fetched for 0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b:","polygon":"0","timestamp":"2025-05-14T16:48:19.960Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T16:48:26.321Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T16:48:26.345Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:43.140Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:43.143Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:43.250Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:43.253Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:43.284Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:43.287Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:43.304Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:43.307Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:48:43.327Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:48:43.330Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:49:13.914Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:49:13.919Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:49:13.956Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:49:13.960Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:49:13.978Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:49:13.983Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:49:14.000Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:49:14.004Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:49:14.021Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:49:14.024Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T16:49:26.860Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T16:49:26.861Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:49:26.866Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:49:26.871Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:49:26.911Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:49:26.914Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:49:26.933Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:49:26.937Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:49:26.955Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:49:26.957Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:49:26.975Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:49:26.977Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:49:26.993Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:49:26.997Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:49:43.484Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:49:43.487Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:49:43.590Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:49:43.594Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:49:43.631Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:49:43.633Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:49:43.647Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:49:43.652Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:49:43.670Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:49:43.672Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:49:57.410Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:49:57.416Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:50:14.471Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:50:14.474Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:50:14.510Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:50:14.513Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:50:14.528Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:50:14.531Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:50:14.546Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:50:14.549Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:50:14.565Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:50:14.568Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:50:26.310Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:50:26.314Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:50:43.870Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:50:43.874Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:50:43.959Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:50:43.961Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:50:43.999Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:50:44.001Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:50:44.042Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:50:44.045Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:50:44.064Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:50:44.066Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T16:50:55.280Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T16:50:55.302Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:51:14.773Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:51:14.777Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:51:14.812Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:51:14.815Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:51:14.829Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:51:14.833Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:51:14.851Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:51:14.855Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:51:14.871Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:51:14.875Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:51:45.017Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:51:45.021Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:51:45.054Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:51:45.059Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:51:45.075Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:51:45.078Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:51:45.094Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:51:45.096Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:51:45.113Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:51:45.116Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:52:14.411Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:52:14.415Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:52:14.524Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:52:14.526Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:52:14.560Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:52:14.562Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:52:14.579Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:52:14.581Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:52:14.603Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:52:14.606Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:52:45.409Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:52:45.412Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:52:45.448Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:52:45.453Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:52:45.470Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:52:45.475Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:52:45.490Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:52:45.493Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:52:45.508Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:52:45.511Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T16:52:48.607Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T16:52:48.624Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:53:12.511Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:53:12.515Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:53:12.603Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:53:12.608Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:53:12.650Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:53:12.652Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:53:12.686Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:53:12.689Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:53:12.709Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:53:12.712Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T16:53:19.553Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T16:53:19.615Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:53:19.627Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:53:19.632Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:53:19.661Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:53:19.664Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:53:19.684Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:53:19.686Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:53:19.706Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:53:19.708Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:53:19.727Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:53:19.730Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:53:19.753Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:53:19.755Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:53:42.680Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:53:42.684Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:53:42.791Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:53:42.795Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:53:42.833Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:53:42.837Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:53:42.853Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:53:42.857Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:53:42.876Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:53:42.879Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:53:49.919Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:53:49.922Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:54:12.846Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:54:12.851Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:54:12.950Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:54:12.956Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:54:12.994Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:54:12.997Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:54:13.011Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:54:13.015Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:54:13.033Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:54:13.037Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T16:54:14.161Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T16:54:14.182Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:54:43.904Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:54:43.910Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:54:43.948Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:54:43.952Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:54:43.968Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:54:43.972Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:54:43.986Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:54:43.989Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:54:44.003Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:54:44.007Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:55:14.056Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:55:14.062Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:55:14.106Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:55:14.111Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:55:14.128Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:55:14.132Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:55:14.147Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:55:14.150Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:55:14.165Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:55:14.168Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:55:57.401Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:55:57.406Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:55:57.440Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:55:57.443Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:55:57.485Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:55:57.487Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:55:57.511Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:55:57.513Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:55:57.542Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:55:57.545Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:56:14.308Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:56:14.313Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:56:14.355Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:56:14.361Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:56:14.387Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:56:14.391Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:56:14.410Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:56:14.413Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:56:14.431Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:56:14.435Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:56:43.824Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:56:43.827Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:56:43.924Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:56:43.927Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:56:43.959Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:56:43.962Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:56:43.978Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:56:43.981Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:56:44.001Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:56:44.004Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:14.839Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:14.843Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:14.880Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:14.884Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:14.904Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:14.908Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:14.933Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:14.936Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:14.951Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:14.954Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:19.353Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.362Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:19.385Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.388Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:19.409Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.412Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:19.430Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.434Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:19.447Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.452Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:19.474Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.478Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:19.480Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.485Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:19.501Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.504Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:19.507Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.511Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:19.527Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.531Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:19.535Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.543Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:19.559Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.565Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:19.567Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.571Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:19.586Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:19.588Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.591Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.593Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:19.616Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.619Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:19.635Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.638Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:19.653Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.656Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:19.669Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.672Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:19.686Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.690Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:19.705Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.709Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:19.721Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.724Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:19.737Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.740Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:19.753Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:19.756Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-14T16:57:21.024Z"} +{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-14T16:57:21.061Z"} +{"count":24,"level":"info","limit":30,"message":"Returning message history for user 1","offset":0,"timestamp":"2025-05-14T16:57:21.066Z","total":24} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:28.173Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.176Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:28.196Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.199Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T16:57:28.225Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:28.273Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.278Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:28.282Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.287Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:28.296Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.299Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:28.312Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.315Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:28.323Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.325Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:28.335Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.340Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:28.348Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.351Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:28.367Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:28.373Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.375Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.376Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:28.401Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:28.404Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.406Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.407Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:28.427Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:28.429Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.431Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.439Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:28.467Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.472Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:28.488Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.491Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:28.512Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.516Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:28.532Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.537Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:28.553Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.556Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:28.569Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.574Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:28.586Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.589Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:28.604Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.607Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:28.620Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:28.623Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:32.744Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:32.747Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:32.785Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:32.788Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:32.796Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:32.799Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:32.810Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:32.813Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:32.818Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:32.822Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:32.831Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:32.835Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:32.842Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:32.845Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:32.858Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:32.862Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:32.868Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:32.872Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:32.883Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:32.886Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:32.893Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:32.897Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:32.908Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:32.915Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:32.920Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:32.923Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:32.937Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:32.941Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:32.943Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:32.944Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:32.960Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:32.962Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:32.976Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:32.981Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:32.996Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:33.000Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:33.013Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:33.016Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:33.030Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:33.033Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:33.047Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:33.050Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:33.066Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:33.068Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:33.082Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:33.085Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:33.098Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:33.100Z"} +{"level":"info","message":"GET /api/chat/history?count_only=true","timestamp":"2025-05-14T16:57:34.421Z"} +{"level":"info","message":"GET /api/chat/history?offset=0&limit=30","timestamp":"2025-05-14T16:57:34.464Z"} +{"count":24,"level":"info","limit":30,"message":"Returning message history for user 1","offset":0,"timestamp":"2025-05-14T16:57:34.474Z","total":24} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:44.167Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:44.170Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:46.606Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.609Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:46.647Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.650Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T16:57:46.673Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:46.704Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:46.706Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.708Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.712Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:46.732Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.736Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:46.743Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.747Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:46.759Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.763Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:46.773Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.781Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:46.788Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.792Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:46.803Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.807Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:46.816Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.819Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:46.834Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.839Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:46.846Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.850Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:57:46.861Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.865Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:46.872Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.877Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:46.898Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.901Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:46.918Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.921Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:46.937Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.943Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:46.959Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.963Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:46.980Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:46.984Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:47.004Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:47.007Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:47.026Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:47.029Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:47.047Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:47.050Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:57:47.064Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:57:47.067Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:13.241Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:13.244Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:16.202Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:16.205Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:16.222Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:16.225Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:16.241Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:16.244Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:16.265Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:16.268Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:44.524Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:44.527Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:44.940Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:44.942Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:44.981Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:44.983Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:45.023Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:45.025Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:45.057Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:45.060Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:49.302Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.304Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:49.346Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.349Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:49.373Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.377Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:49.393Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.399Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:49.402Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.410Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:49.426Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.431Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:49.441Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.451Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:49.456Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.460Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:49.472Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.474Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:49.484Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.489Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:49.498Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.503Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:49.508Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.512Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:49.525Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.532Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:49.538Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.541Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:49.557Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.560Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:49.574Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.577Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:49.592Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.595Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:49.608Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.613Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:49.643Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.645Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:49.667Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.670Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:49.688Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.691Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:49.710Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.716Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:49.732Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.736Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:49.748Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:49.750Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:54.005Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.008Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:54.033Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.035Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:54.045Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.051Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:54.070Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.073Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:54.076Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.081Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:54.093Z"} +{"level":"info","message":"GET /api/dle","timestamp":"2025-05-14T16:58:54.097Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.103Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:54.110Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.117Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:54.133Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:54.138Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.142Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.144Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:54.163Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.166Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:54.167Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.171Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:54.189Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:54.190Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.192Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.193Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:54.210Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.212Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:54.215Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.217Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:54.228Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.232Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:54.249Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.250Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:54.264Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.268Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:54.283Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.289Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:54.303Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.305Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:54.319Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.321Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:54.333Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.338Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:54.350Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.353Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:54.365Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:54.366Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:55.214Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.216Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:55.243Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.244Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:55.263Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.265Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:55.268Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.271Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:55.283Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.285Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:55.294Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.297Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:55.308Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.314Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:55.329Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.331Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:55.335Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.339Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:55.353Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.356Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:55.366Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.371Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:55.386Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.390Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:55.395Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.397Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:58:55.412Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.415Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:55.417Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.423Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:55.435Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.438Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:55.450Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.452Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:55.467Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.470Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:55.488Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.491Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:55.506Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.508Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:55.520Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.522Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:55.537Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.541Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:55.553Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.555Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:58:55.567Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:58:55.570Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:59:12.559Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:59:12.563Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T16:59:14.137Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T16:59:14.173Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:59:14.183Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:59:14.188Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:59:14.220Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:59:14.223Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T16:59:14.241Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:59:14.243Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:59:14.264Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:59:14.266Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:59:14.283Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:59:14.286Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:59:14.304Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:59:14.308Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:59:25.612Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:59:25.617Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:59:25.631Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:59:25.634Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:59:25.651Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:59:25.654Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:59:25.688Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:59:25.691Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:59:43.458Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:59:43.462Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:59:44.528Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:59:44.529Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:59:55.755Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:59:55.759Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:59:55.775Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:59:55.778Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:59:55.814Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:59:55.816Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T16:59:55.835Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T16:59:55.838Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T17:00:05.017Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T17:00:05.039Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:00:12.818Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:00:12.822Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:00:25.936Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:00:25.939Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:00:25.956Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:00:25.959Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:00:25.983Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:00:25.986Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:00:26.013Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:00:26.016Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:00:43.014Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:00:43.017Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:00:56.132Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:00:56.136Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:00:56.151Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:00:56.154Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:00:56.185Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:00:56.187Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:00:56.218Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:00:56.220Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T17:00:59.498Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T17:00:59.538Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T17:00:59.542Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:00:59.547Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:00:59.572Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:00:59.575Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T17:00:59.592Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:00:59.595Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:00:59.612Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:00:59.614Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:00:59.630Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:00:59.632Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:00:59.649Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:00:59.652Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:01:13.997Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:01:14.001Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:01:27.005Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:01:27.009Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:01:27.022Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:01:27.025Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:01:27.039Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:01:27.041Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:01:27.056Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:01:27.059Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:01:29.815Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:01:29.819Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:01:43.430Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:01:43.434Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:01:56.553Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:01:56.557Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:01:56.591Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:01:56.593Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:01:56.607Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:01:56.609Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:01:56.626Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:01:56.629Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:02:00.057Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:02:00.060Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:02:14.309Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:02:14.312Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:02:26.622Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:02:26.626Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:02:26.639Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:02:26.642Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:02:26.666Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:02:26.670Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:02:26.701Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:02:26.705Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:02:27.924Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:02:27.927Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:02:43.787Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:02:43.791Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:02:55.310Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:02:55.313Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:02:55.328Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:02:55.332Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:02:55.349Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:02:55.352Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:02:55.367Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:02:55.370Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:02:58.536Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:02:58.538Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:03:14.826Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:03:14.833Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:03:25.488Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:03:25.492Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:03:25.524Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:03:25.527Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:03:25.542Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:03:25.545Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:03:25.559Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:03:25.563Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:03:28.721Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:03:28.723Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:03:44.987Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:03:44.991Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:03:58.931Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:03:58.935Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:04:09.748Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:04:09.753Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:04:09.786Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:04:09.788Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:04:09.802Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:04:09.805Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:04:09.818Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:04:09.821Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:04:27.808Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:04:27.812Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:04:27.845Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:04:27.847Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:04:27.861Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:04:27.864Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:04:27.877Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:04:27.880Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:04:27.895Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:04:27.897Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:04:28.681Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:04:28.683Z"} +{"level":"info","message":"POST /api/settings/rpc","timestamp":"2025-05-14T17:04:38.692Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:04:44.534Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:04:44.536Z"} +{"level":"info","message":"POST /api/settings/rpc-test","timestamp":"2025-05-14T17:04:44.588Z"} +{"level":"info","message":"Тестирование RPC для bsc: https://bsc-dataseed1.binance.org","timestamp":"2025-05-14T17:04:44.589Z"} +{"level":"info","message":"Успешное тестирование RPC для bsc: https://bsc-dataseed1.binance.org, номер блока: 49665956","timestamp":"2025-05-14T17:04:46.691Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:04:56.035Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:04:56.040Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:04:56.077Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:04:56.079Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:04:56.094Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:04:56.096Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:04:56.110Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:04:56.113Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:04:59.274Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:04:59.276Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:05:13.218Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:05:13.221Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:05:26.223Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:05:26.228Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:05:26.267Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:05:26.270Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:05:26.288Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:05:26.291Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:05:26.311Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:05:26.313Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:05:29.452Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:05:29.454Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:05:45.526Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:05:45.531Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:05:54.623Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:05:54.629Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:05:54.646Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:05:54.648Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:05:54.677Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:05:54.680Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:05:54.711Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:05:54.714Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T17:05:57.076Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T17:05:57.115Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:06:12.729Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:06:12.733Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:06:25.858Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:06:25.862Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:06:25.880Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:06:25.882Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:06:25.910Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:06:25.912Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:06:25.944Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:06:25.947Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:06:43.815Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:06:43.819Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:06:56.827Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:06:56.832Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:06:56.849Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:06:56.853Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:06:56.871Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:06:56.878Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:06:56.896Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:06:56.900Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:07:13.988Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:07:13.991Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:07:26.306Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:07:26.309Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:07:26.326Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:07:26.328Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:07:26.358Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:07:26.360Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:07:26.384Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:07:26.387Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:07:43.350Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:07:43.353Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:07:56.474Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:07:56.479Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:07:56.494Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:07:56.497Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:07:56.524Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:07:56.527Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:07:56.559Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:07:56.562Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:08:14.378Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:08:14.381Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:08:27.384Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:08:27.388Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:08:27.417Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:08:27.420Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:08:27.438Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:08:27.441Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:08:27.458Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:08:27.460Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:08:44.575Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:08:44.578Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:08:55.250Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:08:55.253Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:08:55.287Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:08:55.290Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:08:55.305Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:08:55.308Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:08:55.326Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:08:55.329Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:09:13.933Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:09:13.938Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T17:09:23.364Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T17:09:23.375Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T17:09:23.380Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:09:23.385Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:09:23.482Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:09:23.485Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T17:09:23.527Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:09:23.530Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:09:23.572Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:09:23.574Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:09:23.619Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:09:23.622Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:09:23.665Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:09:23.668Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:09:24.718Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:09:24.720Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:09:24.965Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:09:24.967Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:09:25.081Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:09:25.083Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:09:25.173Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:09:25.175Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:09:44.094Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:09:44.097Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:09:53.873Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:09:53.877Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:09:54.932Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:09:54.935Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:09:54.966Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:09:54.969Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:09:55.002Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:09:55.005Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:09:55.038Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:09:55.040Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:10:14.309Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:10:14.312Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T17:10:18.476Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T17:10:18.519Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T17:10:20.490Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T17:10:20.536Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T17:10:20.542Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:10:20.546Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:10:20.575Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:10:20.577Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T17:10:20.598Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:10:20.600Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:10:20.619Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:10:20.621Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:10:20.635Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:10:20.637Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:10:20.650Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:10:20.652Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T17:10:21.948Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T17:10:21.965Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:10:25.818Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:10:25.821Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:10:25.855Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:10:25.858Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:10:25.871Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:10:25.874Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:10:25.889Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:10:25.892Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T17:10:39.044Z"} +{"level":"info","message":"GET /api/settings/auth-tokens","timestamp":"2025-05-14T17:10:39.058Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:10:45.285Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:10:45.289Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:10:55.320Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:10:55.324Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:10:55.342Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:10:55.344Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:10:55.362Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:10:55.365Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:10:55.405Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:10:55.407Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:11:14.687Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:11:14.691Z"} +{"level":"info","message":"GET /api/isic/codes?level=1","timestamp":"2025-05-14T17:11:17.727Z"} +{"level":"info","message":"GET /api/settings/rpc","timestamp":"2025-05-14T17:11:17.762Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T17:11:17.766Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:11:17.770Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:11:17.795Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:11:17.798Z"} +{"level":"info","message":"GET /api/auth/check","timestamp":"2025-05-14T17:11:17.814Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:11:17.817Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:11:17.834Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:11:17.836Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:11:17.853Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:11:17.857Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:11:17.875Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:11:17.877Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:11:25.430Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:11:25.432Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:11:25.456Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:11:25.459Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:11:25.499Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:11:25.501Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:11:25.529Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:11:25.534Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:11:43.793Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:11:43.796Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:11:48.810Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:11:48.813Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:11:56.395Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:11:56.398Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:11:56.412Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:11:56.416Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:11:56.430Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:11:56.433Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:11:56.447Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:11:56.450Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:12:13.578Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:12:13.583Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:12:18.979Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:12:18.982Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:12:26.561Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:12:26.563Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:12:26.583Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:12:26.585Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:12:26.602Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:12:26.605Z"} +{"level":"info","message":"GET /api/auth/identities","timestamp":"2025-05-14T17:12:26.621Z"} +{"level":"info","message":"[IdentityService] Found 1 identities for user 1","timestamp":"2025-05-14T17:12:26.623Z"} diff --git a/backend/logs/error.log b/backend/logs/error.log index 082a1d9..3b4e5bc 100644 --- a/backend/logs/error.log +++ b/backend/logs/error.log @@ -1,24 +1,84 @@ -{"level":"error","message":"Provider for arbitrum is not available: ","timestamp":"2025-05-06T15:18:44.320Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T15:18:46.202Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T15:23:24.784Z"} -{"level":"error","message":"Provider for arbitrum is not available: ","timestamp":"2025-05-06T16:39:15.891Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:39:17.824Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:48:50.487Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:53:25.301Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:53:25.491Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:53:27.539Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:53:28.910Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:55:59.199Z"} -{"level":"error","message":"Provider for arbitrum is not available: ","timestamp":"2025-05-06T16:55:59.573Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:55:59.753Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:56:02.002Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T16:56:03.323Z"} -{"details":{"error":{"code":400,"message":"Structured query parameters(amenity, street, city, county, state, postalcode, country) cannot be used together with 'q' parameter."}},"level":"error","message":"[Geocoding] Error proxying to Nominatim: Bad Request","query":{"addressdetails":"1","format":"jsonv2","limit":"1","postalcode":"357524","q":"357524"},"status":400,"timestamp":"2025-05-06T17:28:05.374Z"} -{"details":{"error":{"code":400,"message":"Structured query parameters(amenity, street, city, county, state, postalcode, country) cannot be used together with 'q' parameter."}},"level":"error","message":"[Geocoding] Error proxying to Nominatim: Bad Request","query":{"addressdetails":"1","format":"jsonv2","limit":"1","postalcode":"357524","q":"357524"},"status":400,"timestamp":"2025-05-06T17:28:27.207Z"} -{"details":{"error":{"code":400,"message":"Structured query parameters(amenity, street, city, county, state, postalcode, country) cannot be used together with 'q' parameter."}},"level":"error","message":"[Geocoding] Error proxying to Nominatim: Bad Request","query":{"addressdetails":"1","format":"jsonv2","limit":"1","postalcode":"357524","q":"357524"},"status":400,"timestamp":"2025-05-06T17:31:34.832Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T17:33:25.449Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T17:49:27.115Z"} -{"level":"error","message":"Provider for arbitrum is not available: ","timestamp":"2025-05-06T17:56:56.827Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T17:56:57.599Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T18:12:54.882Z"} -{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-06T18:14:06.867Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T10:39:33.237Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T10:42:46.419Z"} +{"code":"ENETUNREACH","errno":"ENETUNREACH","level":"error","message":"Error launching Telegram bot: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)","stack":"FetchError: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)\n at ClientRequest. (/app/node_modules/node-fetch/lib/index.js:1501:11)\n at ClientRequest.emit (node:events:524:28)\n at emitErrorEvent (node:_http_client:101:11)\n at TLSSocket.socketErrorListener (node:_http_client:504:5)\n at TLSSocket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)","timestamp":"2025-05-14T10:54:53.650Z","type":"system"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T10:55:32.362Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T11:14:55.953Z"} +{"level":"error","message":"Provider for bsc is not available: Network check timeout","timestamp":"2025-05-14T11:14:56.622Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T11:14:56.844Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T11:14:59.934Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T11:15:00.818Z"} +{"client":{"_connected":true,"_connecting":false,"_connectionCallback":null,"_connectionError":false,"_connectionTimeoutMillis":0,"_ended":false,"_ending":true,"_events":{},"_eventsCount":1,"_poolUseCount":16,"_queryable":false,"_types":{"_types":{"arrayParser":{},"builtins":{"ABSTIME":702,"ACLITEM":1033,"BIT":1560,"BOOL":16,"BPCHAR":1042,"BYTEA":17,"CHAR":18,"CID":29,"CIDR":650,"CIRCLE":718,"DATE":1082,"FLOAT4":700,"FLOAT8":701,"GTSVECTOR":3642,"INET":869,"INT2":21,"INT4":23,"INT8":20,"INTERVAL":1186,"JSON":114,"JSONB":3802,"MACADDR":829,"MACADDR8":774,"MONEY":790,"NUMERIC":1700,"OID":26,"PATH":602,"PG_DEPENDENCIES":3402,"PG_LSN":3220,"PG_NDISTINCT":3361,"PG_NODE_TREE":194,"POLYGON":604,"REFCURSOR":1790,"REGCLASS":2205,"REGCONFIG":3734,"REGDICTIONARY":3769,"REGNAMESPACE":4089,"REGOPER":2203,"REGOPERATOR":2204,"REGPROC":24,"REGPROCEDURE":2202,"REGROLE":4096,"REGTYPE":2206,"RELTIME":703,"SMGR":210,"TEXT":25,"TID":27,"TIME":1083,"TIMESTAMP":1114,"TIMESTAMPTZ":1184,"TIMETZ":1266,"TINTERVAL":704,"TSQUERY":3615,"TSVECTOR":3614,"TXID_SNAPSHOT":2970,"UUID":2950,"VARBIT":1562,"VARCHAR":1043,"XID":28,"XML":142}},"binary":{},"text":{}},"activeQuery":null,"binary":false,"connection":{"_connecting":true,"_emitMessage":false,"_ending":true,"_events":{"end":[null,null]},"_eventsCount":23,"_keepAlive":false,"_keepAliveInitialDelayMillis":0,"lastBuffer":false,"parsedStatements":{},"ssl":false,"stream":{"_closeAfterHandlingError":false,"_events":{"end":[null,null]},"_eventsCount":4,"_hadError":false,"_host":"postgres","_parent":null,"_pendingData":null,"_pendingEncoding":"","_readableState":{"awaitDrainWriters":null,"buffer":[],"bufferIndex":0,"highWaterMark":16384,"length":0,"pipes":[]},"_server":null,"_sockname":null,"_writableState":{"bufferedIndex":0,"corked":0,"highWaterMark":16384,"length":0,"pendingcb":0,"writelen":0},"allowHalfOpen":false,"connecting":false,"server":null}},"connectionParameters":{"binary":false,"client_encoding":"","connect_timeout":0,"database":"dapp_db","host":"postgres","idle_in_transaction_session_timeout":false,"isDomainSocket":false,"lock_timeout":false,"port":5432,"query_timeout":false,"ssl":false,"statement_timeout":false,"user":"dapp_user"},"database":"dapp_db","enableChannelBinding":false,"hasExecuted":true,"host":"postgres","port":5432,"processID":2655,"queryQueue":[],"readyForQuery":true,"saslSession":null,"secretKey":-818342883,"ssl":false,"user":"dapp_user"},"code":"57P01","file":"postgres.c","length":116,"level":"error","line":"3286","message":"Uncaught Exception: terminating connection due to administrator command","name":"error","routine":"ProcessInterrupts","severity":"FATAL","stack":"error: terminating connection due to administrator command\n at Parser.parseErrorMessage (/app/node_modules/pg-protocol/dist/parser.js:285:98)\n at Parser.handlePacket (/app/node_modules/pg-protocol/dist/parser.js:122:29)\n at Parser.parse (/app/node_modules/pg-protocol/dist/parser.js:35:38)\n at Socket. (/app/node_modules/pg-protocol/dist/index.js:11:42)\n at Socket.emit (node:events:524:28)\n at addChunk (node:internal/streams/readable:561:12)\n at readableAddChunkPushByteMode (node:internal/streams/readable:512:3)\n at Readable.push (node:internal/streams/readable:392:5)\n at TCP.onStreamRead (node:internal/stream_base_commons:191:23)","timestamp":"2025-05-14T11:23:19.941Z"} +{"code":"ENETUNREACH","errno":"ENETUNREACH","level":"error","message":"Error launching Telegram bot: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)","stack":"FetchError: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)\n at ClientRequest. (/app/node_modules/node-fetch/lib/index.js:1501:11)\n at ClientRequest.emit (node:events:524:28)\n at emitErrorEvent (node:_http_client:101:11)\n at TLSSocket.socketErrorListener (node:_http_client:504:5)\n at TLSSocket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)","timestamp":"2025-05-14T11:23:22.536Z","type":"system"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T11:26:06.159Z"} +{"level":"error","message":"Provider for arbitrum is not available: ","timestamp":"2025-05-14T12:01:50.442Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T12:01:52.662Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T12:05:39.795Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:25:55.874Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:28:16.815Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:36:38.463Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:38:04.378Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:39:20.415Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T12:41:30.276Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:42:42.602Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:48:07.952Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T12:48:15.082Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:51:39.423Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T12:51:42.860Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:52:00.295Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:52:14.000Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:52:22.427Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T12:52:26.321Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T12:54:54.794Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T13:04:05.566Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T13:04:14.999Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T13:04:18.050Z"} +{"level":"error","message":"Provider for polygon is not available: Network check timeout","timestamp":"2025-05-14T13:04:21.835Z"} +{"level":"error","message":"Provider for polygon is not available: Network check timeout","timestamp":"2025-05-14T13:04:22.146Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T13:04:35.983Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T13:08:05.296Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T13:10:42.640Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T13:10:47.299Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T13:11:16.040Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T13:11:16.868Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T13:11:16.641Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T13:11:18.257Z"} +{"code":"ENETUNREACH","errno":"ENETUNREACH","level":"error","message":"Error launching Telegram bot: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)","stack":"FetchError: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)\n at ClientRequest. (/app/node_modules/node-fetch/lib/index.js:1501:11)\n at ClientRequest.emit (node:events:524:28)\n at emitErrorEvent (node:_http_client:101:11)\n at TLSSocket.socketErrorListener (node:_http_client:504:5)\n at TLSSocket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)","timestamp":"2025-05-14T13:15:04.700Z","type":"system"} +{"code":"ENETUNREACH","errno":"ENETUNREACH","level":"error","message":"Error launching Telegram bot: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)","stack":"FetchError: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)\n at ClientRequest. (/app/node_modules/node-fetch/lib/index.js:1501:11)\n at ClientRequest.emit (node:events:524:28)\n at emitErrorEvent (node:_http_client:101:11)\n at TLSSocket.socketErrorListener (node:_http_client:504:5)\n at TLSSocket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)","timestamp":"2025-05-14T13:18:24.462Z","type":"system"} +{"level":"error","message":"Provider for arbitrum is not available: ","timestamp":"2025-05-14T13:33:15.669Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T13:33:17.730Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T13:44:07.394Z"} +{"level":"error","message":"Error: undefined","timestamp":"2025-05-14T13:49:41.048Z"} +{"level":"error","message":"Ошибка при тестировании RPC: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T13:49:50.503Z"} +{"level":"error","message":"Ошибка при тестировании RPC: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T13:50:06.112Z"} +{"level":"error","message":"Ошибка при тестировании RPC: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T13:50:30.955Z"} +{"level":"error","message":"Ошибка при тестировании RPC: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T13:53:46.383Z"} +{"level":"error","message":"Ошибка при тестировании RPC: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T13:57:28.360Z"} +{"level":"error","message":"Ошибка при тестировании RPC: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T13:58:44.702Z"} +{"level":"error","message":"Ошибка при тестировании RPC: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T13:59:17.095Z"} +{"level":"error","message":"Ошибка при тестировании RPC: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T13:59:21.213Z"} +{"level":"error","message":"Ошибка при тестировании RPC: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T13:59:25.871Z"} +{"level":"error","message":"Provider for arbitrum is not available: ","timestamp":"2025-05-14T14:02:28.435Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T14:02:30.581Z"} +{"code":"ENETUNREACH","errno":"ENETUNREACH","level":"error","message":"Error launching Telegram bot: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)","stack":"FetchError: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)\n at ClientRequest. (/app/node_modules/node-fetch/lib/index.js:1501:11)\n at ClientRequest.emit (node:events:524:28)\n at emitErrorEvent (node:_http_client:101:11)\n at TLSSocket.socketErrorListener (node:_http_client:504:5)\n at TLSSocket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)","timestamp":"2025-05-14T14:05:23.622Z","type":"system"} +{"level":"error","message":"Ошибка провайдера при тестировании RPC для bsc: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T14:06:27.685Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T14:06:38.528Z"} +{"level":"error","message":"Ошибка провайдера при тестировании RPC для polygon: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T14:08:07.053Z"} +{"level":"error","message":"Ошибка провайдера при тестировании RPC для sepolia: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T14:08:26.356Z"} +{"level":"error","message":"Provider for arbitrum is not available: ","timestamp":"2025-05-14T14:09:39.744Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T14:09:40.551Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T14:09:40.807Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T14:09:43.526Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T14:09:45.376Z"} +{"level":"error","message":"Ошибка провайдера при тестировании RPC для polygon: Cannot read properties of undefined (reading 'JsonRpcProvider')","timestamp":"2025-05-14T14:20:40.664Z"} +{"code":"ENETUNREACH","errno":"ENETUNREACH","level":"error","message":"Error launching Telegram bot: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)","stack":"FetchError: request to https://api.telegram.org/bot7498026249:[REDACTED]/getMe failed, reason: connect ENETUNREACH 2001:67c:4e8:f004::9:443 - Local (:::0)\n at ClientRequest. (/app/node_modules/node-fetch/lib/index.js:1501:11)\n at ClientRequest.emit (node:events:524:28)\n at emitErrorEvent (node:_http_client:101:11)\n at TLSSocket.socketErrorListener (node:_http_client:504:5)\n at TLSSocket.emit (node:events:524:28)\n at emitErrorNT (node:internal/streams/destroy:169:8)\n at emitErrorCloseNT (node:internal/streams/destroy:128:3)\n at process.processTicksAndRejections (node:internal/process/task_queues:82:21)","timestamp":"2025-05-14T14:20:46.082Z","type":"system"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T16:20:54.332Z"} +{"level":"error","message":"Provider for arbitrum is not available: ","timestamp":"2025-05-14T16:22:11.865Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T16:22:12.829Z"} +{"level":"error","message":"Provider for bsc is not available: getaddrinfo ENOTFOUND bsc-dataseed.binance.org","timestamp":"2025-05-14T16:29:20.026Z"} +{"level":"error","message":"Provider for arbitrum is not available: getaddrinfo ENOTFOUND arb1.arbitrum.io","timestamp":"2025-05-14T16:29:20.083Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T16:29:20.792Z"} +{"level":"error","message":"Provider for bsc is not available: getaddrinfo ENOTFOUND bsc-dataseed.binance.org","timestamp":"2025-05-14T16:29:22.427Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T16:29:22.582Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T16:29:26.403Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T16:29:28.187Z"} +{"level":"error","message":"Provider for polygon is not available: server response 404 Not Found (request={ }, response={ }, error=null, info={ \"requestUrl\": \"https://polygon-mainnet.nodereal.io/v1/56dec8028bae4f26b76099a42dae2b52\", \"responseBody\": \"\\r\\n404 Not Found\\r\\n\\r\\n

404 Not Found

\\r\\n
nginx
\\r\\n\\r\\n\\r\\n\", \"responseStatus\": \"404 Not Found\" }, code=SERVER_ERROR, version=6.13.7)","timestamp":"2025-05-14T16:48:19.959Z"} diff --git a/backend/middleware/auth.js b/backend/middleware/auth.js index bf8df57..950adef 100644 --- a/backend/middleware/auth.js +++ b/backend/middleware/auth.js @@ -195,9 +195,21 @@ async function checkRole(req, res, next) { } } +/** + * Проверка аутентификации - алиас для requireAuth + */ +const isAuthenticated = requireAuth; + +/** + * Проверка прав администратора - алиас для requireAdmin + */ +const isAdmin = requireAdmin; + module.exports = { requireAuth, requireAdmin, requireRole, checkRole, + isAuthenticated, + isAdmin }; diff --git a/backend/package.json b/backend/package.json index 2ccfd1e..bba6db8 100644 --- a/backend/package.json +++ b/backend/package.json @@ -26,7 +26,7 @@ "@langchain/community": "^0.3.34", "@langchain/core": "0.3.0", "@langchain/ollama": "^0.2.0", - "@openzeppelin/contracts": "^5.2.0", + "@openzeppelin/contracts": "5.2.0", "axios": "^1.8.4", "connect-pg-simple": "^10.0.0", "cookie": "^1.0.2", @@ -34,7 +34,7 @@ "cron": "^4.1.0", "csurf": "^1.11.0", "dotenv": "^16.0.3", - "ethers": "^6.13.5", + "ethers": "6.13.5", "express": "^4.21.2", "express-rate-limit": "^7.5.0", "express-session": "^1.17.3", @@ -63,7 +63,7 @@ "@nomicfoundation/hardhat-ignition": "^0.15.10", "@nomicfoundation/hardhat-ignition-ethers": "^0.15.0", "@nomicfoundation/hardhat-network-helpers": "^1.0.0", - "@nomicfoundation/hardhat-toolbox": "^5.0.0", + "@nomicfoundation/hardhat-toolbox": "5.0.0", "@nomicfoundation/hardhat-verify": "^2.0.0", "@nomicfoundation/ignition-core": "^0.15.10", "@typechain/ethers-v6": "^0.5.0", @@ -74,7 +74,7 @@ "eslint": "^9.21.0", "eslint-config-prettier": "^10.0.2", "globals": "^16.0.0", - "hardhat": "^2.22.19", + "hardhat": "2.22.19", "hardhat-gas-reporter": "^2.2.2", "nodemon": "^3.1.9", "prettier": "^3.5.3", diff --git a/backend/routes/dle.js b/backend/routes/dle.js new file mode 100644 index 0000000..37d39c0 --- /dev/null +++ b/backend/routes/dle.js @@ -0,0 +1,191 @@ +const express = require('express'); +const router = express.Router(); +const dleService = require('../services/dleService'); +const logger = require('../utils/logger'); +const auth = require('../middleware/auth'); +const path = require('path'); +const fs = require('fs'); + +/** + * @route POST /api/dle + * @desc Создать новое DLE (Digital Legal Entity) + * @access Private (только для авторизованных пользователей с ролью admin) + */ +router.post('/', auth.requireAuth, auth.requireAdmin, async (req, res) => { + try { + const dleParams = req.body; + logger.info('Получен запрос на создание DLE:', dleParams); + + // Если параметр partners не был передан явно, используем адрес авторизованного пользователя + if (!dleParams.partners || dleParams.partners.length === 0) { + // Проверяем, есть ли в сессии адрес кошелька пользователя + if (!req.user || !req.user.walletAddress) { + return res.status(400).json({ + success: false, + message: 'Не указан адрес кошелька пользователя или партнеров для распределения токенов' + }); + } + + // Используем адрес авторизованного пользователя + dleParams.partners = [req.user.address || req.user.walletAddress]; + + // Если суммы не указаны, используем значение по умолчанию (100% токенов) + if (!dleParams.amounts || dleParams.amounts.length === 0) { + dleParams.amounts = ['1000000']; + } + } + + const result = await dleService.createDLE(dleParams); + + res.status(201).json({ + success: true, + message: 'DLE успешно создано', + data: result + }); + } catch (error) { + logger.error('Ошибка при создании DLE:', error); + res.status(500).json({ + success: false, + message: error.message || 'Произошла ошибка при создании DLE', + error: process.env.NODE_ENV === 'development' ? error.stack : undefined + }); + } +}); + +/** + * @route GET /api/dle + * @desc Получить список всех DLE + * @access Private (только для авторизованных пользователей) + */ +router.get('/', auth.requireAuth, async (req, res) => { + try { + const dles = await dleService.getAllDLEs(); + res.json({ + success: true, + data: dles + }); + } catch (error) { + logger.error('Ошибка при получении списка DLE:', error); + res.status(500).json({ + success: false, + message: error.message || 'Произошла ошибка при получении списка DLE', + error: process.env.NODE_ENV === 'development' ? error.stack : undefined + }); + } +}); + +/** + * @route GET /api/dle/settings + * @desc Получить настройки для деплоя DLE по умолчанию + * @access Private (только для авторизованных пользователей) + */ +router.get('/settings', auth.requireAuth, (req, res) => { + // Возвращаем настройки по умолчанию, которые будут использоваться + // при заполнении формы на фронтенде + res.json({ + success: true, + data: { + votingDelay: 1, // 1 блок задержки перед началом голосования + votingPeriod: 45818, // ~1 неделя в блоках (при 13 секундах на блок) + proposalThreshold: '100000', // 100,000 токенов + quorumPercentage: 4, // 4% от общего количества токенов + minTimelockDelay: 2 // 2 дня + } + }); +}); + +/** + * @route DELETE /api/dle/:tokenAddress + * @desc Удалить DLE по адресу токена + * @access Private (только для авторизованных пользователей с ролью admin) + */ +router.delete('/:tokenAddress', auth.requireAuth, auth.requireAdmin, async (req, res) => { + try { + const { tokenAddress } = req.params; + logger.info(`Получен запрос на удаление DLE с адресом токена: ${tokenAddress}`); + + // Проверяем существование DLE в директории contracts-data/dles + const dlesDir = path.join(__dirname, '../contracts-data/dles'); + const files = fs.readdirSync(dlesDir); + + let fileToDelete = null; + + // Находим файл, содержащий указанный адрес токена + for (const file of files) { + const filePath = path.join(dlesDir, file); + if (fs.statSync(filePath).isFile() && file.endsWith('.json')) { + try { + const dleData = JSON.parse(fs.readFileSync(filePath, 'utf8')); + if (dleData.tokenAddress && dleData.tokenAddress.toLowerCase() === tokenAddress.toLowerCase()) { + fileToDelete = filePath; + break; + } + } catch (err) { + logger.error(`Ошибка при чтении файла ${file}:`, err); + } + } + } + + if (!fileToDelete) { + return res.status(404).json({ + success: false, + message: `DLE с адресом токена ${tokenAddress} не найдено` + }); + } + + // Удаляем файл + fs.unlinkSync(fileToDelete); + + res.json({ + success: true, + message: `DLE с адресом токена ${tokenAddress} успешно удалено` + }); + } catch (error) { + logger.error('Ошибка при удалении DLE:', error); + res.status(500).json({ + success: false, + message: error.message || 'Произошла ошибка при удалении DLE', + error: process.env.NODE_ENV === 'development' ? error.stack : undefined + }); + } +}); + +/** + * @route DELETE /api/dle/empty/:fileName + * @desc Удалить пустое DLE по имени файла + * @access Private (только для авторизованных пользователей с ролью admin) + */ +router.delete('/empty/:fileName', auth.requireAuth, auth.requireAdmin, async (req, res) => { + try { + const { fileName } = req.params; + logger.info(`Получен запрос на удаление пустого DLE с именем файла: ${fileName}`); + + // Проверяем существование файла в директории contracts-data/dles + const dlesDir = path.join(__dirname, '../contracts-data/dles'); + const filePath = path.join(dlesDir, fileName); + + if (!fs.existsSync(filePath)) { + return res.status(404).json({ + success: false, + message: `Файл ${fileName} не найден` + }); + } + + // Удаляем файл + fs.unlinkSync(filePath); + + res.json({ + success: true, + message: `Пустое DLE с именем файла ${fileName} успешно удалено` + }); + } catch (error) { + logger.error('Ошибка при удалении пустого DLE:', error); + res.status(500).json({ + success: false, + message: error.message || 'Произошла ошибка при удалении пустого DLE', + error: process.env.NODE_ENV === 'development' ? error.stack : undefined + }); + } +}); + +module.exports = router; \ No newline at end of file diff --git a/backend/routes/geocoding.js b/backend/routes/geocoding.js index ee179ed..1a06211 100644 --- a/backend/routes/geocoding.js +++ b/backend/routes/geocoding.js @@ -60,11 +60,11 @@ const nominatimUrl = `https://nominatim.openstreetmap.org/search?${queryParams.toString()}`; if (logger && typeof logger.info === 'function') { - logger.info(`[Geocoding] Proxying request to Nominatim: ${nominatimUrl}`); + logger.info(`[Geocoding] Proxying request to Nominatim: ${nominatimUrl}`); } else { console.log(`[Geocoding] Proxying request to Nominatim: ${nominatimUrl}`); } - + const nominatimResponse = await axios.get(nominatimUrl); res.json(nominatimResponse.data); diff --git a/backend/routes/settings.js b/backend/routes/settings.js new file mode 100644 index 0000000..d190e40 --- /dev/null +++ b/backend/routes/settings.js @@ -0,0 +1,162 @@ +const express = require('express'); +const router = express.Router(); +const { requireAdmin } = require('../middleware/auth'); +const logger = require('../utils/logger'); +const fs = require('fs'); +const path = require('path'); +const { ethers } = require('ethers'); + +// Логируем версию ethers для отладки +logger.info(`Ethers version: ${ethers.version || 'unknown'}`); + +// Путь к файлу с настройками +const RPC_CONFIG_PATH = path.join(__dirname, '../config/rpc-settings.json'); +const AUTH_TOKENS_PATH = path.join(__dirname, '../config/auth-tokens.json'); + +// Вспомогательная функция для чтения настроек из файла +const readSettingsFile = (filePath, defaultValue = []) => { + try { + if (fs.existsSync(filePath)) { + const data = fs.readFileSync(filePath, 'utf8'); + return JSON.parse(data); + } + return defaultValue; + } catch (error) { + logger.error(`Ошибка при чтении файла настроек ${filePath}:`, error); + return defaultValue; + } +}; + +// Вспомогательная функция для записи настроек в файл +const writeSettingsFile = async (filePath, data) => { + try { + // Создаем директорию, если не существует + const dirname = path.dirname(filePath); + if (!fs.existsSync(dirname)) { + fs.mkdirSync(dirname, { recursive: true }); + } + + await fs.promises.writeFile(filePath, JSON.stringify(data, null, 2), 'utf8'); + return true; + } catch (error) { + logger.error(`Ошибка при записи файла настроек ${filePath}:`, error); + return false; + } +}; + +// Получение RPC настроек +router.get('/rpc', requireAdmin, async (req, res) => { + try { + const rpcConfigs = readSettingsFile(RPC_CONFIG_PATH); + res.json({ success: true, data: rpcConfigs }); + } catch (error) { + logger.error('Ошибка при получении RPC настроек:', error); + res.status(500).json({ success: false, error: 'Ошибка сервера при получении настроек RPC' }); + } +}); + +// Сохранение RPC настроек +router.post('/rpc', requireAdmin, async (req, res) => { + try { + const { rpcConfigs } = req.body; + + if (!Array.isArray(rpcConfigs)) { + return res.status(400).json({ success: false, error: 'Неверный формат данных' }); + } + + const success = await writeSettingsFile(RPC_CONFIG_PATH, rpcConfigs); + + if (success) { + res.json({ success: true, message: 'RPC настройки успешно сохранены' }); + } else { + res.status(500).json({ success: false, error: 'Ошибка при сохранении RPC настроек' }); + } + } catch (error) { + logger.error('Ошибка при сохранении RPC настроек:', error); + res.status(500).json({ success: false, error: 'Ошибка сервера при сохранении настроек RPC' }); + } +}); + +// Получение токенов для аутентификации +router.get('/auth-tokens', requireAdmin, async (req, res) => { + try { + const authTokens = readSettingsFile(AUTH_TOKENS_PATH); + res.json({ success: true, data: authTokens }); + } catch (error) { + logger.error('Ошибка при получении токенов аутентификации:', error); + res.status(500).json({ success: false, error: 'Ошибка сервера при получении токенов аутентификации' }); + } +}); + +// Сохранение токенов для аутентификации +router.post('/auth-tokens', requireAdmin, async (req, res) => { + try { + const { authTokens } = req.body; + + if (!Array.isArray(authTokens)) { + return res.status(400).json({ success: false, error: 'Неверный формат данных' }); + } + + const success = await writeSettingsFile(AUTH_TOKENS_PATH, authTokens); + + if (success) { + res.json({ success: true, message: 'Токены аутентификации успешно сохранены' }); + } else { + res.status(500).json({ success: false, error: 'Ошибка при сохранении токенов аутентификации' }); + } + } catch (error) { + logger.error('Ошибка при сохранении токенов аутентификации:', error); + res.status(500).json({ success: false, error: 'Ошибка сервера при сохранении токенов аутентификации' }); + } +}); + +// Тестирование RPC соединения +router.post('/rpc-test', requireAdmin, async (req, res) => { + try { + const { rpcUrl, networkId } = req.body; + + if (!rpcUrl || !networkId) { + return res.status(400).json({ success: false, error: 'Необходимо указать URL и ID сети' }); + } + + logger.info(`Тестирование RPC для ${networkId}: ${rpcUrl}`); + + try { + // Пробуем создать провайдера и получить номер последнего блока (обновлено для ethers v6) + const provider = new ethers.JsonRpcProvider(rpcUrl); + + // Устанавливаем таймаут для соединения + const timeoutPromise = new Promise((_, reject) => + setTimeout(() => reject(new Error('Таймаут соединения')), 10000) + ); + + // Пробуем получить номер последнего блока с таймаутом + const blockNumber = await Promise.race([ + provider.getBlockNumber(), + timeoutPromise + ]); + + logger.info(`Успешное тестирование RPC для ${networkId}: ${rpcUrl}, номер блока: ${blockNumber}`); + + res.json({ + success: true, + message: `Успешное соединение с ${networkId}`, + blockNumber + }); + } catch (providerError) { + logger.error(`Ошибка провайдера при тестировании RPC для ${networkId}: ${providerError.message}`); + res.status(500).json({ + success: false, + error: providerError.message || 'Не удалось подключиться к RPC провайдеру' + }); + } + } catch (error) { + logger.error(`Неожиданная ошибка при тестировании RPC: ${error.message}`); + res.status(500).json({ + success: false, + error: error.message || 'Неизвестная ошибка сервера' + }); + } +}); + +module.exports = router; \ No newline at end of file diff --git a/backend/scripts/deploy/create-dle-manual.js b/backend/scripts/deploy/create-dle-manual.js new file mode 100644 index 0000000..d44b661 --- /dev/null +++ b/backend/scripts/deploy/create-dle-manual.js @@ -0,0 +1,204 @@ +// Скрипт для ручного создания DLE без использования фабрики +const { ethers } = require("hardhat"); +const fs = require("fs"); +const path = require("path"); + +async function main() { + // Получаем параметры деплоя из файла или аргументов + const deployParams = getDeployParams(); + + console.log("Начинаем создание нового DLE вручную (без фабрики)..."); + console.log("Параметры DLE:"); + console.log(JSON.stringify(deployParams, null, 2)); + + // Получаем аккаунт деплоя + const [deployer] = await ethers.getSigners(); + console.log(`Адрес деплоера: ${deployer.address}`); + console.log(`Баланс деплоера: ${ethers.formatEther(await deployer.provider.getBalance(deployer.address))} ETH`); + + try { + // 1. Создаем токен управления + console.log("\n1. Деплой токена управления..."); + const GovernanceToken = await ethers.getContractFactory("GovernanceToken"); + const token = await GovernanceToken.deploy( + deployParams.name, + deployParams.symbol, + deployer.address // адрес управляющего минтом + ); + await token.waitForDeployment(); + const tokenAddress = await token.getAddress(); + console.log(`Токен задеплоен по адресу: ${tokenAddress}`); + + // 2. Создаем Timelock контракт + console.log("\n2. Деплой Timelock контракта..."); + + // Создаем временные пустые массивы + const proposers = [deployer.address]; // Временно даем права деплоеру + const executors = [ethers.ZeroAddress]; // Адрес 0 означает, что любой может выполнять + + // Минимальная задержка в секундах + const minDelayInSeconds = deployParams.minTimelockDelay * 24 * 60 * 60; // Перевод дней в секунды + + const GovernanceTimelock = await ethers.getContractFactory("GovernanceTimelock"); + const timelock = await GovernanceTimelock.deploy( + minDelayInSeconds, + proposers, + executors, + deployer.address // admin + ); + await timelock.waitForDeployment(); + const timelockAddress = await timelock.getAddress(); + console.log(`Timelock задеплоен по адресу: ${timelockAddress}`); + + // 3. Создаем Governor контракт + console.log("\n3. Деплой Governor контракта..."); + const GovernorContract = await ethers.getContractFactory("GovernorContract"); + const governor = await GovernorContract.deploy( + `${deployParams.name} Governor`, + token, + timelock, + deployParams.votingDelay, + deployParams.votingPeriod, + deployParams.proposalThreshold, + deployParams.quorumPercentage + ); + await governor.waitForDeployment(); + const governorAddress = await governor.getAddress(); + console.log(`Governor задеплоен по адресу: ${governorAddress}`); + + // 4. Настраиваем разрешения Timelock + console.log("\n4. Настройка разрешений Timelock..."); + + // Отменяем временные предложения + const tx1 = await timelock.revokeRole(await timelock.PROPOSER_ROLE(), deployer.address); + await tx1.wait(); + console.log(`Отозвана роль PROPOSER у деплоера`); + + // Устанавливаем Governor как единственного proposer + const tx2 = await timelock.grantRole(await timelock.PROPOSER_ROLE(), governorAddress); + await tx2.wait(); + console.log(`Назначена роль PROPOSER контракту Governor`); + + // Отказываемся от роли администратора для Timelock + const adminRole = await timelock.DEFAULT_ADMIN_ROLE(); + const tx3 = await timelock.revokeRole(adminRole, deployer.address); + await tx3.wait(); + console.log(`Отозвана роль ADMIN у деплоера`); + + // 5. Распределяем начальные токены + console.log("\n5. Распределение начальных токенов..."); + const mintTx = await token.mintInitialSupply(deployParams.partners, deployParams.amounts); + await mintTx.wait(); + console.log(`Токены распределены между партнерами`); + + // 6. Сохраняем информацию о созданных контрактах + console.log("\n6. Сохранение информации о DLE..."); + const dleData = { + name: deployParams.name, + symbol: deployParams.symbol, + location: deployParams.location, + isicCodes: deployParams.isicCodes, + tokenAddress, + timelockAddress, + governorAddress, + creationBlock: (await mintTx.provider.getBlockNumber()), + creationTimestamp: (await mintTx.provider.getBlock()).timestamp, + deployedManually: true + }; + + const saveResult = saveDLEData(dleData); + + console.log("\nDLE успешно создано вручную!"); + console.log(`Адрес токена: ${tokenAddress}`); + console.log(`Адрес таймлока: ${timelockAddress}`); + console.log(`Адрес контракта Governor: ${governorAddress}`); + + if (!saveResult) { + console.warn("\nВНИМАНИЕ: Не удалось сохранить информацию о DLE в файл!"); + console.warn("Убедитесь, что директория contracts-data/dles существует и доступна для записи."); + console.warn("Данные контрактов доступны выше в логах."); + } + + return dleData; + } catch (error) { + console.error("Ошибка при создании DLE вручную:", error); + throw error; + } +} + +// Получаем параметры деплоя из JSON-файла (переданного как аргумент) +function getDeployParams() { + const defaultParamsPath = path.join(__dirname, 'current-params.json'); + + if (fs.existsSync(defaultParamsPath)) { + console.log(`Загрузка параметров из файла: ${defaultParamsPath}`); + return JSON.parse(fs.readFileSync(defaultParamsPath, "utf8")); + } + + // Используем параметры по умолчанию, если файл не найден + console.log("Используются параметры по умолчанию"); + return { + name: "Manual DLE", + symbol: "MDLE", + location: "Test Location", + isicCodes: ["A01", "B02"], + partners: [ + "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "0x70997970C51812dc3A010C7d01b50e0d17dc79C8" + ], + amounts: [ + ethers.parseEther("1000000"), + ethers.parseEther("500000") + ], + minTimelockDelay: 2, + votingDelay: 1, + votingPeriod: 45818, + proposalThreshold: ethers.parseEther("100000"), + quorumPercentage: 4 + }; +} + +// Сохраняем информацию о созданном DLE +function saveDLEData(dleData) { + const dlesDir = path.join(__dirname, "../../contracts-data/dles"); + + // Проверяем существование директории и создаем при необходимости + try { + if (!fs.existsSync(dlesDir)) { + console.log(`Директория ${dlesDir} не существует, создаю...`); + fs.mkdirSync(dlesDir, { recursive: true }); + console.log(`Директория ${dlesDir} успешно создана`); + } + + // Проверяем права на запись, создавая временный файл + const testFile = path.join(dlesDir, '.write-test'); + fs.writeFileSync(testFile, 'test'); + fs.unlinkSync(testFile); + console.log(`Директория ${dlesDir} доступна для записи`); + + const fileName = `${dleData.name.replace(/\s+/g, '-')}-${Date.now()}.json`; + const filePath = path.join(dlesDir, fileName); + fs.writeFileSync(filePath, JSON.stringify(dleData, null, 2)); + + console.log(`Информация о DLE сохранена в файл: ${fileName}`); + return true; + } catch (error) { + console.error(`Ошибка при сохранении информации о DLE: ${error.message}`); + console.error(`Убедитесь, что директория ${dlesDir} существует и доступна для записи`); + console.error(`Для исправления в Docker-контейнере выполните: docker exec -it [container_id] /bin/sh -c "mkdir -p /app/contracts-data/dles && chown -R node:node /app/contracts-data"`); + return false; + } +} + +// Если скрипт выполняется напрямую +if (require.main === module) { + main() + .then(() => process.exit(0)) + .catch((error) => { + console.error(error); + process.exit(1); + }); +} else { + // Если скрипт импортируется как модуль + module.exports = main; +} \ No newline at end of file diff --git a/backend/scripts/deploy/current-params.json b/backend/scripts/deploy/current-params.json new file mode 100644 index 0000000..f69548f --- /dev/null +++ b/backend/scripts/deploy/current-params.json @@ -0,0 +1,19 @@ +{ + "name": "test2", + "symbol": "test2", + "location": "245000, 中国, 黄山市", + "isicCodes": [ + "6810" + ], + "partners": [ + "0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b" + ], + "amounts": [ + "110000000000000000000" + ], + "minTimelockDelay": 1, + "votingDelay": 0, + "votingPeriod": 6646, + "proposalThreshold": "1", + "quorumPercentage": 51 +} \ No newline at end of file diff --git a/backend/scripts/deploy/deploy-dle.js b/backend/scripts/deploy/deploy-dle.js new file mode 100644 index 0000000..b3cf516 --- /dev/null +++ b/backend/scripts/deploy/deploy-dle.js @@ -0,0 +1,59 @@ +// Скрипт для деплоя DLE (Digital Legal Entity) контрактов +const { ethers, artifacts } = require("hardhat"); +const fs = require("fs"); +const path = require("path"); + +async function main() { + console.log("Начинаем деплой DLE контрактов..."); + + // Получаем аккаунт деплоя + const [deployer] = await ethers.getSigners(); + console.log(`Адрес деплоера: ${deployer.address}`); + console.log(`Баланс деплоера: ${await ethers.formatEther(await deployer.provider.getBalance(deployer.address))} ETH`); + + // Получаем фабрику контрактов + console.log("Деплоим DLEFactory..."); + const DLEFactory = await ethers.getContractFactory("DLEFactory"); + const dleFactory = await DLEFactory.deploy(deployer.address); + await dleFactory.waitForDeployment(); + const dleFactoryAddress = await dleFactory.getAddress(); + console.log(`DLEFactory задеплоен по адресу: ${dleFactoryAddress}`); + + // Сохраняем адреса контрактов + saveContractData("DLEFactory", dleFactoryAddress, await getAbi("DLEFactory")); + + console.log("Деплой завершен!"); +} + +// Сохраняем адреса контрактов и ABI для фронтенда +function saveContractData(name, address, abi) { + const contractsDir = path.join(__dirname, "../..", "contracts-data"); + + if (!fs.existsSync(contractsDir)) { + fs.mkdirSync(contractsDir, { recursive: true }); + } + + fs.writeFileSync( + path.join(contractsDir, `${name}-address.json`), + JSON.stringify({ address }, null, 2) + ); + + fs.writeFileSync( + path.join(contractsDir, `${name}-abi.json`), + JSON.stringify(abi, null, 2) + ); +} + +// Получаем ABI контракта +async function getAbi(contractName) { + const artifact = await artifacts.readArtifact(contractName); + return artifact.abi; +} + +// Запускаем скрипт деплоя +main() + .then(() => process.exit(0)) + .catch((error) => { + console.error(error); + process.exit(1); + }); \ No newline at end of file diff --git a/backend/services/auth-service.js b/backend/services/auth-service.js index 9eb2ea5..e966683 100644 --- a/backend/services/auth-service.js +++ b/backend/services/auth-service.js @@ -7,7 +7,7 @@ const verificationService = require('./verification-service'); // Использ const identityService = require('./identity-service'); // <-- ДОБАВЛЕН ИМПОРТ const ADMIN_CONTRACTS = [ - { address: '0xd95a45fc46a7300e6022885afec3d618d7d3f27c', network: 'eth' }, + { address: '0xd95a45fc46a7300e6022885afec3d618d7d3f27c', network: 'ethereum' }, { address: '0x4B294265720B09ca39BFBA18c7E368413c0f68eB', network: 'bsc' }, { address: '0xdce769b847a0a697239777d0b1c7dd33b6012ba0', network: 'arbitrum' }, { address: '0x351f59de4fedbdf7601f5592b93db3b9330c1c1d', network: 'polygon' }, @@ -17,8 +17,9 @@ const ERC20_ABI = ['function balanceOf(address owner) view returns (uint256)']; class AuthService { constructor() { + // Используем существующие переменные окружения с префиксом RPC_URL_ this.providers = { - eth: new ethers.JsonRpcProvider(process.env.RPC_URL_ETH), + ethereum: new ethers.JsonRpcProvider(process.env.RPC_URL_ETH), // Используем RPC_URL_ETH для ethereum polygon: new ethers.JsonRpcProvider(process.env.RPC_URL_POLYGON), bsc: new ethers.JsonRpcProvider(process.env.RPC_URL_BSC), arbitrum: new ethers.JsonRpcProvider(process.env.RPC_URL_ARBITRUM), @@ -233,7 +234,7 @@ class AuthService { if (!address) { logger.error('No address provided for getTokenBalances'); return { - eth: '0', + ethereum: '0', bsc: '0', arbitrum: '0', polygon: '0', diff --git a/backend/services/dleService.js b/backend/services/dleService.js new file mode 100644 index 0000000..44d0213 --- /dev/null +++ b/backend/services/dleService.js @@ -0,0 +1,252 @@ +const { spawn } = require('child_process'); +const path = require('path'); +const fs = require('fs'); +const { ethers } = require('ethers'); +const logger = require('../utils/logger'); + +/** + * Сервис для управления DLE (Digital Legal Entity) + */ +class DLEService { + /** + * Создает новое DLE с заданными параметрами + * @param {Object} dleParams - Параметры DLE + * @returns {Promise} - Результат создания DLE + */ + async createDLE(dleParams) { + try { + logger.info('Начало создания DLE с параметрами:', dleParams); + + // Валидация входных данных + this.validateDLEParams(dleParams); + + // Подготовка параметров для деплоя + const deployParams = this.prepareDeployParams(dleParams); + + // Сохраняем параметры во временный файл + const paramsFile = this.saveParamsToFile(deployParams); + + // Копируем параметры во временный файл с предсказуемым именем + const tempParamsFile = path.join(__dirname, '../scripts/deploy/current-params.json'); + logger.info(`Копирование параметров из ${paramsFile} в ${tempParamsFile}`); + const deployDir = path.dirname(tempParamsFile); + if (!fs.existsSync(deployDir)) { + fs.mkdirSync(deployDir, { recursive: true }); + } + fs.copyFileSync(paramsFile, tempParamsFile); + logger.info(`Файл параметров скопирован успешно`); + + // Запускаем скрипт без передачи аргументов командной строки + const result = await this.runDeployScript(paramsFile); + + logger.info('DLE успешно создано:', result); + return result; + } catch (error) { + logger.error('Ошибка при создании DLE:', error); + throw error; + } + } + + /** + * Валидирует параметры DLE + * @param {Object} params - Параметры DLE + */ + validateDLEParams(params) { + const requiredFields = [ + 'name', 'symbol', 'location', 'isicCodes', + 'partners', 'amounts', 'minTimelockDelay', + 'votingDelay', 'votingPeriod', 'proposalThreshold', 'quorumPercentage' + ]; + + for (const field of requiredFields) { + if (params[field] === undefined) { + throw new Error(`Отсутствует обязательный параметр: ${field}`); + } + } + + if (params.partners.length !== params.amounts.length) { + throw new Error('Количество партнеров должно соответствовать количеству сумм распределения'); + } + + if (params.partners.length === 0) { + throw new Error('Должен быть указан хотя бы один партнер'); + } + + if (params.quorumPercentage > 100) { + throw new Error('Процент кворума не может превышать 100%'); + } + } + + /** + * Подготавливает параметры для деплоя + * @param {Object} params - Параметры DLE + * @returns {Object} - Подготовленные параметры + */ + prepareDeployParams(params) { + // Создаем копию объекта, чтобы не изменять исходный + const deployParams = { ...params }; + + // Преобразуем суммы из строк или чисел в BigNumber, если нужно + deployParams.amounts = params.amounts.map(amount => { + if (typeof amount === 'string' && !amount.startsWith('0x')) { + return ethers.parseEther(amount).toString(); + } + return amount.toString(); + }); + + // Преобразуем proposalThreshold в BigNumber, если нужно + if (typeof deployParams.proposalThreshold === 'string' && !deployParams.proposalThreshold.startsWith('0x')) { + deployParams.proposalThreshold = ethers.parseEther(deployParams.proposalThreshold).toString(); + } else { + deployParams.proposalThreshold = deployParams.proposalThreshold.toString(); + } + + return deployParams; + } + + /** + * Сохраняет параметры деплоя во временный файл + * @param {Object} params - Параметры деплоя + * @returns {string} - Путь к файлу с параметрами + */ + saveParamsToFile(params) { + const tempDir = path.join(__dirname, '../temp'); + + if (!fs.existsSync(tempDir)) { + fs.mkdirSync(tempDir, { recursive: true }); + } + + const fileName = `dle-params-${Date.now()}.json`; + const filePath = path.join(tempDir, fileName); + + fs.writeFileSync(filePath, JSON.stringify(params, null, 2)); + + return filePath; + } + + /** + * Запускает скрипт деплоя DLE + * @param {string} paramsFile - Путь к файлу с параметрами + * @returns {Promise} - Результат деплоя + */ + runDeployScript(paramsFile) { + return new Promise((resolve, reject) => { + // Путь к новому скрипту для ручного деплоя (без фабрики) + const scriptPath = path.join(__dirname, '../scripts/deploy/create-dle-manual.js'); + + // Проверяем, существует ли скрипт + if (!fs.existsSync(scriptPath)) { + reject(new Error('Скрипт деплоя не найден: ' + scriptPath)); + return; + } + + // Запускаем скрипт без передачи аргументов командной строки + const hardhatProcess = spawn('npx', ['hardhat', 'run', scriptPath, '--network', 'sepolia'], { + cwd: path.join(__dirname, '..'), + env: { ...process.env }, + stdio: 'pipe' + }); + + let stdout = ''; + let stderr = ''; + + hardhatProcess.stdout.on('data', (data) => { + const output = data.toString(); + stdout += output; + logger.debug(`[Hardhat] ${output}`); + }); + + hardhatProcess.stderr.on('data', (data) => { + const output = data.toString(); + stderr += output; + logger.error(`[Hardhat Error] ${output}`); + }); + + hardhatProcess.on('close', (code) => { + if (code !== 0) { + logger.error(`Скрипт деплоя завершился с кодом: ${code}`); + reject(new Error(`Ошибка деплоя: ${stderr}`)); + return; + } + + // Пытаемся извлечь адреса контрактов из вывода + try { + const tokenAddressMatch = stdout.match(/Адрес токена: (0x[a-fA-F0-9]{40})/); + const timelockAddressMatch = stdout.match(/Адрес таймлока: (0x[a-fA-F0-9]{40})/); + const governorAddressMatch = stdout.match(/Адрес контракта Governor: (0x[a-fA-F0-9]{40})/); + + if (tokenAddressMatch && timelockAddressMatch && governorAddressMatch) { + resolve({ + tokenAddress: tokenAddressMatch[1], + timelockAddress: timelockAddressMatch[1], + governorAddress: governorAddressMatch[1], + success: true + }); + } else { + // Если не удалось извлечь адреса, ищем файл с результатами + const dlesDir = path.join(__dirname, '../contracts-data/dles'); + if (fs.existsSync(dlesDir)) { + const files = fs.readdirSync(dlesDir); + if (files.length > 0) { + // Берем самый свежий файл + const latestFile = files + .map(f => ({ name: f, time: fs.statSync(path.join(dlesDir, f)).mtime.getTime() })) + .sort((a, b) => b.time - a.time)[0].name; + + const dleData = JSON.parse(fs.readFileSync(path.join(dlesDir, latestFile), 'utf8')); + resolve({ + ...dleData, + success: true + }); + } else { + reject(new Error('Не удалось найти информацию о созданном DLE')); + } + } else { + reject(new Error('Не удалось найти директорию с результатами создания DLE')); + } + } + } catch (error) { + logger.error('Ошибка при извлечении результатов деплоя:', error); + reject(error); + } + }); + }); + } + + /** + * Получает список всех созданных DLE + * @returns {Array} - Список DLE + */ + getAllDLEs() { + try { + const dlesDir = path.join(__dirname, '../contracts-data/dles'); + + if (!fs.existsSync(dlesDir)) { + return []; + } + + const files = fs.readdirSync(dlesDir); + return files + .filter(file => file.endsWith('.json') && file !== 'test.json' && file !== 'node-test.json') + .map(file => { + try { + const data = JSON.parse(fs.readFileSync(path.join(dlesDir, file), 'utf8')); + // Добавляем имя файла к данным DLE для возможности удаления пустых DLE + return { ...data, _fileName: file }; + } catch (error) { + logger.error(`Ошибка при чтении файла ${file}:`, error); + // Для поврежденных файлов возвращаем минимальную информацию + return { + _fileName: file, + _corrupted: true + }; + } + }); + } catch (error) { + logger.error('Ошибка при получении списка DLE:', error); + throw error; + } + } +} + +module.exports = new DLEService(); \ No newline at end of file diff --git a/backend/temp/dle-params-1747214293808.json b/backend/temp/dle-params-1747214293808.json new file mode 100644 index 0000000..6a4ecf5 --- /dev/null +++ b/backend/temp/dle-params-1747214293808.json @@ -0,0 +1,17 @@ +{ + "name": "test0", + "symbol": "0test", + "location": "83504, México", + "isicCodes": [], + "partners": [ + "0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b" + ], + "amounts": [ + "10000000000000000000" + ], + "minTimelockDelay": 1, + "votingDelay": 0, + "votingPeriod": 6646, + "proposalThreshold": "1", + "quorumPercentage": 51 +} \ No newline at end of file diff --git a/backend/temp/dle-params-1747215258506.json b/backend/temp/dle-params-1747215258506.json new file mode 100644 index 0000000..6fab1b4 --- /dev/null +++ b/backend/temp/dle-params-1747215258506.json @@ -0,0 +1,19 @@ +{ + "name": "test1", + "symbol": "test1", + "location": "245200, România, Băile Govora", + "isicCodes": [ + "5510" + ], + "partners": [ + "0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b" + ], + "amounts": [ + "100000000000000000000" + ], + "minTimelockDelay": 1, + "votingDelay": 0, + "votingPeriod": 6646, + "proposalThreshold": "1", + "quorumPercentage": 51 +} \ No newline at end of file diff --git a/backend/temp/dle-params-1747215269647.json b/backend/temp/dle-params-1747215269647.json new file mode 100644 index 0000000..6fab1b4 --- /dev/null +++ b/backend/temp/dle-params-1747215269647.json @@ -0,0 +1,19 @@ +{ + "name": "test1", + "symbol": "test1", + "location": "245200, România, Băile Govora", + "isicCodes": [ + "5510" + ], + "partners": [ + "0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b" + ], + "amounts": [ + "100000000000000000000" + ], + "minTimelockDelay": 1, + "votingDelay": 0, + "votingPeriod": 6646, + "proposalThreshold": "1", + "quorumPercentage": 51 +} \ No newline at end of file diff --git a/backend/temp/dle-params-1747215331173.json b/backend/temp/dle-params-1747215331173.json new file mode 100644 index 0000000..6fab1b4 --- /dev/null +++ b/backend/temp/dle-params-1747215331173.json @@ -0,0 +1,19 @@ +{ + "name": "test1", + "symbol": "test1", + "location": "245200, România, Băile Govora", + "isicCodes": [ + "5510" + ], + "partners": [ + "0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b" + ], + "amounts": [ + "100000000000000000000" + ], + "minTimelockDelay": 1, + "votingDelay": 0, + "votingPeriod": 6646, + "proposalThreshold": "1", + "quorumPercentage": 51 +} \ No newline at end of file diff --git a/backend/temp/dle-params-1747216992334.json b/backend/temp/dle-params-1747216992334.json new file mode 100644 index 0000000..f69548f --- /dev/null +++ b/backend/temp/dle-params-1747216992334.json @@ -0,0 +1,19 @@ +{ + "name": "test2", + "symbol": "test2", + "location": "245000, 中国, 黄山市", + "isicCodes": [ + "6810" + ], + "partners": [ + "0xf45aa4917b3775ba37f48aeb3dc1a943561e9e0b" + ], + "amounts": [ + "110000000000000000000" + ], + "minTimelockDelay": 1, + "votingDelay": 0, + "votingPeriod": 6646, + "proposalThreshold": "1", + "quorumPercentage": 51 +} \ No newline at end of file diff --git a/backend/yarn.lock b/backend/yarn.lock index 61f1110..546fb98 100644 --- a/backend/yarn.lock +++ b/backend/yarn.lock @@ -143,11 +143,6 @@ resolved "https://registry.yarnpkg.com/@ethereumjs/rlp/-/rlp-4.0.1.tgz#626fabfd9081baab3d0a3074b0c7ecaf674aaa41" integrity sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw== -"@ethereumjs/rlp@^5.0.2": - version "5.0.2" - resolved "https://registry.yarnpkg.com/@ethereumjs/rlp/-/rlp-5.0.2.tgz#c89bd82f2f3bec248ab2d517ae25f5bbc4aac842" - integrity sha512-DziebCdg4JpGlEqEdGgXmjqcFoJi+JGulUXwEjsZGAscAQ7MyD/7LE/GVCP29vEQxKc7AAwjT3A2ywHp2xfoCA== - "@ethereumjs/util@^8.1.0": version "8.1.0" resolved "https://registry.yarnpkg.com/@ethereumjs/util/-/util-8.1.0.tgz#299df97fb6b034e0577ce9f94c7d9d1004409ed4" @@ -157,14 +152,6 @@ ethereum-cryptography "^2.0.0" micro-ftch "^0.3.1" -"@ethereumjs/util@^9.1.0": - version "9.1.0" - resolved "https://registry.yarnpkg.com/@ethereumjs/util/-/util-9.1.0.tgz#75e3898a3116d21c135fa9e29886565609129bce" - integrity sha512-XBEKsYqLGXLah9PNJbgdkigthkG7TAGvlD/sH12beMXEyHDyigfcbdvHhmLyDWgDyOJn4QwiQUaF7yeuhnjdog== - dependencies: - "@ethereumjs/rlp" "^5.0.2" - ethereum-cryptography "^2.2.1" - "@ethersproject/abi@^5.0.9", "@ethersproject/abi@^5.1.2", "@ethersproject/abi@^5.7.0": version "5.8.0" resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.8.0.tgz#e79bb51940ac35fe6f3262d7fe2cdb25ad5f07d9" @@ -485,6 +472,17 @@ dependencies: js-tiktoken "^1.0.12" +"@metamask/eth-sig-util@^4.0.0": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@metamask/eth-sig-util/-/eth-sig-util-4.0.1.tgz#3ad61f6ea9ad73ba5b19db780d40d9aae5157088" + integrity sha512-tghyZKLHZjcdlDqCA3gNZmLeR0XvOE9U1qoQO9ohyAZT6Pya+H9vkBPcsyXytmYLNgVoin7CKCmweo/R43V+tQ== + dependencies: + ethereumjs-abi "^0.6.8" + ethereumjs-util "^6.2.1" + ethjs-util "^0.1.6" + tweetnacl "^1.0.3" + tweetnacl-util "^0.15.1" + "@noble/curves@1.2.0": version "1.2.0" resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.2.0.tgz#92d7e12e4e49b23105a2555c6984d41733d65c35" @@ -569,53 +567,83 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@nomicfoundation/edr-darwin-arm64@0.10.0": - version "0.10.0" - resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-darwin-arm64/-/edr-darwin-arm64-0.10.0.tgz#3a6952bdf3e2825937cb1aad737b6851e4c6df30" - integrity sha512-n0N+CVM4LKN9QeGZ5irr94Q4vwSs4u7W6jfuhNLmx1cpUxwE9RpeW+ym93JXDv62iVsbekeI5VsUEBHy0hymtA== +"@nomicfoundation/edr-darwin-arm64@0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-darwin-arm64/-/edr-darwin-arm64-0.8.0.tgz#70a23214a2dd2941fcb55e47bb4653514d2dae06" + integrity sha512-sKTmOu/P5YYhxT0ThN2Pe3hmCE/5Ag6K/eYoiavjLWbR7HEb5ZwPu2rC3DpuUk1H+UKJqt7o4/xIgJxqw9wu6A== -"@nomicfoundation/edr-darwin-x64@0.10.0": - version "0.10.0" - resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-darwin-x64/-/edr-darwin-x64-0.10.0.tgz#e8e8a1b5e0e6df27d47dee38fbea7d1b77e92ee5" - integrity sha512-nmImWM/3qWopYzOmicMzK/MF3rFKpm2Biuc8GpQYTLjdXhmItpP9JwEPyjbAWv/1HI09C2pRzgNzKfTxoIgJ6w== +"@nomicfoundation/edr-darwin-x64@0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-darwin-x64/-/edr-darwin-x64-0.8.0.tgz#89c11ae510b3ac5c0e5268cd3a6b04194552112f" + integrity sha512-8ymEtWw1xf1Id1cc42XIeE+9wyo3Dpn9OD/X8GiaMz9R70Ebmj2g+FrbETu8o6UM+aL28sBZQCiCzjlft2yWAg== -"@nomicfoundation/edr-linux-arm64-gnu@0.10.0": - version "0.10.0" - resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-linux-arm64-gnu/-/edr-linux-arm64-gnu-0.10.0.tgz#0442b934d801abf1e94de517203f6c7cb24022a6" - integrity sha512-B/N1IyrCU7J6H4QckkQ1cSWAq1jSrJcXpO8GzRaQD1bgOOvg8wrUOrCD+Mfw7MLa6+X9vdZoXtPZOaaOQ9LmhA== +"@nomicfoundation/edr-linux-arm64-gnu@0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-linux-arm64-gnu/-/edr-linux-arm64-gnu-0.8.0.tgz#02c1b4f426576af4e464320e340855139a00fe9b" + integrity sha512-h/wWzS2EyQuycz+x/SjMRbyA+QMCCVmotRsgM1WycPARvVZWIVfwRRsKoXKdCftsb3S8NTprqBdJlOmsFyETFA== -"@nomicfoundation/edr-linux-arm64-musl@0.10.0": - version "0.10.0" - resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-linux-arm64-musl/-/edr-linux-arm64-musl-0.10.0.tgz#ece7f90113347b3c41ca9d0b27962cbc42e54a3d" - integrity sha512-NA9DFLB0LzcKy9mTCUzgnRDbmmSfW0CdO22ySwOy+MKt4Cr9eJi+XR5ZH933Rxpi6BWNkSPeS2ECETE25sJT3w== +"@nomicfoundation/edr-linux-arm64-musl@0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-linux-arm64-musl/-/edr-linux-arm64-musl-0.8.0.tgz#9b432dca973068f16a33abb70260e904494638dd" + integrity sha512-gnWxDgdkka0O9GpPX/gZT3REeKYV28Guyg13+Vj/bbLpmK1HmGh6Kx+fMhWv+Ht/wEmGDBGMCW1wdyT/CftJaQ== -"@nomicfoundation/edr-linux-x64-gnu@0.10.0": - version "0.10.0" - resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-linux-x64-gnu/-/edr-linux-x64-gnu-0.10.0.tgz#aa2b6587f2dc5da280c696aaf3c8021edce36e4f" - integrity sha512-bDrbRTA9qZ9wSw5mqa8VpLFbf6ue2Z4qmRd08404eKm8RyBEFxjdHflFzCx46gz/Td0e+GLXy6KTVDj5D29r8w== +"@nomicfoundation/edr-linux-x64-gnu@0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-linux-x64-gnu/-/edr-linux-x64-gnu-0.8.0.tgz#72954e5fd875df17c43d4ef3fcc381e3312e1347" + integrity sha512-DTMiAkgAx+nyxcxKyxFZk1HPakXXUCgrmei7r5G7kngiggiGp/AUuBBWFHi8xvl2y04GYhro5Wp+KprnLVoAPA== -"@nomicfoundation/edr-linux-x64-musl@0.10.0": - version "0.10.0" - resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-linux-x64-musl/-/edr-linux-x64-musl-0.10.0.tgz#fcb755e1f1926d713f3883856b5840e970ce9096" - integrity sha512-wx7yOlC/hx4N1xuIeh5cAebpzCTx8ZH8/z0IyYMf2t4v52KHERz4IyzBz5OLfd+0IqTRg8ZU5EnFBacIoPeP/g== +"@nomicfoundation/edr-linux-x64-musl@0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-linux-x64-musl/-/edr-linux-x64-musl-0.8.0.tgz#0d59390c512106010d6f4d94b7fffd99fb7fd8ae" + integrity sha512-iTITWe0Zj8cNqS0xTblmxPbHVWwEtMiDC+Yxwr64d7QBn/1W0ilFQ16J8gB6RVVFU3GpfNyoeg3tUoMpSnrm6Q== -"@nomicfoundation/edr-win32-x64-msvc@0.10.0": - version "0.10.0" - resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-win32-x64-msvc/-/edr-win32-x64-msvc-0.10.0.tgz#eb411d5a855a82cc9859a8889069c887ca5dde4b" - integrity sha512-DpBdVMimb+BUEs0E+nLGQ5JFHdGHyxQQNA+nh9V1eKtgarsV21S6br/d1vlQBMLQqkIzwmc6n+/O9Zjk2KfB3g== +"@nomicfoundation/edr-win32-x64-msvc@0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@nomicfoundation/edr-win32-x64-msvc/-/edr-win32-x64-msvc-0.8.0.tgz#d14225c513372fda54684de1229cc793ffe48c12" + integrity sha512-mNRDyd/C3j7RMcwapifzv2K57sfA5xOw8g2U84ZDvgSrXVXLC99ZPxn9kmolb+dz8VMm9FONTZz9ESS6v8DTnA== -"@nomicfoundation/edr@^0.10.0": - version "0.10.0" - resolved "https://registry.yarnpkg.com/@nomicfoundation/edr/-/edr-0.10.0.tgz#c0d3476b348ae396458369d1589913154d774192" - integrity sha512-ed9qHSNssgh+0hYUx4ilDoMxxgf/sNT8SjnzgmA5A/LSXHaq2ax68bkdQ8otLYTlxHCO9BS5Nhb8bfajV4FZeA== +"@nomicfoundation/edr@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@nomicfoundation/edr/-/edr-0.8.0.tgz#63441bb24c1804b6d27b075d0d29f3a02d94fc4f" + integrity sha512-dwWRrghSVBQDpt0wP+6RXD8BMz2i/9TI34TcmZqeEAZuCLei3U9KZRgGTKVAM1rMRvrpf5ROfPqrWNetKVUTag== dependencies: - "@nomicfoundation/edr-darwin-arm64" "0.10.0" - "@nomicfoundation/edr-darwin-x64" "0.10.0" - "@nomicfoundation/edr-linux-arm64-gnu" "0.10.0" - "@nomicfoundation/edr-linux-arm64-musl" "0.10.0" - "@nomicfoundation/edr-linux-x64-gnu" "0.10.0" - "@nomicfoundation/edr-linux-x64-musl" "0.10.0" - "@nomicfoundation/edr-win32-x64-msvc" "0.10.0" + "@nomicfoundation/edr-darwin-arm64" "0.8.0" + "@nomicfoundation/edr-darwin-x64" "0.8.0" + "@nomicfoundation/edr-linux-arm64-gnu" "0.8.0" + "@nomicfoundation/edr-linux-arm64-musl" "0.8.0" + "@nomicfoundation/edr-linux-x64-gnu" "0.8.0" + "@nomicfoundation/edr-linux-x64-musl" "0.8.0" + "@nomicfoundation/edr-win32-x64-msvc" "0.8.0" + +"@nomicfoundation/ethereumjs-common@4.0.4": + version "4.0.4" + resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-common/-/ethereumjs-common-4.0.4.tgz#9901f513af2d4802da87c66d6f255b510bef5acb" + integrity sha512-9Rgb658lcWsjiicr5GzNCjI1llow/7r0k50dLL95OJ+6iZJcVbi15r3Y0xh2cIO+zgX0WIHcbzIu6FeQf9KPrg== + dependencies: + "@nomicfoundation/ethereumjs-util" "9.0.4" + +"@nomicfoundation/ethereumjs-rlp@5.0.4": + version "5.0.4" + resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-rlp/-/ethereumjs-rlp-5.0.4.tgz#66c95256fc3c909f6fb18f6a586475fc9762fa30" + integrity sha512-8H1S3s8F6QueOc/X92SdrA4RDenpiAEqMg5vJH99kcQaCy/a3Q6fgseo75mgWlbanGJXSlAPtnCeG9jvfTYXlw== + +"@nomicfoundation/ethereumjs-tx@5.0.4": + version "5.0.4" + resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-tx/-/ethereumjs-tx-5.0.4.tgz#b0ceb58c98cc34367d40a30d255d6315b2f456da" + integrity sha512-Xjv8wAKJGMrP1f0n2PeyfFCCojHd7iS3s/Ab7qzF1S64kxZ8Z22LCMynArYsVqiFx6rzYy548HNVEyI+AYN/kw== + dependencies: + "@nomicfoundation/ethereumjs-common" "4.0.4" + "@nomicfoundation/ethereumjs-rlp" "5.0.4" + "@nomicfoundation/ethereumjs-util" "9.0.4" + ethereum-cryptography "0.1.3" + +"@nomicfoundation/ethereumjs-util@9.0.4": + version "9.0.4" + resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-util/-/ethereumjs-util-9.0.4.tgz#84c5274e82018b154244c877b76bc049a4ed7b38" + integrity sha512-sLOzjnSrlx9Bb9EFNtHzK/FJFsfg2re6bsGqinFinH1gCqVfz9YYlXiMWwDM4C/L4ywuHFCYwfKTVr/QHQcU0Q== + dependencies: + "@nomicfoundation/ethereumjs-rlp" "5.0.4" + ethereum-cryptography "0.1.3" "@nomicfoundation/hardhat-chai-matchers@^2.0.0": version "2.0.8" @@ -660,7 +688,7 @@ dependencies: ethereumjs-util "^7.1.4" -"@nomicfoundation/hardhat-toolbox@^5.0.0": +"@nomicfoundation/hardhat-toolbox@5.0.0": version "5.0.0" resolved "https://registry.yarnpkg.com/@nomicfoundation/hardhat-toolbox/-/hardhat-toolbox-5.0.0.tgz#165b47f8a3d2bf668cc5d453ce7f496a1156948d" integrity sha512-FnUtUC5PsakCbwiVNsqlXVIWG5JIb5CEZoSXbJUsEBun22Bivx2jhF1/q9iQbzuaGpJKFQyOhemPB2+XlEE6pQ== @@ -748,10 +776,10 @@ "@nomicfoundation/solidity-analyzer-linux-x64-musl" "0.1.2" "@nomicfoundation/solidity-analyzer-win32-x64-msvc" "0.1.2" -"@openzeppelin/contracts@^5.2.0": - version "5.3.0" - resolved "https://registry.yarnpkg.com/@openzeppelin/contracts/-/contracts-5.3.0.tgz#0a90ce16f5c855e3c8239691f1722cd4999ae741" - integrity sha512-zj/KGoW7zxWUE8qOI++rUM18v+VeLTTzKs/DJFkSzHpQFPD/jKKF0TrMxBfGLl3kpdELCNccvB3zmofSzm4nlA== +"@openzeppelin/contracts@5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@openzeppelin/contracts/-/contracts-5.2.0.tgz#bd020694218202b811b0ea3eec07277814c658da" + integrity sha512-bxjNie5z89W1Ea0NZLZluFh8PrFNn9DH8DQlujEok2yjsOlraUPKID5p1Wk3qdNbf6XkQ1Os2RvfiHrrXLHWKA== "@pkgjs/parseargs@^0.11.0": version "0.11.0" @@ -992,6 +1020,13 @@ dependencies: fs-extra "^9.1.0" +"@types/bn.js@^4.11.3": + version "4.11.6" + resolved "https://registry.yarnpkg.com/@types/bn.js/-/bn.js-4.11.6.tgz#c306c70d9358aaea33cd4eda092a742b9505967c" + integrity sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg== + dependencies: + "@types/node" "*" + "@types/bn.js@^5.1.0": version "5.1.6" resolved "https://registry.yarnpkg.com/@types/bn.js/-/bn.js-5.1.6.tgz#9ba818eec0c85e4d3c679518428afdf611d03203" @@ -1516,7 +1551,7 @@ bn.js@4.11.6: resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215" integrity sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA== -bn.js@^4.0.0, bn.js@^4.11.9: +bn.js@^4.0.0, bn.js@^4.11.0, bn.js@^4.11.8, bn.js@^4.11.9: version "4.12.2" resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.2.tgz#3d8fed6796c24e177737f7cc5172ee04ef39ec99" integrity sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw== @@ -2279,7 +2314,7 @@ ee-first@1.1.1: resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== -elliptic@6.6.1, elliptic@^6.5.7: +elliptic@6.6.1, elliptic@^6.5.2, elliptic@^6.5.7: version "6.6.1" resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.6.1.tgz#3b8ffb02670bf69e382c7f65bf524c97c5405c06" integrity sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g== @@ -2603,7 +2638,7 @@ ethereum-bloom-filters@^1.0.6: dependencies: "@noble/hashes" "^1.4.0" -ethereum-cryptography@^0.1.3: +ethereum-cryptography@0.1.3, ethereum-cryptography@^0.1.3: version "0.1.3" resolved "https://registry.yarnpkg.com/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz#8d6143cfc3d74bf79bbd8edecdf29e4ae20dd191" integrity sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ== @@ -2634,7 +2669,7 @@ ethereum-cryptography@^1.0.3: "@scure/bip32" "1.1.5" "@scure/bip39" "1.1.1" -ethereum-cryptography@^2.0.0, ethereum-cryptography@^2.1.2, ethereum-cryptography@^2.1.3, ethereum-cryptography@^2.2.1: +ethereum-cryptography@^2.0.0, ethereum-cryptography@^2.1.2, ethereum-cryptography@^2.1.3: version "2.2.1" resolved "https://registry.yarnpkg.com/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz#58f2810f8e020aecb97de8c8c76147600b0b8ccf" integrity sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg== @@ -2644,6 +2679,27 @@ ethereum-cryptography@^2.0.0, ethereum-cryptography@^2.1.2, ethereum-cryptograph "@scure/bip32" "1.4.0" "@scure/bip39" "1.3.0" +ethereumjs-abi@^0.6.8: + version "0.6.8" + resolved "https://registry.yarnpkg.com/ethereumjs-abi/-/ethereumjs-abi-0.6.8.tgz#71bc152db099f70e62f108b7cdfca1b362c6fcae" + integrity sha512-Tx0r/iXI6r+lRsdvkFDlut0N08jWMnKRZ6Gkq+Nmw75lZe4e6o3EkSnkaBP5NF6+m5PTGAr9JP43N3LyeoglsA== + dependencies: + bn.js "^4.11.8" + ethereumjs-util "^6.0.0" + +ethereumjs-util@^6.0.0, ethereumjs-util@^6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz#fcb4e4dd5ceacb9d2305426ab1a5cd93e3163b69" + integrity sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw== + dependencies: + "@types/bn.js" "^4.11.3" + bn.js "^4.11.0" + create-hash "^1.1.2" + elliptic "^6.5.2" + ethereum-cryptography "^0.1.3" + ethjs-util "0.1.6" + rlp "^2.2.3" + ethereumjs-util@^7.1.4: version "7.1.5" resolved "https://registry.yarnpkg.com/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz#9ecf04861e4fbbeed7465ece5f23317ad1129181" @@ -2655,7 +2711,20 @@ ethereumjs-util@^7.1.4: ethereum-cryptography "^0.1.3" rlp "^2.2.4" -ethers@^6.13.5, ethers@^6.7.0: +ethers@6.13.5: + version "6.13.5" + resolved "https://registry.yarnpkg.com/ethers/-/ethers-6.13.5.tgz#8c1d6ac988ac08abc3c1d8fabbd4b8b602851ac4" + integrity sha512-+knKNieu5EKRThQJWwqaJ10a6HE9sSehGeqWN65//wE7j47ZpFhKAnHB/JJFibwwg61I/koxaPsXbXpD/skNOQ== + dependencies: + "@adraffy/ens-normalize" "1.10.1" + "@noble/curves" "1.2.0" + "@noble/hashes" "1.3.2" + "@types/node" "22.7.5" + aes-js "4.0.0-beta.5" + tslib "2.7.0" + ws "8.17.1" + +ethers@^6.7.0: version "6.13.7" resolved "https://registry.yarnpkg.com/ethers/-/ethers-6.13.7.tgz#7457fcb32413b441a3ee6e9f4cd63bf782de6226" integrity sha512-qbaJ0uIrjh+huP1Lad2f2QtzW5dcqSVjIzVH6yWB4dKoMuj2WqYz5aMeeQTCNpAKgTJBM5J9vcc2cYJ23UAimQ== @@ -2676,6 +2745,14 @@ ethjs-unit@0.1.6: bn.js "4.11.6" number-to-bn "1.7.0" +ethjs-util@0.1.6, ethjs-util@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/ethjs-util/-/ethjs-util-0.1.6.tgz#f308b62f185f9fe6237132fb2a9818866a5cd536" + integrity sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w== + dependencies: + is-hex-prefixed "1.0.0" + strip-hex-prefix "1.0.0" + event-target-shim@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" @@ -3261,14 +3338,17 @@ hardhat-gas-reporter@^2.2.2: sha1 "^1.1.1" viem "^2.27.0" -hardhat@^2.22.19: - version "2.23.0" - resolved "https://registry.yarnpkg.com/hardhat/-/hardhat-2.23.0.tgz#c3b404410ea52c41f3200cc011f5b4cebd7d80bd" - integrity sha512-xnORx1LgX46TxylOFme96JmSAIjXuHUVpOlUnaCt8MKMGsgy0NGsfPo5rJI/ncCBPLFLURGfZUQ2Uc6ZYN4kYg== +hardhat@2.22.19: + version "2.22.19" + resolved "https://registry.yarnpkg.com/hardhat/-/hardhat-2.22.19.tgz#92eb6f59e75b0dded841fecf16260a5e3f6eb4eb" + integrity sha512-jptJR5o6MCgNbhd7eKa3mrteR+Ggq1exmE5RUL5ydQEVKcZm0sss5laa86yZ0ixIavIvF4zzS7TdGDuyopj0sQ== dependencies: - "@ethereumjs/util" "^9.1.0" "@ethersproject/abi" "^5.1.2" - "@nomicfoundation/edr" "^0.10.0" + "@metamask/eth-sig-util" "^4.0.0" + "@nomicfoundation/edr" "^0.8.0" + "@nomicfoundation/ethereumjs-common" "4.0.4" + "@nomicfoundation/ethereumjs-tx" "5.0.4" + "@nomicfoundation/ethereumjs-util" "9.0.4" "@nomicfoundation/solidity-analyzer" "^0.1.0" "@sentry/node" "^5.18.1" "@types/bn.js" "^5.1.0" @@ -3283,6 +3363,7 @@ hardhat@^2.22.19: enquirer "^2.3.0" env-paths "^2.2.0" ethereum-cryptography "^1.0.3" + ethereumjs-abi "^0.6.8" find-up "^5.0.0" fp-ts "1.19.3" fs-extra "^7.0.1" @@ -3291,7 +3372,6 @@ hardhat@^2.22.19: json-stream-stringify "^3.1.4" keccak "^3.0.2" lodash "^4.17.11" - micro-eth-signer "^0.14.0" mnemonist "^0.38.0" mocha "^10.0.0" p-map "^4.0.0" @@ -4231,27 +4311,11 @@ methods@~1.1.2: resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== -micro-eth-signer@^0.14.0: - version "0.14.0" - resolved "https://registry.yarnpkg.com/micro-eth-signer/-/micro-eth-signer-0.14.0.tgz#8aa1fe997d98d6bdf42f2071cef7eb01a66ecb22" - integrity sha512-5PLLzHiVYPWClEvZIXXFu5yutzpadb73rnQCpUqIHu3No3coFuWQNfE5tkBQJ7djuLYl6aRLaS0MgWJYGoqiBw== - dependencies: - "@noble/curves" "~1.8.1" - "@noble/hashes" "~1.7.1" - micro-packed "~0.7.2" - micro-ftch@^0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/micro-ftch/-/micro-ftch-0.3.1.tgz#6cb83388de4c1f279a034fb0cf96dfc050853c5f" integrity sha512-/0LLxhzP0tfiR5hcQebtudP56gUurs2CLkGarnCiB/OqEyUFQ6U3paQi/tgLv0hBJYt2rnr9MNpxz4fiiugstg== -micro-packed@~0.7.2: - version "0.7.3" - resolved "https://registry.yarnpkg.com/micro-packed/-/micro-packed-0.7.3.tgz#59e96b139dffeda22705c7a041476f24cabb12b6" - integrity sha512-2Milxs+WNC00TRlem41oRswvw31146GiSaoCT7s3Xi2gMUglW5QBeqlQaZeHr5tJx9nm3i57LNXPqxOOaWtTYg== - dependencies: - "@scure/base" "~1.2.5" - micromatch@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" @@ -5211,7 +5275,7 @@ ripemd160@^2.0.0, ripemd160@^2.0.1: hash-base "^3.0.0" inherits "^2.0.1" -rlp@^2.2.4: +rlp@^2.2.3, rlp@^2.2.4: version "2.2.7" resolved "https://registry.yarnpkg.com/rlp/-/rlp-2.2.7.tgz#33f31c4afac81124ac4b283e2bd4d9720b30beaf" integrity sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ== @@ -6025,11 +6089,21 @@ tunnel-agent@^0.6.0: dependencies: safe-buffer "^5.0.1" +tweetnacl-util@^0.15.1: + version "0.15.1" + resolved "https://registry.yarnpkg.com/tweetnacl-util/-/tweetnacl-util-0.15.1.tgz#b80fcdb5c97bcc508be18c44a4be50f022eea00b" + integrity sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw== + tweetnacl@^0.14.3, tweetnacl@~0.14.0: version "0.14.5" resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== +tweetnacl@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-1.0.3.tgz#ac0af71680458d8a6378d0d0d050ab1407d35596" + integrity sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw== + type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" diff --git a/frontend/package.json b/frontend/package.json index b7594bd..4a3c83f 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -26,7 +26,8 @@ "sortablejs": "^1.15.6", "vue": "^3.2.47", "vue-i18n": "^11.1.2", - "vue-router": "^4.1.6" + "vue-router": "^4.1.6", + "vuex": "^4.1.0" }, "devDependencies": { "@vitejs/plugin-vue": "^5.2.1", diff --git a/frontend/src/composables/useBlockchainNetworks.js b/frontend/src/composables/useBlockchainNetworks.js new file mode 100644 index 0000000..94a7127 --- /dev/null +++ b/frontend/src/composables/useBlockchainNetworks.js @@ -0,0 +1,235 @@ +import { ref, computed } from 'vue'; +import axios from 'axios'; + +/** + * Composable для работы с сетями блокчейн + * Предоставляет списки доступных сетей, URL RPC и функции для работы с ними + */ +export default function useBlockchainNetworks() { + // Список стандартных URL для популярных сетей + const defaultRpcUrls = { + ethereum: 'https://mainnet.infura.io/v3/YOUR_API_KEY', + sepolia: 'https://sepolia.infura.io/v3/YOUR_API_KEY', + goerli: 'https://goerli.infura.io/v3/YOUR_API_KEY', + holesky: 'https://holesky.infura.io/v3/YOUR_API_KEY', + bsc: 'https://bsc-dataseed1.binance.org', + 'bsc-testnet': 'https://data-seed-prebsc-1-s1.binance.org:8545', + polygon: 'https://polygon-rpc.com', + mumbai: 'https://rpc-mumbai.maticvigil.com', + arbitrum: 'https://arb1.arbitrum.io/rpc', + 'arbitrum-goerli': 'https://goerli-rollup.arbitrum.io/rpc', + optimism: 'https://mainnet.optimism.io', + 'optimism-goerli': 'https://goerli.optimism.io', + avalanche: 'https://api.avax.network/ext/bc/C/rpc', + 'avalanche-fuji': 'https://api.avax-test.network/ext/bc/C/rpc', + gnosis: 'https://rpc.gnosischain.com', + celo: 'https://forno.celo.org', + fantom: 'https://rpc.ftm.tools', + 'fantom-testnet': 'https://rpc.testnet.fantom.network', + harmony: 'https://api.harmony.one', + metis: 'https://andromeda.metis.io/?owner=1088', + aurora: 'https://mainnet.aurora.dev', + cronos: 'https://evm.cronos.org', + localhost: 'http://localhost:8545', + ganache: 'http://localhost:7545' + }; + + // Группы сетей для отображения в интерфейсе + const networkGroups = [ + { + label: 'Основные сети', + options: [ + { value: 'ethereum', label: 'Ethereum Mainnet', chainId: 1 }, + { value: 'bsc', label: 'Binance Smart Chain', chainId: 56 }, + { value: 'polygon', label: 'Polygon', chainId: 137 }, + { value: 'arbitrum', label: 'Arbitrum One', chainId: 42161 }, + { value: 'optimism', label: 'Optimism', chainId: 10 }, + { value: 'avalanche', label: 'Avalanche C-Chain', chainId: 43114 }, + { value: 'gnosis', label: 'Gnosis Chain (xDai)', chainId: 100 }, + { value: 'celo', label: 'Celo', chainId: 42220 }, + { value: 'fantom', label: 'Fantom Opera', chainId: 250 }, + { value: 'harmony', label: 'Harmony', chainId: 1666600000 }, + { value: 'metis', label: 'Metis Andromeda', chainId: 1088 }, + { value: 'aurora', label: 'Aurora', chainId: 1313161554 }, + { value: 'cronos', label: 'Cronos', chainId: 25 } + ] + }, + { + label: 'Тестовые сети', + options: [ + { value: 'sepolia', label: 'Sepolia (Ethereum testnet)', chainId: 11155111 }, + { value: 'goerli', label: 'Goerli (Ethereum testnet)', chainId: 5 }, + { value: 'holesky', label: 'Holesky (Ethereum testnet)', chainId: 17000 }, + { value: 'bsc-testnet', label: 'BSC Testnet', chainId: 97 }, + { value: 'mumbai', label: 'Mumbai (Polygon testnet)', chainId: 80001 }, + { value: 'arbitrum-goerli', label: 'Arbitrum Goerli', chainId: 421613 }, + { value: 'optimism-goerli', label: 'Optimism Goerli', chainId: 420 }, + { value: 'avalanche-fuji', label: 'Avalanche Fuji', chainId: 43113 }, + { value: 'fantom-testnet', label: 'Fantom Testnet', chainId: 4002 } + ] + }, + { + label: 'Локальные сети', + options: [ + { value: 'localhost', label: 'Localhost (Hardhat)', chainId: 31337 }, + { value: 'ganache', label: 'Ganache', chainId: 1337 } + ] + }, + { + label: 'Другое', + options: [ + { value: 'custom', label: 'Другая сеть (ввести вручную)', chainId: null } + ] + } + ]; + + // Создаем плоский список всех сетей для удобного использования в компонентах + const networks = computed(() => { + return networkGroups.flatMap(group => group.options); + }); + + // Объект для хранения выбранной сети и пользовательских значений + const networkEntry = ref({ + networkId: '', + rpcUrl: '', + customNetworkId: '', + customChainId: null + }); + + // Вычисляемое свойство для предложения URL на основе выбранной сети + const defaultRpcUrlSuggestion = computed(() => { + if (networkEntry.value.networkId && defaultRpcUrls[networkEntry.value.networkId]) { + return defaultRpcUrls[networkEntry.value.networkId]; + } + return ''; + }); + + // Функция для использования предложенного URL + const useDefaultRpcUrl = () => { + if (defaultRpcUrlSuggestion.value) { + networkEntry.value.rpcUrl = defaultRpcUrlSuggestion.value; + } + }; + + // Функция для получения chainId по networkId + const getChainIdByNetworkId = (networkId) => { + for (const group of networkGroups) { + const option = group.options.find(opt => opt.value === networkId); + if (option) { + return option.chainId; + } + } + return null; + }; + + // Функция для добавления новой конфигурации сети + const validateAndPrepareNetworkConfig = () => { + let networkId = networkEntry.value.networkId; + const rpcUrl = networkEntry.value.rpcUrl.trim(); + + // Если выбрана опция "custom", используем пользовательский ID + if (networkId === 'custom') { + networkId = networkEntry.value.customNetworkId.trim(); + if (!networkId) { + return { valid: false, error: 'Пожалуйста, введите пользовательский ID сети' }; + } + } + + if (!networkId || !rpcUrl) { + return { valid: false, error: 'Пожалуйста, выберите ID Сети и введите RPC URL' }; + } + + // Определяем chainId + let chainId = getChainIdByNetworkId(networkId); + if (!chainId && networkId === networkEntry.value.customNetworkId) { + chainId = networkEntry.value.customChainId; + } + + return { + valid: true, + networkConfig: { + networkId, + rpcUrl, + chainId + } + }; + }; + + // Функция сброса формы + const resetNetworkEntry = () => { + networkEntry.value.networkId = ''; + networkEntry.value.rpcUrl = ''; + networkEntry.value.customNetworkId = ''; + networkEntry.value.customChainId = null; + }; + + // Функция получения списка всех доступных сетей в плоском формате + const getAllNetworks = () => { + return networks.value; + }; + + // Функция получения метаданных сети по ID + const getNetworkMetadata = (networkId) => { + return networks.value.find(network => network.value === networkId) || null; + }; + + // Состояние для тестирования RPC + const testingRpc = ref(false); + const testingRpcId = ref(''); + + // Функция для тестирования RPC-соединения + const testRpcConnection = async (networkId, rpcUrl) => { + testingRpc.value = true; + testingRpcId.value = networkId; + + try { + // Формируем запрос на бэкенд для проверки RPC + const response = await axios.post('/api/settings/rpc-test', { + networkId, + rpcUrl + }); + + if (response.data && response.data.success) { + return { + success: true, + message: `Соединение с ${networkId} успешно установлено! Номер блока: ${response.data.blockNumber}`, + blockNumber: response.data.blockNumber + }; + } else { + return { + success: false, + error: response.data?.error || 'Не удалось установить соединение' + }; + } + } catch (error) { + console.error('[useBlockchainNetworks] Ошибка при тестировании RPC:', error); + return { + success: false, + error: error.response?.data?.error || error.message || 'Неизвестная ошибка' + }; + } finally { + testingRpc.value = false; + testingRpcId.value = ''; + } + }; + + return { + // Данные + defaultRpcUrls, + networkGroups, + networkEntry, + defaultRpcUrlSuggestion, + testingRpc, + testingRpcId, + networks, // Экспортируем плоский список сетей + + // Методы + useDefaultRpcUrl, + getChainIdByNetworkId, + validateAndPrepareNetworkConfig, + resetNetworkEntry, + getAllNetworks, + getNetworkMetadata, + testRpcConnection + }; +} \ No newline at end of file diff --git a/frontend/src/services/dleService.js b/frontend/src/services/dleService.js new file mode 100644 index 0000000..af31a10 --- /dev/null +++ b/frontend/src/services/dleService.js @@ -0,0 +1,92 @@ +import api from '@/api/axios'; + +/** + * Сервис для работы с DLE (Digital Legal Entity) + */ +class DLEService { + /** + * Получает настройки по умолчанию для создания DLE + * @returns {Promise} - Настройки по умолчанию + */ + async getDefaultSettings() { + try { + const response = await api.get('/api/dle/settings'); + return response.data.data; + } catch (error) { + console.error('Ошибка при получении настроек DLE:', error); + throw error; + } + } + + /** + * Создает новое DLE с указанными параметрами + * @param {Object} dleParams - Параметры для создания DLE + * @returns {Promise} - Результат создания DLE + */ + async createDLE(dleParams) { + try { + const response = await api.post('/api/dle', dleParams); + return response.data; + } catch (error) { + console.error('Ошибка при создании DLE:', error); + throw error; + } + } + + /** + * Получает список всех DLE + * @returns {Promise} - Список DLE + */ + async getAllDLEs() { + try { + const response = await api.get('/api/dle'); + + // Проверяем и нормализуем поля isicCodes для всех DLE + if (response.data.data && Array.isArray(response.data.data)) { + response.data.data.forEach(dle => { + // Если isicCodes отсутствует или не является массивом, инициализируем пустым массивом + if (!dle.isicCodes || !Array.isArray(dle.isicCodes)) { + dle.isicCodes = []; + } + }); + } + + return response.data.data; + } catch (error) { + console.error('Ошибка при получении списка DLE:', error); + throw error; + } + } + + /** + * Удаляет DLE по адресу токена + * @param {string} tokenAddress - Адрес токена DLE + * @returns {Promise} - Результат удаления + */ + async deleteDLE(tokenAddress) { + try { + const response = await api.delete(`/api/dle/${tokenAddress}`); + return response.data; + } catch (error) { + console.error('Ошибка при удалении DLE:', error); + throw error; + } + } + + /** + * Удаляет пустое DLE по имени файла + * @param {string} fileName - Имя файла DLE + * @returns {Promise} - Результат удаления + */ + async deleteEmptyDLE(fileName) { + try { + const response = await api.delete(`/api/dle/empty/${fileName}`); + return response.data; + } catch (error) { + console.error('Ошибка при удалении пустого DLE:', error); + throw error; + } + } +} + +export default new DLEService(); \ No newline at end of file diff --git a/frontend/src/views/CrmView.vue b/frontend/src/views/CrmView.vue index 0808dae..921ed8d 100644 --- a/frontend/src/views/CrmView.vue +++ b/frontend/src/views/CrmView.vue @@ -7,27 +7,260 @@ @auth-action-completed="$emit('auth-action-completed')" >
-

CRM Система

-
Загрузка данных пользователя...
+

Управление DLE

+
+

Загрузка данных DLE...

+
+
-

Для доступа к CRM необходимо .

+

Для доступа к управлению DLE необходимо .

-

Добро пожаловать в CRM!

-
-

У вас полный доступ (Администратор).

- -

Здесь будет управление контактами, сделками, задачами и т.д.

+ +
+

Ваши DLE

+
+

У вас пока нет созданных DLE.

+
-

У вас ограниченный доступ.

- -

Здесь будет просмотр ваших контактов и задач.

+
+
+

{{ dle.name }} ({{ dle.symbol }})

+

Адрес: {{ shortenAddress(dle.tokenAddress) }}

+

Местонахождение: {{ dle.location }}

+
+ + +
+
+
+
- -
-

Демонстрация CRM

-

Этот раздел будет содержать компоненты CRM...

+ + +
+

Управление "{{ selectedDle.name }}"

+ +
+
+
+ Основная информация +
+
+ Предложения +
+
+ Управление +
+
+ Модули +
+
+ + +
+
+

Основная информация

+
+ Название: + {{ selectedDle.name }} +
+
+ Символ токена: + {{ selectedDle.symbol }} +
+
+ Местонахождение: + {{ selectedDle.location }} +
+
+ Коды деятельности: + {{ selectedDle.isicCodes && selectedDle.isicCodes.length ? selectedDle.isicCodes.join(', ') : 'Не указаны' }} +
+
+ Дата создания: + {{ formatDate(selectedDle.creationTimestamp) }} +
+
+ +
+
+

Токен управления

+

{{ selectedDle.tokenAddress }}

+
+ + +
+
+ +
+

Таймлок

+

{{ selectedDle.timelockAddress }}

+
+ + +
+
+ +
+

Governor

+

{{ selectedDle.governorAddress }}

+
+ + +
+
+
+
+ + +
+

Предложения

+
+ +
+ +
+

Новое предложение

+
+ + +
+
+ + +
+
+ + +
+
+ +
+

Предложений пока нет

+
+

{{ proposal.title }}

+

{{ proposal.description }}

+
+ {{ getProposalStatusText(proposal.status) }} +
+
+ + +
+
+
+
+ + +
+

Управление

+
+
+

Настройки Governor

+
+ Порог предложения: + 100,000 GT +
+
+ Кворум: + 4% +
+
+ Задержка голосования: + 1 день +
+
+ Период голосования: + 7 дней +
+
+ +
+

Статистика голосований

+
+ Всего предложений: + {{ proposals.length }} +
+
+ Активных предложений: + {{ getProposalsByStatus('active').length }} +
+
+ Успешных предложений: + {{ getProposalsByStatus('succeeded').length }} +
+
+ Отклоненных предложений: + {{ getProposalsByStatus('defeated').length }} +
+
+
+
+ + +
+

Подключение модулей

+

Здесь вы можете подключить дополнительные модули к вашему DLE.

+ +
+
+

{{ module.name }}

+

{{ module.description }}

+
+ {{ module.installed ? 'Установлен' : 'Доступен' }} +
+
+ + +
+
+
+
+
@@ -35,12 +268,13 @@ \ No newline at end of file diff --git a/frontend/src/views/settings/BlockchainSettingsView.vue b/frontend/src/views/settings/BlockchainSettingsView.vue index f2a4b96..5ca5517 100644 --- a/frontend/src/views/settings/BlockchainSettingsView.vue +++ b/frontend/src/views/settings/BlockchainSettingsView.vue @@ -7,27 +7,19 @@

Настройка и деплой нового DLE (Digital Legal Entity) с токеном управления и контрактом Governor.

-
- - -
- +
+
+

Местонахождение

@@ -84,6 +76,8 @@
+ +

Код деятельности

Добавленные коды деятельности:
    @@ -139,6 +133,7 @@
+

Первоначальное распределение токенов управления

@@ -156,6 +151,7 @@
+

Настройки Governor

@@ -177,13 +173,148 @@
-

Настройки Timelock (если используется)

- + +

RPC Провайдеры

+

Конфигурации RPC для сетей, которые будут использоваться в приложении.

+ + +
+
Добавленные RPC конфигурации:
+
+ ID Сети: {{ rpc.networkId }} + URL: {{ rpc.rpcUrl }} +
+ + +
+
+
+

Нет добавленных RPC конфигураций.

+ + +
+
Добавить новую RPC конфигурацию:
+
+ + +
+ + + + + + Chain ID - уникальный идентификатор блокчейн-сети (целое число) +
+ ID сети должен совпадать со значением в выпадающем списке сетей при создании DLE +
+
+ + + + + Предложение: {{ defaultRpcUrlSuggestion }} + + +
+ +
+ + +
+ +
+ + +

Сеть для деплоя

+
+ + + + + Внимание! Для тестирования рекомендуется использовать тестовые сети (Sepolia, Goerli, Mumbai). + +
+ + +

Ключ Деплоера

+
+ +
+ + +
+
+ + +
+

Газовые настройки

+
+ + +
+ +
+
+ + +
+
+ + +
+
+ + +
+
+
+ + +
+ + + +
+
DLE успешно создано!
+

Адрес токена: {{ deployResult.data?.tokenAddress }}

+

Адрес таймлока: {{ deployResult.data?.timelockAddress }}

+

Адрес контракта Governor: {{ deployResult.data?.governorAddress }}

+
+ + +
+
Ошибка при создании DLE
+

{{ deployError }}

+
+
@@ -193,8 +324,61 @@ \ No newline at end of file diff --git a/frontend/src/views/settings/SecuritySettingsView.vue b/frontend/src/views/settings/SecuritySettingsView.vue index 78711e5..c4ada82 100644 --- a/frontend/src/views/settings/SecuritySettingsView.vue +++ b/frontend/src/views/settings/SecuritySettingsView.vue @@ -1,358 +1,673 @@ \ No newline at end of file diff --git a/frontend/yarn.lock b/frontend/yarn.lock index 38491f6..3aa3f10 100644 --- a/frontend/yarn.lock +++ b/frontend/yarn.lock @@ -4,85 +4,210 @@ "@adraffy/ens-normalize@1.10.1": version "1.10.1" - resolved "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.10.1.tgz" + resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.10.1.tgz#63430d04bd8c5e74f8d7d049338f1cd9d4f02069" integrity sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw== "@babel/code-frame@^7.0.0": - version "7.26.2" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz" - integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ== + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz#200f715e66d52a23b221a9435534a91cc13ad5be" + integrity sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg== dependencies: - "@babel/helper-validator-identifier" "^7.25.9" + "@babel/helper-validator-identifier" "^7.27.1" js-tokens "^4.0.0" - picocolors "^1.0.0" + picocolors "^1.1.1" -"@babel/helper-string-parser@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz" - integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA== +"@babel/helper-string-parser@^7.27.1": + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz#54da796097ab19ce67ed9f88b47bb2ec49367687" + integrity sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA== -"@babel/helper-validator-identifier@^7.25.9": - version "7.25.9" - resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz" - integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ== +"@babel/helper-validator-identifier@^7.27.1": + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz#a7054dcc145a967dd4dc8fee845a57c1316c9df8" + integrity sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow== "@babel/parser@^7.25.3": - version "7.26.9" - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.26.9.tgz" - integrity sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A== + version "7.27.2" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.27.2.tgz#577518bedb17a2ce4212afd052e01f7df0941127" + integrity sha512-QYLs8299NA7WM/bZAdp+CviYYkVoYXlDW2rzliy3chxd1PQjej7JORuMJDJXJUb9g0TT+B99EwaVLKmX+sPXWw== dependencies: - "@babel/types" "^7.26.9" + "@babel/types" "^7.27.1" -"@babel/types@^7.26.9": - version "7.26.9" - resolved "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz" - integrity sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw== +"@babel/types@^7.27.1": + version "7.27.1" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.27.1.tgz#9defc53c16fc899e46941fc6901a9eea1c9d8560" + integrity sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q== dependencies: - "@babel/helper-string-parser" "^7.25.9" - "@babel/helper-validator-identifier" "^7.25.9" + "@babel/helper-string-parser" "^7.27.1" + "@babel/helper-validator-identifier" "^7.27.1" "@csstools/selector-specificity@^2.0.2": version "2.2.0" - resolved "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz#2cbcf822bf3764c9658c4d2e568bd0c0cb748016" integrity sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw== -"@esbuild/linux-x64@0.25.0": - version "0.25.0" - resolved "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.0.tgz" - integrity sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw== +"@esbuild/aix-ppc64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.4.tgz#830d6476cbbca0c005136af07303646b419f1162" + integrity sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q== + +"@esbuild/android-arm64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.4.tgz#d11d4fc299224e729e2190cacadbcc00e7a9fd67" + integrity sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A== + +"@esbuild/android-arm@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.4.tgz#5660bd25080553dd2a28438f2a401a29959bd9b1" + integrity sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ== + +"@esbuild/android-x64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.4.tgz#18ddde705bf984e8cd9efec54e199ac18bc7bee1" + integrity sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ== + +"@esbuild/darwin-arm64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.4.tgz#b0b7fb55db8fc6f5de5a0207ae986eb9c4766e67" + integrity sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g== + +"@esbuild/darwin-x64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.4.tgz#e6813fdeba0bba356cb350a4b80543fbe66bf26f" + integrity sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A== + +"@esbuild/freebsd-arm64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.4.tgz#dc11a73d3ccdc308567b908b43c6698e850759be" + integrity sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ== + +"@esbuild/freebsd-x64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.4.tgz#91da08db8bd1bff5f31924c57a81dab26e93a143" + integrity sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ== + +"@esbuild/linux-arm64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.4.tgz#efc15e45c945a082708f9a9f73bfa8d4db49728a" + integrity sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ== + +"@esbuild/linux-arm@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.4.tgz#9b93c3e54ac49a2ede6f906e705d5d906f6db9e8" + integrity sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ== + +"@esbuild/linux-ia32@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.4.tgz#be8ef2c3e1d99fca2d25c416b297d00360623596" + integrity sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ== + +"@esbuild/linux-loong64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.4.tgz#b0840a2707c3fc02eec288d3f9defa3827cd7a87" + integrity sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA== + +"@esbuild/linux-mips64el@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.4.tgz#2a198e5a458c9f0e75881a4e63d26ba0cf9df39f" + integrity sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg== + +"@esbuild/linux-ppc64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.4.tgz#64f4ae0b923d7dd72fb860b9b22edb42007cf8f5" + integrity sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag== + +"@esbuild/linux-riscv64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.4.tgz#fb2844b11fdddd39e29d291c7cf80f99b0d5158d" + integrity sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA== + +"@esbuild/linux-s390x@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.4.tgz#1466876e0aa3560c7673e63fdebc8278707bc750" + integrity sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g== + +"@esbuild/linux-x64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.4.tgz#c10fde899455db7cba5f11b3bccfa0e41bf4d0cd" + integrity sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA== + +"@esbuild/netbsd-arm64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.4.tgz#02e483fbcbe3f18f0b02612a941b77be76c111a4" + integrity sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ== + +"@esbuild/netbsd-x64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.4.tgz#ec401fb0b1ed0ac01d978564c5fc8634ed1dc2ed" + integrity sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw== + +"@esbuild/openbsd-arm64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.4.tgz#f272c2f41cfea1d91b93d487a51b5c5ca7a8c8c4" + integrity sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A== + +"@esbuild/openbsd-x64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.4.tgz#2e25950bc10fa9db1e5c868e3d50c44f7c150fd7" + integrity sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw== + +"@esbuild/sunos-x64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.4.tgz#cd596fa65a67b3b7adc5ecd52d9f5733832e1abd" + integrity sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q== + +"@esbuild/win32-arm64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.4.tgz#b4dbcb57b21eeaf8331e424c3999b89d8951dc88" + integrity sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ== + +"@esbuild/win32-ia32@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.4.tgz#410842e5d66d4ece1757634e297a87635eb82f7a" + integrity sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg== + +"@esbuild/win32-x64@0.25.4": + version "0.25.4" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.4.tgz#0b17ec8a70b2385827d52314c1253160a0b9bacc" + integrity sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ== "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": - version "4.4.1" - resolved "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz" - integrity sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA== + version "4.7.0" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz#607084630c6c033992a082de6e6fbc1a8b52175a" + integrity sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw== dependencies: eslint-visitor-keys "^3.4.3" "@eslint-community/regexpp@^4.12.1": version "4.12.1" - resolved "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz#cfc6cffe39df390a3841cde2abccf92eaa7ae0e0" integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ== -"@eslint/config-array@^0.19.2": - version "0.19.2" - resolved "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.2.tgz" - integrity sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w== +"@eslint/config-array@^0.20.0": + version "0.20.0" + resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.20.0.tgz#7a1232e82376712d3340012a2f561a2764d1988f" + integrity sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ== dependencies: "@eslint/object-schema" "^2.1.6" debug "^4.3.1" minimatch "^3.1.2" -"@eslint/core@^0.12.0": - version "0.12.0" - resolved "https://registry.npmjs.org/@eslint/core/-/core-0.12.0.tgz" - integrity sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg== +"@eslint/config-helpers@^0.2.1": + version "0.2.2" + resolved "https://registry.yarnpkg.com/@eslint/config-helpers/-/config-helpers-0.2.2.tgz#3779f76b894de3a8ec4763b79660e6d54d5b1010" + integrity sha512-+GPzk8PlG0sPpzdU5ZvIRMPidzAnZDl/s9L+y13iodqvb8leL53bTannOrQ/Im7UkpsmFU5Ily5U60LWixnmLg== + +"@eslint/core@^0.13.0": + version "0.13.0" + resolved "https://registry.yarnpkg.com/@eslint/core/-/core-0.13.0.tgz#bf02f209846d3bf996f9e8009db62df2739b458c" + integrity sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw== dependencies: "@types/json-schema" "^7.0.15" -"@eslint/eslintrc@^3.3.0": - version "3.3.0" - resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.0.tgz" - integrity sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ== +"@eslint/eslintrc@^3.3.1": + version "3.3.1" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-3.3.1.tgz#e55f7f1dd400600dd066dbba349c4c0bac916964" + integrity sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ== dependencies: ajv "^6.12.4" debug "^4.3.2" @@ -94,32 +219,32 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@eslint/js@9.21.0": - version "9.21.0" - resolved "https://registry.npmjs.org/@eslint/js/-/js-9.21.0.tgz" - integrity sha512-BqStZ3HX8Yz6LvsF5ByXYrtigrV5AXADWLAGc7PH/1SxOb7/FIYYMszZZWiUou/GB9P2lXWk2SV4d+Z8h0nknw== +"@eslint/js@9.26.0": + version "9.26.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.26.0.tgz#1e13126b67a3db15111d2dcc61f69a2acff70bd5" + integrity sha512-I9XlJawFdSMvWjDt6wksMCrgns5ggLNfFwFvnShsleWruvXM514Qxk8V246efTw+eo9JABvVz+u3q2RiAowKxQ== "@eslint/object-schema@^2.1.6": version "2.1.6" - resolved "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz" + resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-2.1.6.tgz#58369ab5b5b3ca117880c0f6c0b0f32f6950f24f" integrity sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA== -"@eslint/plugin-kit@^0.2.7": - version "0.2.7" - resolved "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.7.tgz" - integrity sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g== +"@eslint/plugin-kit@^0.2.8": + version "0.2.8" + resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.2.8.tgz#47488d8f8171b5d4613e833313f3ce708e3525f8" + integrity sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA== dependencies: - "@eslint/core" "^0.12.0" + "@eslint/core" "^0.13.0" levn "^0.4.1" "@humanfs/core@^0.19.1": version "0.19.1" - resolved "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz" + resolved "https://registry.yarnpkg.com/@humanfs/core/-/core-0.19.1.tgz#17c55ca7d426733fe3c561906b8173c336b40a77" integrity sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA== "@humanfs/node@^0.16.6": version "0.16.6" - resolved "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz" + resolved "https://registry.yarnpkg.com/@humanfs/node/-/node-0.16.6.tgz#ee2a10eaabd1131987bf0488fd9b820174cd765e" integrity sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw== dependencies: "@humanfs/core" "^0.19.1" @@ -127,86 +252,107 @@ "@humanwhocodes/module-importer@^1.0.1": version "1.0.1" - resolved "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== "@humanwhocodes/retry@^0.3.0": version "0.3.1" - resolved "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz" + resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.3.1.tgz#c72a5c76a9fbaf3488e231b13dc52c0da7bab42a" integrity sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA== "@humanwhocodes/retry@^0.4.2": - version "0.4.2" - resolved "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz" - integrity sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ== + version "0.4.3" + resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.4.3.tgz#c2b9d2e374ee62c586d3adbea87199b1d7a7a6ba" + integrity sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ== -"@intlify/core-base@11.1.2": - version "11.1.2" - resolved "https://registry.npmjs.org/@intlify/core-base/-/core-base-11.1.2.tgz" - integrity sha512-nmG512G8QOABsserleechwHGZxzKSAlggGf9hQX0nltvSwyKNVuB/4o6iFeG2OnjXK253r8p8eSDOZf8PgFdWw== +"@intlify/core-base@11.1.3": + version "11.1.3" + resolved "https://registry.yarnpkg.com/@intlify/core-base/-/core-base-11.1.3.tgz#8625126383334ef69262e0a99659db3e63bfc80c" + integrity sha512-cMuHunYO7LE80azTitcvEbs1KJmtd6g7I5pxlApV3Jo547zdO3h31/0uXpqHc+Y3RKt1wo2y68RGSx77Z1klyA== dependencies: - "@intlify/message-compiler" "11.1.2" - "@intlify/shared" "11.1.2" + "@intlify/message-compiler" "11.1.3" + "@intlify/shared" "11.1.3" -"@intlify/message-compiler@11.1.2": - version "11.1.2" - resolved "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-11.1.2.tgz" - integrity sha512-T/xbNDzi+Yv0Qn2Dfz2CWCAJiwNgU5d95EhhAEf4YmOgjCKktpfpiUSmLcBvK1CtLpPQ85AMMQk/2NCcXnNj1g== +"@intlify/message-compiler@11.1.3": + version "11.1.3" + resolved "https://registry.yarnpkg.com/@intlify/message-compiler/-/message-compiler-11.1.3.tgz#61079227a263d01ab368c99ce26883e150cb4bdd" + integrity sha512-7rbqqpo2f5+tIcwZTAG/Ooy9C8NDVwfDkvSeDPWUPQW+Dyzfw2o9H103N5lKBxO7wxX9dgCDjQ8Umz73uYw3hw== dependencies: - "@intlify/shared" "11.1.2" + "@intlify/shared" "11.1.3" source-map-js "^1.0.2" -"@intlify/shared@11.1.2": - version "11.1.2" - resolved "https://registry.npmjs.org/@intlify/shared/-/shared-11.1.2.tgz" - integrity sha512-dF2iMMy8P9uKVHV/20LA1ulFLL+MKSbfMiixSmn6fpwqzvix38OIc7ebgnFbBqElvghZCW9ACtzKTGKsTGTWGA== +"@intlify/shared@11.1.3": + version "11.1.3" + resolved "https://registry.yarnpkg.com/@intlify/shared/-/shared-11.1.3.tgz#1a4ed11a0efcaf95b56e0d01d0ee54d01bcd3019" + integrity sha512-pTFBgqa/99JRA2H1qfyqv97MKWJrYngXBA/I0elZcYxvJgcCw3mApAoPW3mJ7vx3j+Ti0FyKUFZ4hWxdjKaxvA== "@jridgewell/sourcemap-codec@^1.5.0": version "1.5.0" - resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== +"@modelcontextprotocol/sdk@^1.8.0": + version "1.11.2" + resolved "https://registry.yarnpkg.com/@modelcontextprotocol/sdk/-/sdk-1.11.2.tgz#d81784c140d1a9cc937f61af9f071d8b78befe30" + integrity sha512-H9vwztj5OAqHg9GockCQC06k1natgcxWQSRpQcPJf6i5+MWBzfKkRtxGbjQf0X2ihii0ffLZCRGbYV2f2bjNCQ== + dependencies: + content-type "^1.0.5" + cors "^2.8.5" + cross-spawn "^7.0.3" + eventsource "^3.0.2" + express "^5.0.1" + express-rate-limit "^7.5.0" + pkce-challenge "^5.0.0" + raw-body "^3.0.0" + zod "^3.23.8" + zod-to-json-schema "^3.24.1" + "@noble/curves@1.2.0": version "1.2.0" - resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.2.0.tgz#92d7e12e4e49b23105a2555c6984d41733d65c35" integrity sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw== dependencies: "@noble/hashes" "1.3.2" -"@noble/hashes@^1.1.2", "@noble/hashes@1.3.2": +"@noble/hashes@1.3.2": version "1.3.2" - resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz" + resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.2.tgz#6f26dbc8fbc7205873ce3cee2f690eba0d421b39" integrity sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ== +"@noble/hashes@^1.1.2": + version "1.8.0" + resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.8.0.tgz#cee43d801fcef9644b11b8194857695acd5f815a" + integrity sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A== + "@nodelib/fs.scandir@2.1.5": version "2.1.5" - resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== dependencies: "@nodelib/fs.stat" "2.0.5" run-parallel "^1.1.9" -"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5": +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": version "2.0.5" - resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== "@nodelib/fs.walk@^1.2.3": version "1.2.8" - resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== dependencies: "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@pkgr/core@^0.1.0": - version "0.1.1" - resolved "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz" - integrity sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA== +"@pkgr/core@^0.2.3": + version "0.2.4" + resolved "https://registry.yarnpkg.com/@pkgr/core/-/core-0.2.4.tgz#d897170a2b0ba51f78a099edccd968f7b103387c" + integrity sha512-ROFF39F6ZrnzSUEmQQZUar0Jt4xVoP9WnDRdWwF4NNcXs3xBTLgBUDoOwW141y1jP+S8nahIbdxbFC7IShw9Iw== "@rollup/plugin-inject@^5.0.1": version "5.0.5" - resolved "https://registry.npmjs.org/@rollup/plugin-inject/-/plugin-inject-5.0.5.tgz" + resolved "https://registry.yarnpkg.com/@rollup/plugin-inject/-/plugin-inject-5.0.5.tgz#616f3a73fe075765f91c5bec90176608bed277a3" integrity sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg== dependencies: "@rollup/pluginutils" "^5.0.1" @@ -215,26 +361,116 @@ "@rollup/pluginutils@^5.0.1": version "5.1.4" - resolved "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.4.tgz" + resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.1.4.tgz#bb94f1f9eaaac944da237767cdfee6c5b2262d4a" integrity sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ== dependencies: "@types/estree" "^1.0.0" estree-walker "^2.0.2" picomatch "^4.0.2" -"@rollup/rollup-linux-x64-gnu@4.34.9": - version "4.34.9" - resolved "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.34.9.tgz" - integrity sha512-FwBHNSOjUTQLP4MG7y6rR6qbGw4MFeQnIBrMe161QGaQoBQLqSUEKlHIiVgF3g/mb3lxlxzJOpIBhaP+C+KP2A== +"@rollup/rollup-android-arm-eabi@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.40.2.tgz#c228d00a41f0dbd6fb8b7ea819bbfbf1c1157a10" + integrity sha512-JkdNEq+DFxZfUwxvB58tHMHBHVgX23ew41g1OQinthJ+ryhdRk67O31S7sYw8u2lTjHUPFxwar07BBt1KHp/hg== -"@rollup/rollup-linux-x64-musl@4.34.9": - version "4.34.9" - resolved "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.34.9.tgz" - integrity sha512-cYRpV4650z2I3/s6+5/LONkjIz8MBeqrk+vPXV10ORBnshpn8S32bPqQ2Utv39jCiDcO2eJTuSlPXpnvmaIgRA== +"@rollup/rollup-android-arm64@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.40.2.tgz#e2b38d0c912169fd55d7e38d723aada208d37256" + integrity sha512-13unNoZ8NzUmnndhPTkWPWbX3vtHodYmy+I9kuLxN+F+l+x3LdVF7UCu8TWVMt1POHLh6oDHhnOA04n8oJZhBw== + +"@rollup/rollup-darwin-arm64@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.40.2.tgz#1fddb3690f2ae33df16d334c613377f05abe4878" + integrity sha512-Gzf1Hn2Aoe8VZzevHostPX23U7N5+4D36WJNHK88NZHCJr7aVMG4fadqkIf72eqVPGjGc0HJHNuUaUcxiR+N/w== + +"@rollup/rollup-darwin-x64@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.40.2.tgz#818298d11c8109e1112590165142f14be24b396d" + integrity sha512-47N4hxa01a4x6XnJoskMKTS8XZ0CZMd8YTbINbi+w03A2w4j1RTlnGHOz/P0+Bg1LaVL6ufZyNprSg+fW5nYQQ== + +"@rollup/rollup-freebsd-arm64@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.40.2.tgz#91a28dc527d5bed7f9ecf0e054297b3012e19618" + integrity sha512-8t6aL4MD+rXSHHZUR1z19+9OFJ2rl1wGKvckN47XFRVO+QL/dUSpKA2SLRo4vMg7ELA8pzGpC+W9OEd1Z/ZqoQ== + +"@rollup/rollup-freebsd-x64@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.40.2.tgz#28acadefa76b5c7bede1576e065b51d335c62c62" + integrity sha512-C+AyHBzfpsOEYRFjztcYUFsH4S7UsE9cDtHCtma5BK8+ydOZYgMmWg1d/4KBytQspJCld8ZIujFMAdKG1xyr4Q== + +"@rollup/rollup-linux-arm-gnueabihf@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.40.2.tgz#819691464179cbcd9a9f9d3dc7617954840c6186" + integrity sha512-de6TFZYIvJwRNjmW3+gaXiZ2DaWL5D5yGmSYzkdzjBDS3W+B9JQ48oZEsmMvemqjtAFzE16DIBLqd6IQQRuG9Q== + +"@rollup/rollup-linux-arm-musleabihf@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.40.2.tgz#d149207039e4189e267e8724050388effc80d704" + integrity sha512-urjaEZubdIkacKc930hUDOfQPysezKla/O9qV+O89enqsqUmQm8Xj8O/vh0gHg4LYfv7Y7UsE3QjzLQzDYN1qg== + +"@rollup/rollup-linux-arm64-gnu@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.40.2.tgz#fa72ebddb729c3c6d88973242f1a2153c83e86ec" + integrity sha512-KlE8IC0HFOC33taNt1zR8qNlBYHj31qGT1UqWqtvR/+NuCVhfufAq9fxO8BMFC22Wu0rxOwGVWxtCMvZVLmhQg== + +"@rollup/rollup-linux-arm64-musl@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.40.2.tgz#2054216e34469ab8765588ebf343d531fc3c9228" + integrity sha512-j8CgxvfM0kbnhu4XgjnCWJQyyBOeBI1Zq91Z850aUddUmPeQvuAy6OiMdPS46gNFgy8gN1xkYyLgwLYZG3rBOg== + +"@rollup/rollup-linux-loongarch64-gnu@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.40.2.tgz#818de242291841afbfc483a84f11e9c7a11959bc" + integrity sha512-Ybc/1qUampKuRF4tQXc7G7QY9YRyeVSykfK36Y5Qc5dmrIxwFhrOzqaVTNoZygqZ1ZieSWTibfFhQ5qK8jpWxw== + +"@rollup/rollup-linux-powerpc64le-gnu@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.40.2.tgz#0bb4cb8fc4a2c635f68c1208c924b2145eb647cb" + integrity sha512-3FCIrnrt03CCsZqSYAOW/k9n625pjpuMzVfeI+ZBUSDT3MVIFDSPfSUgIl9FqUftxcUXInvFah79hE1c9abD+Q== + +"@rollup/rollup-linux-riscv64-gnu@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.40.2.tgz#4b3b8e541b7b13e447ae07774217d98c06f6926d" + integrity sha512-QNU7BFHEvHMp2ESSY3SozIkBPaPBDTsfVNGx3Xhv+TdvWXFGOSH2NJvhD1zKAT6AyuuErJgbdvaJhYVhVqrWTg== + +"@rollup/rollup-linux-riscv64-musl@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.40.2.tgz#e065405e67d8bd64a7d0126c931bd9f03910817f" + integrity sha512-5W6vNYkhgfh7URiXTO1E9a0cy4fSgfE4+Hl5agb/U1sa0kjOLMLC1wObxwKxecE17j0URxuTrYZZME4/VH57Hg== + +"@rollup/rollup-linux-s390x-gnu@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.40.2.tgz#dda3265bbbfe16a5d0089168fd07f5ebb2a866fe" + integrity sha512-B7LKIz+0+p348JoAL4X/YxGx9zOx3sR+o6Hj15Y3aaApNfAshK8+mWZEf759DXfRLeL2vg5LYJBB7DdcleYCoQ== + +"@rollup/rollup-linux-x64-gnu@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.40.2.tgz#90993269b8b995b4067b7b9d72ff1c360ef90a17" + integrity sha512-lG7Xa+BmBNwpjmVUbmyKxdQJ3Q6whHjMjzQplOs5Z+Gj7mxPtWakGHqzMqNER68G67kmCX9qX57aRsW5V0VOng== + +"@rollup/rollup-linux-x64-musl@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.40.2.tgz#fdf5b09fd121eb8d977ebb0fda142c7c0167b8de" + integrity sha512-tD46wKHd+KJvsmije4bUskNuvWKFcTOIM9tZ/RrmIvcXnbi0YK/cKS9FzFtAm7Oxi2EhV5N2OpfFB348vSQRXA== + +"@rollup/rollup-win32-arm64-msvc@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.40.2.tgz#6397e1e012db64dfecfed0774cb9fcf89503d716" + integrity sha512-Bjv/HG8RRWLNkXwQQemdsWw4Mg+IJ29LK+bJPW2SCzPKOUaMmPEppQlu/Fqk1d7+DX3V7JbFdbkh/NMmurT6Pg== + +"@rollup/rollup-win32-ia32-msvc@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.40.2.tgz#df0991464a52a35506103fe18d29913bf8798a0c" + integrity sha512-dt1llVSGEsGKvzeIO76HToiYPNPYPkmjhMHhP00T9S4rDern8P2ZWvWAQUEJ+R1UdMWJ/42i/QqJ2WV765GZcA== + +"@rollup/rollup-win32-x64-msvc@4.40.2": + version "4.40.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.40.2.tgz#8dae04d01a2cbd84d6297d99356674c6b993f0fc" + integrity sha512-bwspbWB04XJpeElvsp+DCylKfF4trJDa2Y9Go8O6A7YLX2LIKGcNK/CYImJN6ZP4DcuOHB4Utl3iCbnR62DudA== "@spruceid/siwe-parser@^2.1.2": version "2.1.2" - resolved "https://registry.npmjs.org/@spruceid/siwe-parser/-/siwe-parser-2.1.2.tgz" + resolved "https://registry.yarnpkg.com/@spruceid/siwe-parser/-/siwe-parser-2.1.2.tgz#3e13e7d3ac0bfdaf109a07342590eb21daee2fc3" integrity sha512-d/r3S1LwJyMaRAKQ0awmo9whfXeE88Qt00vRj91q5uv5ATtWIQEGJ67Yr5eSZw5zp1/fZCXZYuEckt8lSkereQ== dependencies: "@noble/hashes" "^1.1.2" @@ -244,19 +480,19 @@ "@stablelib/binary@^1.0.1": version "1.0.1" - resolved "https://registry.npmjs.org/@stablelib/binary/-/binary-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/@stablelib/binary/-/binary-1.0.1.tgz#c5900b94368baf00f811da5bdb1610963dfddf7f" integrity sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q== dependencies: "@stablelib/int" "^1.0.1" "@stablelib/int@^1.0.1": version "1.0.1" - resolved "https://registry.npmjs.org/@stablelib/int/-/int-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/@stablelib/int/-/int-1.0.1.tgz#75928cc25d59d73d75ae361f02128588c15fd008" integrity sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w== "@stablelib/random@^1.0.1": version "1.0.2" - resolved "https://registry.npmjs.org/@stablelib/random/-/random-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/@stablelib/random/-/random-1.0.2.tgz#2dece393636489bf7e19c51229dd7900eddf742c" integrity sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w== dependencies: "@stablelib/binary" "^1.0.1" @@ -264,54 +500,54 @@ "@stablelib/wipe@^1.0.1": version "1.0.1" - resolved "https://registry.npmjs.org/@stablelib/wipe/-/wipe-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/@stablelib/wipe/-/wipe-1.0.1.tgz#d21401f1d59ade56a62e139462a97f104ed19a36" integrity sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg== -"@types/estree@^1.0.0", "@types/estree@^1.0.6", "@types/estree@1.0.6": - version "1.0.6" - resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz" - integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw== +"@types/estree@1.0.7", "@types/estree@^1.0.0", "@types/estree@^1.0.6": + version "1.0.7" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.7.tgz#4158d3105276773d5b7695cd4834b1722e4f37a8" + integrity sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ== "@types/json-schema@^7.0.15": version "7.0.15" - resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== "@types/minimist@^1.2.0": version "1.2.5" - resolved "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz" + resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz#ec10755e871497bcd83efe927e43ec46e8c0747e" integrity sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag== -"@types/node@^18.0.0 || ^20.0.0 || >=22.0.0", "@types/node@22.7.5": +"@types/node@22.7.5": version "22.7.5" - resolved "https://registry.npmjs.org/@types/node/-/node-22.7.5.tgz" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.7.5.tgz#cfde981727a7ab3611a481510b473ae54442b92b" integrity sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ== dependencies: undici-types "~6.19.2" "@types/normalize-package-data@^2.4.0": version "2.4.4" - resolved "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz" + resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz#56e2cc26c397c038fab0e3a917a12d5c5909e901" integrity sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA== "@types/parse-json@^4.0.0": version "4.0.2" - resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.2.tgz#5950e50960793055845e956c427fc2b0d70c5239" integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw== "@types/trusted-types@^2.0.7": version "2.0.7" - resolved "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz" + resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.7.tgz#baccb07a970b91707df3a3e8ba6896c57ead2d11" integrity sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw== "@vitejs/plugin-vue@^5.2.1": - version "5.2.1" - resolved "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.1.tgz" - integrity sha512-cxh314tzaWwOLqVes2gnnCtvBDcM1UMdn+iFR+UjAn411dPT3tOmqrJjbMd7koZpMAmBM/GqeV4n9ge7JSiJJQ== + version "5.2.4" + resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.2.4.tgz#9e8a512eb174bfc2a333ba959bbf9de428d89ad8" + integrity sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA== "@vue/compiler-core@3.5.13": version "3.5.13" - resolved "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.13.tgz" + resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.13.tgz#b0ae6c4347f60c03e849a05d34e5bf747c9bda05" integrity sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q== dependencies: "@babel/parser" "^7.25.3" @@ -322,7 +558,7 @@ "@vue/compiler-dom@3.5.13": version "3.5.13" - resolved "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz" + resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz#bb1b8758dbc542b3658dda973b98a1c9311a8a58" integrity sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA== dependencies: "@vue/compiler-core" "3.5.13" @@ -330,7 +566,7 @@ "@vue/compiler-sfc@3.5.13": version "3.5.13" - resolved "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz" + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz#461f8bd343b5c06fac4189c4fef8af32dea82b46" integrity sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ== dependencies: "@babel/parser" "^7.25.3" @@ -345,20 +581,20 @@ "@vue/compiler-ssr@3.5.13": version "3.5.13" - resolved "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz" + resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz#e771adcca6d3d000f91a4277c972a996d07f43ba" integrity sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA== dependencies: "@vue/compiler-dom" "3.5.13" "@vue/shared" "3.5.13" -"@vue/devtools-api@^6.5.0", "@vue/devtools-api@^6.6.4": +"@vue/devtools-api@^6.0.0-beta.11", "@vue/devtools-api@^6.5.0", "@vue/devtools-api@^6.6.4": version "6.6.4" - resolved "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.4.tgz" + resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.6.4.tgz#cbe97fe0162b365edc1dba80e173f90492535343" integrity sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g== "@vue/eslint-config-prettier@^10.2.0": version "10.2.0" - resolved "https://registry.npmjs.org/@vue/eslint-config-prettier/-/eslint-config-prettier-10.2.0.tgz" + resolved "https://registry.yarnpkg.com/@vue/eslint-config-prettier/-/eslint-config-prettier-10.2.0.tgz#49a5ed571acb81820a216e6d88ebf1f3def321d0" integrity sha512-GL3YBLwv/+b86yHcNNfPJxOTtVFJ4Mbc9UU3zR+KVoG7SwGTjPT+32fXamscNumElhcpXW3mT0DgzS9w32S7Bw== dependencies: eslint-config-prettier "^10.0.1" @@ -366,14 +602,14 @@ "@vue/reactivity@3.5.13": version "3.5.13" - resolved "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.13.tgz" + resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.5.13.tgz#b41ff2bb865e093899a22219f5b25f97b6fe155f" integrity sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg== dependencies: "@vue/shared" "3.5.13" "@vue/runtime-core@3.5.13": version "3.5.13" - resolved "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.13.tgz" + resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.5.13.tgz#1fafa4bf0b97af0ebdd9dbfe98cd630da363a455" integrity sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw== dependencies: "@vue/reactivity" "3.5.13" @@ -381,7 +617,7 @@ "@vue/runtime-dom@3.5.13": version "3.5.13" - resolved "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz" + resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz#610fc795de9246300e8ae8865930d534e1246215" integrity sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog== dependencies: "@vue/reactivity" "3.5.13" @@ -391,7 +627,7 @@ "@vue/server-renderer@3.5.13": version "3.5.13" - resolved "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.13.tgz" + resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.5.13.tgz#429ead62ee51de789646c22efe908e489aad46f7" integrity sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA== dependencies: "@vue/compiler-ssr" "3.5.13" @@ -399,27 +635,35 @@ "@vue/shared@3.5.13": version "3.5.13" - resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.5.13.tgz" + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.13.tgz#87b309a6379c22b926e696893237826f64339b6f" integrity sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ== +accepts@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-2.0.0.tgz#bbcf4ba5075467f3f2131eab3cffc73c2f5d7895" + integrity sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng== + dependencies: + mime-types "^3.0.0" + negotiator "^1.0.0" + acorn-jsx@^5.3.2: version "5.3.2" - resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== -"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", acorn@^8.14.0, acorn@^8.9.0: - version "8.14.0" - resolved "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz" - integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA== +acorn@^8.14.0, acorn@^8.9.0: + version "8.14.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.1.tgz#721d5dc10f7d5b5609a891773d47731796935dfb" + integrity sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg== aes-js@4.0.0-beta.5: version "4.0.0-beta.5" - resolved "https://registry.npmjs.org/aes-js/-/aes-js-4.0.0-beta.5.tgz" + resolved "https://registry.yarnpkg.com/aes-js/-/aes-js-4.0.0-beta.5.tgz#8d2452c52adedebc3a3e28465d858c11ca315873" integrity sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q== ajv@^6.12.4: version "6.12.6" - resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== dependencies: fast-deep-equal "^3.1.1" @@ -429,7 +673,7 @@ ajv@^6.12.4: ajv@^8.0.1: version "8.17.1" - resolved "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6" integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g== dependencies: fast-deep-equal "^3.1.3" @@ -439,58 +683,58 @@ ajv@^8.0.1: ansi-regex@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" apg-js@^4.3.0: version "4.4.0" - resolved "https://registry.npmjs.org/apg-js/-/apg-js-4.4.0.tgz" + resolved "https://registry.yarnpkg.com/apg-js/-/apg-js-4.4.0.tgz#09dcecab0731fbde233b9f2352fdd2d07e56b2cf" integrity sha512-fefmXFknJmtgtNEXfPwZKYkMFX4Fyeyz+fNF6JWp87biGOPslJbCBVU158zvKRZfHBKnJDy8CMM40oLFGkXT8Q== argparse@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== array-union@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== arrify@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== astral-regex@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== asynckit@^0.4.0: version "0.4.0" - resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== axios-mock-adapter@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/axios-mock-adapter/-/axios-mock-adapter-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/axios-mock-adapter/-/axios-mock-adapter-2.1.0.tgz#25ab2d7558f915e391744a40bbeb7374ad5985a4" integrity sha512-AZUe4OjECGCNNssH8SOdtneiQELsqTsat3SQQCWLPjN436/H+L9AjWfV7bF+Zg/YL9cgbhrz5671hoh+Tbn98w== dependencies: fast-deep-equal "^3.1.3" is-buffer "^2.0.5" -axios@^1.8.4, "axios@>= 0.17.0": - version "1.8.4" - resolved "https://registry.npmjs.org/axios/-/axios-1.8.4.tgz" - integrity sha512-eBSYY4Y68NNlHbHBMdeDmKNtDgXWhQsJcGqzO3iLUM0GraQFSS9cVgPX5I9b3lbdFKyYoAEGAZF1DwhTaljNAw== +axios@^1.8.4: + version "1.9.0" + resolved "https://registry.yarnpkg.com/axios/-/axios-1.9.0.tgz#25534e3b72b54540077d33046f77e3b8d7081901" + integrity sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg== dependencies: follow-redirects "^1.15.6" form-data "^4.0.0" @@ -498,27 +742,42 @@ axios@^1.8.4, "axios@>= 0.17.0": balanced-match@^1.0.0: version "1.0.2" - resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== balanced-match@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-2.0.0.tgz#dc70f920d78db8b858535795867bf48f820633d9" integrity sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA== base64-js@^1.3.1: version "1.5.1" - resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== +body-parser@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-2.2.0.tgz#f7a9656de305249a715b549b7b8fd1ab9dfddcfa" + integrity sha512-02qvAaxv8tp7fBa/mw1ga98OGm+eCbqzJOKoRt70sLmfEEi+jyBYVTDGfCL/k06/4EMk/z01gCe7HoCH/f2LTg== + dependencies: + bytes "^3.1.2" + content-type "^1.0.5" + debug "^4.4.0" + http-errors "^2.0.0" + iconv-lite "^0.6.3" + on-finished "^2.4.1" + qs "^6.14.0" + raw-body "^3.0.0" + type-is "^2.0.0" + boolbase@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== brace-expansion@^1.1.7: version "1.1.11" - resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== dependencies: balanced-match "^1.0.0" @@ -526,35 +785,48 @@ brace-expansion@^1.1.7: braces@^3.0.3: version "3.0.3" - resolved "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== dependencies: fill-range "^7.1.1" buffer@^6.0.3: version "6.0.3" - resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== dependencies: base64-js "^1.3.1" ieee754 "^1.2.1" +bytes@3.1.2, bytes@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== + call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz#4b5428c222be985d79c3d82657479dbe0b59b2d6" integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== dependencies: es-errors "^1.3.0" function-bind "^1.1.2" +call-bound@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz#238de935d2a2a692928c538c7ccfa91067fd062a" + integrity sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg== + dependencies: + call-bind-apply-helpers "^1.0.2" + get-intrinsic "^1.3.0" + callsites@^3.0.0: version "3.1.0" - resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== camelcase-keys@^6.2.2: version "6.2.2" - resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== dependencies: camelcase "^5.3.1" @@ -563,12 +835,12 @@ camelcase-keys@^6.2.2: camelcase@^5.3.1: version "5.3.1" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== chalk@^4.0.0: version "4.1.2" - resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== dependencies: ansi-styles "^4.1.0" @@ -576,43 +848,73 @@ chalk@^4.0.0: color-convert@^2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== dependencies: color-name "~1.1.4" color-name@~1.1.4: version "1.1.4" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== colord@^2.9.3: version "2.9.3" - resolved "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz" + resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== combined-stream@^1.0.8: version "1.0.8" - resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== dependencies: delayed-stream "~1.0.0" concat-map@0.0.1: version "0.0.1" - resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== connect-pg-simple@^10.0.0: version "10.0.0" - resolved "https://registry.npmjs.org/connect-pg-simple/-/connect-pg-simple-10.0.0.tgz" + resolved "https://registry.yarnpkg.com/connect-pg-simple/-/connect-pg-simple-10.0.0.tgz#972b08d9fc6a1861c523a6c9166240a24b4bc3ca" integrity sha512-pBGVazlqiMrackzCr0eKhn4LO5trJXsOX0nQoey9wCOayh80MYtThCbq8eoLsjpiWgiok/h+1/uti9/2/Una8A== dependencies: pg "^8.12.0" +content-disposition@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-1.0.0.tgz#844426cb398f934caefcbb172200126bc7ceace2" + integrity sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg== + dependencies: + safe-buffer "5.2.1" + +content-type@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" + integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== + +cookie-signature@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.2.2.tgz#57c7fc3cc293acab9fec54d73e15690ebe4a1793" + integrity sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg== + +cookie@^0.7.1: + version "0.7.2" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.2.tgz#556369c472a2ba910f2979891b526b3436237ed7" + integrity sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w== + +cors@^2.8.5: + version "2.8.5" + resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29" + integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g== + dependencies: + object-assign "^4" + vary "^1" + cosmiconfig@^7.1.0: version "7.1.0" - resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== dependencies: "@types/parse-json" "^4.0.0" @@ -621,9 +923,9 @@ cosmiconfig@^7.1.0: path-type "^4.0.0" yaml "^1.10.0" -cross-spawn@^7.0.6: +cross-spawn@^7.0.3, cross-spawn@^7.0.6: version "7.0.6" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== dependencies: path-key "^3.1.0" @@ -632,29 +934,29 @@ cross-spawn@^7.0.6: css-functions-list@^3.1.0: version "3.2.3" - resolved "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.3.tgz" + resolved "https://registry.yarnpkg.com/css-functions-list/-/css-functions-list-3.2.3.tgz#95652b0c24f0f59b291a9fc386041a19d4f40dbe" integrity sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA== cssesc@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== csstype@^3.1.3: version "3.1.3" - resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== -debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: +debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.3.5, debug@^4.4.0: version "4.4.0" - resolved "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a" integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA== dependencies: ms "^2.1.3" decamelize-keys@^1.1.0: version "1.1.1" - resolved "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8" integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg== dependencies: decamelize "^1.1.0" @@ -662,29 +964,34 @@ decamelize-keys@^1.1.0: decamelize@^1.1.0, decamelize@^1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== deep-is@^0.1.3: version "0.1.4" - resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== delayed-stream@~1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== +depd@2.0.0, depd@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + dir-glob@^3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== dependencies: path-type "^4.0.0" dom-serializer@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== dependencies: domelementtype "^2.3.0" @@ -693,26 +1000,26 @@ dom-serializer@^2.0.0: domelementtype@^2.3.0: version "2.3.0" - resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== domhandler@^5.0.2, domhandler@^5.0.3: version "5.0.3" - resolved "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== dependencies: domelementtype "^2.3.0" dompurify@^3.2.4: - version "3.2.4" - resolved "https://registry.npmjs.org/dompurify/-/dompurify-3.2.4.tgz" - integrity sha512-ysFSFEDVduQpyhzAob/kkuJjf5zWkZD8/A9ywSp1byueyuCfHamrCBa14/Oc2iiB0e51B+NpxSl5gmzn+Ms/mg== + version "3.2.5" + resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.2.5.tgz#11b108656a5fb72b24d916df17a1421663d7129c" + integrity sha512-mLPd29uoRe9HpvwP2TxClGQBzGXeEC/we/q+bFlmPPmj2p2Ugl3r6ATu/UU1v77DXNcehiBg9zsr1dREyA/dJQ== optionalDependencies: "@types/trusted-types" "^2.0.7" domutils@^3.0.1: version "3.2.2" - resolved "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.2.2.tgz#edbfe2b668b0c1d97c24baf0f1062b132221bc78" integrity sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw== dependencies: dom-serializer "^2.0.0" @@ -721,50 +1028,60 @@ domutils@^3.0.1: dunder-proto@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a" integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== dependencies: call-bind-apply-helpers "^1.0.1" es-errors "^1.3.0" gopd "^1.2.0" +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== + emoji-regex@^8.0.0: version "8.0.0" - resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== +encodeurl@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58" + integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== + entities@^4.2.0, entities@^4.4.0, entities@^4.5.0: version "4.5.0" - resolved "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== error-ex@^1.3.1: version "1.3.2" - resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== dependencies: is-arrayish "^0.2.1" es-define-property@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa" integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== es-errors@^1.3.0: version "1.3.0" - resolved "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz" + resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== es-object-atoms@^1.0.0, es-object-atoms@^1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz#1c4f2c4837327597ce69d2ca190a7fdd172338c1" integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA== dependencies: es-errors "^1.3.0" es-set-tostringtag@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz#f31dbbe0c183b00a6d26eb6325c810c0fd18bd4d" integrity sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA== dependencies: es-errors "^1.3.0" @@ -773,58 +1090,63 @@ es-set-tostringtag@^2.1.0: hasown "^2.0.2" esbuild@^0.25.0: - version "0.25.0" - resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.25.0.tgz" - integrity sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw== + version "0.25.4" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.4.tgz#bb9a16334d4ef2c33c7301a924b8b863351a0854" + integrity sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q== optionalDependencies: - "@esbuild/aix-ppc64" "0.25.0" - "@esbuild/android-arm" "0.25.0" - "@esbuild/android-arm64" "0.25.0" - "@esbuild/android-x64" "0.25.0" - "@esbuild/darwin-arm64" "0.25.0" - "@esbuild/darwin-x64" "0.25.0" - "@esbuild/freebsd-arm64" "0.25.0" - "@esbuild/freebsd-x64" "0.25.0" - "@esbuild/linux-arm" "0.25.0" - "@esbuild/linux-arm64" "0.25.0" - "@esbuild/linux-ia32" "0.25.0" - "@esbuild/linux-loong64" "0.25.0" - "@esbuild/linux-mips64el" "0.25.0" - "@esbuild/linux-ppc64" "0.25.0" - "@esbuild/linux-riscv64" "0.25.0" - "@esbuild/linux-s390x" "0.25.0" - "@esbuild/linux-x64" "0.25.0" - "@esbuild/netbsd-arm64" "0.25.0" - "@esbuild/netbsd-x64" "0.25.0" - "@esbuild/openbsd-arm64" "0.25.0" - "@esbuild/openbsd-x64" "0.25.0" - "@esbuild/sunos-x64" "0.25.0" - "@esbuild/win32-arm64" "0.25.0" - "@esbuild/win32-ia32" "0.25.0" - "@esbuild/win32-x64" "0.25.0" + "@esbuild/aix-ppc64" "0.25.4" + "@esbuild/android-arm" "0.25.4" + "@esbuild/android-arm64" "0.25.4" + "@esbuild/android-x64" "0.25.4" + "@esbuild/darwin-arm64" "0.25.4" + "@esbuild/darwin-x64" "0.25.4" + "@esbuild/freebsd-arm64" "0.25.4" + "@esbuild/freebsd-x64" "0.25.4" + "@esbuild/linux-arm" "0.25.4" + "@esbuild/linux-arm64" "0.25.4" + "@esbuild/linux-ia32" "0.25.4" + "@esbuild/linux-loong64" "0.25.4" + "@esbuild/linux-mips64el" "0.25.4" + "@esbuild/linux-ppc64" "0.25.4" + "@esbuild/linux-riscv64" "0.25.4" + "@esbuild/linux-s390x" "0.25.4" + "@esbuild/linux-x64" "0.25.4" + "@esbuild/netbsd-arm64" "0.25.4" + "@esbuild/netbsd-x64" "0.25.4" + "@esbuild/openbsd-arm64" "0.25.4" + "@esbuild/openbsd-x64" "0.25.4" + "@esbuild/sunos-x64" "0.25.4" + "@esbuild/win32-arm64" "0.25.4" + "@esbuild/win32-ia32" "0.25.4" + "@esbuild/win32-x64" "0.25.4" + +escape-html@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== escape-string-regexp@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== -eslint-config-prettier@*, eslint-config-prettier@^10.0.1, eslint-config-prettier@^10.0.2: - version "10.0.2" - resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.0.2.tgz" - integrity sha512-1105/17ZIMjmCOJOPNfVdbXafLCLj3hPmkmB7dLgt7XsQ/zkxSuDerE/xgO3RxoHysR1N1whmquY0lSn2O0VLg== +eslint-config-prettier@^10.0.1, eslint-config-prettier@^10.0.2: + version "10.1.5" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-10.1.5.tgz#00c18d7225043b6fbce6a665697377998d453782" + integrity sha512-zc1UmCpNltmVY34vuLRV61r1K27sWuX39E+uyUnY8xS2Bex88VV9cugG+UZbRSRGtGyFboj+D8JODyme1plMpw== eslint-plugin-prettier@^5.2.2, eslint-plugin-prettier@^5.2.3: - version "5.2.3" - resolved "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.3.tgz" - integrity sha512-qJ+y0FfCp/mQYQ/vWQ3s7eUlFEL4PyKfAJxsnYTJ4YT73nsJBWqmEpFryxV9OeUiqmsTsYJ5Y+KDNaeP31wrRw== + version "5.4.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.4.0.tgz#54d4748904e58eaf1ffe26c4bffa4986ca7f952b" + integrity sha512-BvQOvUhkVQM1i63iMETK9Hjud9QhqBnbtT1Zc642p9ynzBuCe5pybkOnvqZIBypXmMlsGcnU4HZ8sCTPfpAexA== dependencies: prettier-linter-helpers "^1.0.0" - synckit "^0.9.1" + synckit "^0.11.0" eslint-plugin-vue@^9.32.0: - version "9.32.0" - resolved "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.32.0.tgz" - integrity sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug== + version "9.33.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.33.0.tgz#de33eba8f78e1d172c59c8ec7fbfd60c6ca35c39" + integrity sha512-174lJKuNsuDIlLpjeXc5E2Tss8P44uIimAfGD0b90k0NoirJqpG7stLuU9Vp/9ioTOrQdWVREc4mRd1BD+CvGw== dependencies: "@eslint-community/eslint-utils" "^4.4.0" globals "^13.24.0" @@ -837,50 +1159,47 @@ eslint-plugin-vue@^9.32.0: eslint-scope@^7.1.1: version "7.2.2" - resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== dependencies: esrecurse "^4.3.0" estraverse "^5.2.0" -eslint-scope@^8.2.0: - version "8.2.0" - resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz" - integrity sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A== +eslint-scope@^8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-8.3.0.tgz#10cd3a918ffdd722f5f3f7b5b83db9b23c87340d" + integrity sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ== dependencies: esrecurse "^4.3.0" estraverse "^5.2.0" -eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1: +eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: version "3.4.3" - resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz" - integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== - -eslint-visitor-keys@^3.4.3: - version "3.4.3" - resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== eslint-visitor-keys@^4.2.0: version "4.2.0" - resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz#687bacb2af884fcdda8a6e7d65c606f46a14cd45" integrity sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw== -"eslint@^6.0.0 || ^7.0.0 || >=8.0.0", "eslint@^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", eslint@^9.21.0, "eslint@>= 8.21.0", eslint@>=6.0.0, eslint@>=7.0.0, eslint@>=8.0.0: - version "9.21.0" - resolved "https://registry.npmjs.org/eslint/-/eslint-9.21.0.tgz" - integrity sha512-KjeihdFqTPhOMXTt7StsDxriV4n66ueuF/jfPNC3j/lduHwr/ijDwJMsF+wyMJethgiKi5wniIE243vi07d3pg== +eslint@^9.21.0: + version "9.26.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.26.0.tgz#978fe029adc2aceed28ab437bca876e83461c3b4" + integrity sha512-Hx0MOjPh6uK9oq9nVsATZKE/Wlbai7KFjfCuw9UHaguDW3x+HF0O5nIi3ud39TWgrTjTO5nHxmL3R1eANinWHQ== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@eslint-community/regexpp" "^4.12.1" - "@eslint/config-array" "^0.19.2" - "@eslint/core" "^0.12.0" - "@eslint/eslintrc" "^3.3.0" - "@eslint/js" "9.21.0" - "@eslint/plugin-kit" "^0.2.7" + "@eslint/config-array" "^0.20.0" + "@eslint/config-helpers" "^0.2.1" + "@eslint/core" "^0.13.0" + "@eslint/eslintrc" "^3.3.1" + "@eslint/js" "9.26.0" + "@eslint/plugin-kit" "^0.2.8" "@humanfs/node" "^0.16.6" "@humanwhocodes/module-importer" "^1.0.1" "@humanwhocodes/retry" "^0.4.2" + "@modelcontextprotocol/sdk" "^1.8.0" "@types/estree" "^1.0.6" "@types/json-schema" "^7.0.15" ajv "^6.12.4" @@ -888,7 +1207,7 @@ eslint-visitor-keys@^4.2.0: cross-spawn "^7.0.6" debug "^4.3.2" escape-string-regexp "^4.0.0" - eslint-scope "^8.2.0" + eslint-scope "^8.3.0" eslint-visitor-keys "^4.2.0" espree "^10.3.0" esquery "^1.5.0" @@ -905,10 +1224,11 @@ eslint-visitor-keys@^4.2.0: minimatch "^3.1.2" natural-compare "^1.4.0" optionator "^0.9.3" + zod "^3.24.2" espree@^10.0.1, espree@^10.3.0: version "10.3.0" - resolved "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz" + resolved "https://registry.yarnpkg.com/espree/-/espree-10.3.0.tgz#29267cf5b0cb98735b65e64ba07e0ed49d1eed8a" integrity sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg== dependencies: acorn "^8.14.0" @@ -917,7 +1237,7 @@ espree@^10.0.1, espree@^10.3.0: espree@^9.3.1: version "9.6.1" - resolved "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== dependencies: acorn "^8.9.0" @@ -926,36 +1246,41 @@ espree@^9.3.1: esquery@^1.4.0, esquery@^1.5.0: version "1.6.0" - resolved "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7" integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg== dependencies: estraverse "^5.1.0" esrecurse@^4.3.0: version "4.3.0" - resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== dependencies: estraverse "^5.2.0" estraverse@^5.1.0, estraverse@^5.2.0: version "5.3.0" - resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== estree-walker@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== esutils@^2.0.2: version "2.0.3" - resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== -"ethers@^5.6.8 || ^6.0.8", ethers@6.13.5: +etag@^1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== + +ethers@6.13.5: version "6.13.5" - resolved "https://registry.npmjs.org/ethers/-/ethers-6.13.5.tgz" + resolved "https://registry.yarnpkg.com/ethers/-/ethers-6.13.5.tgz#8c1d6ac988ac08abc3c1d8fabbd4b8b602851ac4" integrity sha512-+knKNieu5EKRThQJWwqaJ10a6HE9sSehGeqWN65//wE7j47ZpFhKAnHB/JJFibwwg61I/koxaPsXbXpD/skNOQ== dependencies: "@adraffy/ens-normalize" "1.10.1" @@ -966,19 +1291,69 @@ esutils@^2.0.2: tslib "2.7.0" ws "8.17.1" +eventsource-parser@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/eventsource-parser/-/eventsource-parser-3.0.1.tgz#5e358dba9a55ba64ca90da883c4ca35bd82467bd" + integrity sha512-VARTJ9CYeuQYb0pZEPbzi740OWFgpHe7AYJ2WFZVnUDUQp5Dk2yJUgF36YsZ81cOyxT0QxmXD2EQpapAouzWVA== + +eventsource@^3.0.2: + version "3.0.7" + resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-3.0.7.tgz#1157622e2f5377bb6aef2114372728ba0c156989" + integrity sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA== + dependencies: + eventsource-parser "^3.0.1" + +express-rate-limit@^7.5.0: + version "7.5.0" + resolved "https://registry.yarnpkg.com/express-rate-limit/-/express-rate-limit-7.5.0.tgz#6a67990a724b4fbbc69119419feef50c51e8b28f" + integrity sha512-eB5zbQh5h+VenMPM3fh+nw1YExi5nMr6HUCR62ELSP11huvxm/Uir1H1QEyTkk5QX6A58pX6NmaTMceKZ0Eodg== + +express@^5.0.1: + version "5.1.0" + resolved "https://registry.yarnpkg.com/express/-/express-5.1.0.tgz#d31beaf715a0016f0d53f47d3b4d7acf28c75cc9" + integrity sha512-DT9ck5YIRU+8GYzzU5kT3eHGA5iL+1Zd0EutOmTE9Dtk+Tvuzd23VBU+ec7HPNSTxXYO55gPV/hq4pSBJDjFpA== + dependencies: + accepts "^2.0.0" + body-parser "^2.2.0" + content-disposition "^1.0.0" + content-type "^1.0.5" + cookie "^0.7.1" + cookie-signature "^1.2.1" + debug "^4.4.0" + encodeurl "^2.0.0" + escape-html "^1.0.3" + etag "^1.8.1" + finalhandler "^2.1.0" + fresh "^2.0.0" + http-errors "^2.0.0" + merge-descriptors "^2.0.0" + mime-types "^3.0.0" + on-finished "^2.4.1" + once "^1.4.0" + parseurl "^1.3.3" + proxy-addr "^2.0.7" + qs "^6.14.0" + range-parser "^1.2.1" + router "^2.2.0" + send "^1.1.0" + serve-static "^2.2.0" + statuses "^2.0.1" + type-is "^2.0.1" + vary "^1.1.2" + fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" - resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== fast-diff@^1.1.2: version "1.3.0" - resolved "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz" + resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.3.0.tgz#ece407fa550a64d638536cd727e129c61616e0f0" integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== fast-glob@^3.2.12, fast-glob@^3.2.9: version "3.3.3" - resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz#d06d585ce8dba90a16b0505c543c3ccfb3aeb818" integrity sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg== dependencies: "@nodelib/fs.stat" "^2.0.2" @@ -989,55 +1364,72 @@ fast-glob@^3.2.12, fast-glob@^3.2.9: fast-json-stable-stringify@^2.0.0: version "2.1.0" - resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== fast-levenshtein@^2.0.6: version "2.0.6" - resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== fast-uri@^3.0.1: version "3.0.6" - resolved "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz" + resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.6.tgz#88f130b77cfaea2378d56bf970dea21257a68748" integrity sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw== fastest-levenshtein@^1.0.16: version "1.0.16" - resolved "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz" + resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== fastq@^1.6.0: version "1.19.1" - resolved "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.19.1.tgz#d50eaba803c8846a883c16492821ebcd2cda55f5" integrity sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ== dependencies: reusify "^1.0.4" +fdir@^6.4.4: + version "6.4.4" + resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.4.4.tgz#1cfcf86f875a883e19a8fab53622cfe992e8d2f9" + integrity sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg== + file-entry-cache@^6.0.1: version "6.0.1" - resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== dependencies: flat-cache "^3.0.4" file-entry-cache@^8.0.0: version "8.0.0" - resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz#7787bddcf1131bffb92636c69457bbc0edd6d81f" integrity sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ== dependencies: flat-cache "^4.0.0" fill-range@^7.1.1: version "7.1.1" - resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== dependencies: to-regex-range "^5.0.1" +finalhandler@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-2.1.0.tgz#72306373aa89d05a8242ed569ed86a1bff7c561f" + integrity sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q== + dependencies: + debug "^4.4.0" + encodeurl "^2.0.0" + escape-html "^1.0.3" + on-finished "^2.4.1" + parseurl "^1.3.3" + statuses "^2.0.1" + find-up@^4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== dependencies: locate-path "^5.0.0" @@ -1045,7 +1437,7 @@ find-up@^4.1.0: find-up@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== dependencies: locate-path "^6.0.0" @@ -1053,7 +1445,7 @@ find-up@^5.0.0: flat-cache@^3.0.4: version "3.2.0" - resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee" integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== dependencies: flatted "^3.2.9" @@ -1062,7 +1454,7 @@ flat-cache@^3.0.4: flat-cache@^4.0.0: version "4.0.1" - resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-4.0.1.tgz#0ece39fcb14ee012f4b0410bd33dd9c1f011127c" integrity sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw== dependencies: flatted "^3.2.9" @@ -1070,17 +1462,17 @@ flat-cache@^4.0.0: flatted@^3.2.9: version "3.3.3" - resolved "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.3.tgz#67c8fad95454a7c7abebf74bb78ee74a44023358" integrity sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg== follow-redirects@^1.15.6: version "1.15.9" - resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.9.tgz#a604fa10e443bf98ca94228d9eebcc2e8a2c8ee1" integrity sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ== form-data@^4.0.0: version "4.0.2" - resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.2.tgz#35cabbdd30c3ce73deb2c42d3c8d3ed9ca51794c" integrity sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w== dependencies: asynckit "^0.4.0" @@ -1088,19 +1480,34 @@ form-data@^4.0.0: es-set-tostringtag "^2.1.0" mime-types "^2.1.12" +forwarded@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== + +fresh@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-2.0.0.tgz#8dd7df6a1b3a1b3a5cf186c05a5dd267622635a4" + integrity sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A== + fs.realpath@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== +fsevents@~2.3.2, fsevents@~2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== + function-bind@^1.1.2: version "1.1.2" - resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== -get-intrinsic@^1.2.6: +get-intrinsic@^1.2.5, get-intrinsic@^1.2.6, get-intrinsic@^1.3.0: version "1.3.0" - resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz#743f0e3b6964a93a5491ed1bffaae054d7f98d01" integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== dependencies: call-bind-apply-helpers "^1.0.2" @@ -1116,7 +1523,7 @@ get-intrinsic@^1.2.6: get-proto@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz#150b3f2743869ef3e851ec0c49d15b1d14d00ee1" integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g== dependencies: dunder-proto "^1.0.1" @@ -1124,21 +1531,21 @@ get-proto@^1.0.1: glob-parent@^5.1.2: version "5.1.2" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== dependencies: is-glob "^4.0.1" glob-parent@^6.0.2: version "6.0.2" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== dependencies: is-glob "^4.0.3" glob@^7.1.3: version "7.2.3" - resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== dependencies: fs.realpath "^1.0.0" @@ -1150,14 +1557,14 @@ glob@^7.1.3: global-modules@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== dependencies: global-prefix "^3.0.0" global-prefix@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== dependencies: ini "^1.3.5" @@ -1166,24 +1573,24 @@ global-prefix@^3.0.0: globals@^13.24.0: version "13.24.0" - resolved "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171" integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== dependencies: type-fest "^0.20.2" globals@^14.0.0: version "14.0.0" - resolved "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz" + resolved "https://registry.yarnpkg.com/globals/-/globals-14.0.0.tgz#898d7413c29babcf6bafe56fcadded858ada724e" integrity sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ== globals@^16.0.0: - version "16.0.0" - resolved "https://registry.npmjs.org/globals/-/globals-16.0.0.tgz" - integrity sha512-iInW14XItCXET01CQFqudPOWP2jYMl7T+QRQT+UNcR/iQncN/F0UNpgd76iFkBPgNQb4+X3LV9tLJYzwh+Gl3A== + version "16.1.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-16.1.0.tgz#ee6ab147d41c64e9f2beaaaf66572d18df8e1e60" + integrity sha512-aibexHNbb/jiUSObBgpHLj+sIuUmJnYcgXBlrfsiDZ9rt4aF2TFRbyLgZ2iFQuVZ1K5Mx3FVkbKRSgKrbK3K2g== globby@^11.1.0: version "11.1.0" - resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== dependencies: array-union "^2.1.0" @@ -1195,63 +1602,63 @@ globby@^11.1.0: globjoin@^0.1.4: version "0.1.4" - resolved "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz" + resolved "https://registry.yarnpkg.com/globjoin/-/globjoin-0.1.4.tgz#2f4494ac8919e3767c5cbb691e9f463324285d43" integrity sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg== gopd@^1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== hard-rejection@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== has-flag@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== has-symbols@^1.0.3, has-symbols@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338" integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== has-tostringtag@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== dependencies: has-symbols "^1.0.3" hasown@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== dependencies: function-bind "^1.1.2" hosted-git-info@^2.1.4: version "2.8.9" - resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== hosted-git-info@^4.0.1: version "4.1.0" - resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== dependencies: lru-cache "^6.0.0" html-tags@^3.2.0: version "3.3.1" - resolved "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz" + resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.3.1.tgz#a04026a18c882e4bba8a01a3d39cfe465d40b5ce" integrity sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ== htmlparser2@^8.0.0: version "8.0.2" - resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-8.0.2.tgz#f002151705b383e62433b5cf466f5b716edaec21" integrity sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA== dependencies: domelementtype "^2.3.0" @@ -1259,19 +1666,37 @@ htmlparser2@^8.0.0: domutils "^3.0.1" entities "^4.4.0" +http-errors@2.0.0, http-errors@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" + integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== + dependencies: + depd "2.0.0" + inherits "2.0.4" + setprototypeof "1.2.0" + statuses "2.0.1" + toidentifier "1.0.1" + +iconv-lite@0.6.3, iconv-lite@^0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + ieee754@^1.2.1: version "1.2.1" - resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== ignore@^5.2.0, ignore@^5.2.1: version "5.3.2" - resolved "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g== import-fresh@^3.2.1: version "3.3.1" - resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.1.tgz#9cecb56503c0ada1f2741dbbd6546e4b13b57ccf" integrity sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ== dependencies: parent-module "^1.0.0" @@ -1279,153 +1704,163 @@ import-fresh@^3.2.1: import-lazy@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-4.0.0.tgz#e8eb627483a0a43da3c03f3e35548be5cb0cc153" integrity sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw== imurmurhash@^0.1.4: version "0.1.4" - resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== indent-string@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== inflight@^1.0.4: version "1.0.6" - resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== dependencies: once "^1.3.0" wrappy "1" -inherits@2: +inherits@2, inherits@2.0.4: version "2.0.4" - resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== ini@^1.3.5: version "1.3.8" - resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== +ipaddr.js@1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + is-arrayish@^0.2.1: version "0.2.1" - resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== is-buffer@^2.0.5: version "2.0.5" - resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== is-core-module@^2.16.0, is-core-module@^2.5.0: version "2.16.1" - resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz#2a98801a849f43e2add644fbb6bc6229b19a4ef4" integrity sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w== dependencies: hasown "^2.0.2" is-extglob@^2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== is-fullwidth-code-point@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: version "4.0.3" - resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== dependencies: is-extglob "^2.1.1" is-number@^7.0.0: version "7.0.0" - resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== is-plain-obj@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== is-plain-object@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== +is-promise@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-4.0.0.tgz#42ff9f84206c1991d26debf520dd5c01042dd2f3" + integrity sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ== + isexe@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== js-tokens@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== js-tokens@^9.0.0: version "9.0.1" - resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-9.0.1.tgz" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-9.0.1.tgz#2ec43964658435296f6761b34e10671c2d9527f4" integrity sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ== js-yaml@^4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== dependencies: argparse "^2.0.1" json-buffer@3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== json-parse-even-better-errors@^2.3.0: version "2.3.1" - resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== json-schema-traverse@^0.4.1: version "0.4.1" - resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== json-schema-traverse@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== keyv@^4.5.3, keyv@^4.5.4: version "4.5.4" - resolved "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== dependencies: json-buffer "3.0.1" kind-of@^6.0.2, kind-of@^6.0.3: version "6.0.3" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== known-css-properties@^0.26.0: version "0.26.0" - resolved "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.26.0.tgz" + resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.26.0.tgz#008295115abddc045a9f4ed7e2a84dc8b3a77649" integrity sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg== levn@^0.4.1: version "0.4.1" - resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== dependencies: prelude-ls "^1.2.1" @@ -1433,80 +1868,85 @@ levn@^0.4.1: lines-and-columns@^1.1.6: version "1.2.4" - resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== locate-path@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== dependencies: p-locate "^4.1.0" locate-path@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== dependencies: p-locate "^5.0.0" lodash.merge@^4.6.2: version "4.6.2" - resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== lodash.truncate@^4.4.2: version "4.4.2" - resolved "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz" + resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== lodash@^4.17.21: version "4.17.21" - resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== lru-cache@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== dependencies: yallist "^4.0.0" magic-string@^0.30.11, magic-string@^0.30.3: version "0.30.17" - resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.17.tgz#450a449673d2460e5bbcfba9a61916a1714c7453" integrity sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA== dependencies: "@jridgewell/sourcemap-codec" "^1.5.0" map-obj@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== map-obj@^4.0.0: version "4.3.0" - resolved "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== marked@^15.0.7: - version "15.0.7" - resolved "https://registry.npmjs.org/marked/-/marked-15.0.7.tgz" - integrity sha512-dgLIeKGLx5FwziAnsk4ONoGwHwGPJzselimvlVskE9XLN4Orv9u2VA3GWw/lYUqjfA0rUT/6fqKwfZJapP9BEg== + version "15.0.11" + resolved "https://registry.yarnpkg.com/marked/-/marked-15.0.11.tgz#08a8d12c285e16259e44287b89ce0d871c9d55e8" + integrity sha512-1BEXAU2euRCG3xwgLVT1y0xbJEld1XOrmRJpUwRCcy7rxhSCwMrmEu9LXoPhHSCJG41V7YcQ2mjKRr5BA3ITIA== math-intrinsics@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9" integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== mathml-tag-names@^2.1.3: version "2.1.3" - resolved "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz" + resolved "https://registry.yarnpkg.com/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz#4ddadd67308e780cf16a47685878ee27b736a0a3" integrity sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg== +media-typer@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-1.1.0.tgz#6ab74b8f2d3320f2064b2a87a38e7931ff3a5561" + integrity sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw== + meow@^9.0.0: version "9.0.0" - resolved "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz" + resolved "https://registry.yarnpkg.com/meow/-/meow-9.0.0.tgz#cd9510bc5cac9dee7d03c73ee1f9ad959f4ea364" integrity sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ== dependencies: "@types/minimist" "^1.2.0" @@ -1522,14 +1962,19 @@ meow@^9.0.0: type-fest "^0.18.0" yargs-parser "^20.2.3" +merge-descriptors@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-2.0.0.tgz#ea922f660635a2249ee565e0449f951e6b603808" + integrity sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g== + merge2@^1.3.0, merge2@^1.4.1: version "1.4.1" - resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== micromatch@^4.0.5, micromatch@^4.0.8: version "4.0.8" - resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== dependencies: braces "^3.0.3" @@ -1537,31 +1982,43 @@ micromatch@^4.0.5, micromatch@^4.0.8: mime-db@1.52.0: version "1.52.0" - resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== +mime-db@^1.54.0: + version "1.54.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.54.0.tgz#cddb3ee4f9c64530dff640236661d42cb6a314f5" + integrity sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ== + mime-types@^2.1.12: version "2.1.35" - resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: mime-db "1.52.0" +mime-types@^3.0.0, mime-types@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-3.0.1.tgz#b1d94d6997a9b32fd69ebaed0db73de8acb519ce" + integrity sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA== + dependencies: + mime-db "^1.54.0" + min-indent@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== dependencies: brace-expansion "^1.1.7" minimist-options@4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== dependencies: arrify "^1.0.1" @@ -1570,22 +2027,27 @@ minimist-options@4.1.0: ms@^2.1.3: version "2.1.3" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== nanoid@^3.3.8: - version "3.3.8" - resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz" - integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w== + version "3.3.11" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.11.tgz#4f4f112cefbe303202f2199838128936266d185b" + integrity sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w== natural-compare@^1.4.0: version "1.4.0" - resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== +negotiator@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-1.0.0.tgz#b6c91bb47172d69f93cfd7c357bbb529019b5f6a" + integrity sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg== + normalize-package-data@^2.5.0: version "2.5.0" - resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== dependencies: hosted-git-info "^2.1.4" @@ -1595,7 +2057,7 @@ normalize-package-data@^2.5.0: normalize-package-data@^3.0.0: version "3.0.3" - resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== dependencies: hosted-git-info "^4.0.1" @@ -1605,26 +2067,43 @@ normalize-package-data@^3.0.0: normalize-path@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== nth-check@^2.1.1: version "2.1.1" - resolved "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== dependencies: boolbase "^1.0.0" -once@^1.3.0: +object-assign@^4: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-inspect@^1.13.3: + version "1.13.4" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz#8375265e21bc20d0fa582c22e1b13485d6e00213" + integrity sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew== + +on-finished@^2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== + dependencies: + ee-first "1.1.1" + +once@^1.3.0, once@^1.4.0: version "1.4.0" - resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== dependencies: wrappy "1" optionator@^0.9.3: version "0.9.4" - resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734" integrity sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g== dependencies: deep-is "^0.1.3" @@ -1636,47 +2115,47 @@ optionator@^0.9.3: p-limit@^2.2.0: version "2.3.0" - resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== dependencies: p-try "^2.0.0" p-limit@^3.0.2: version "3.1.0" - resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== dependencies: yocto-queue "^0.1.0" p-locate@^4.1.0: version "4.1.0" - resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== dependencies: p-limit "^2.2.0" p-locate@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== dependencies: p-limit "^3.0.2" p-try@^2.0.0: version "2.2.0" - resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== parent-module@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== dependencies: callsites "^3.0.0" parse-json@^5.0.0: version "5.2.0" - resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== dependencies: "@babel/code-frame" "^7.0.0" @@ -1684,59 +2163,69 @@ parse-json@^5.0.0: json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" +parseurl@^1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + path-exists@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== path-is-absolute@^1.0.0: version "1.0.1" - resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== path-key@^3.1.0: version "3.1.1" - resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== path-parse@^1.0.7: version "1.0.7" - resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== +path-to-regexp@^8.0.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-8.2.0.tgz#73990cc29e57a3ff2a0d914095156df5db79e8b4" + integrity sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ== + path-type@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== -pg-cloudflare@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.1.1.tgz" - integrity sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q== +pg-cloudflare@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/pg-cloudflare/-/pg-cloudflare-1.2.5.tgz#2e3649c38a7a9c74a7e5327c8098a2fd9af595bd" + integrity sha512-OOX22Vt0vOSRrdoUPKJ8Wi2OpE/o/h9T8X1s4qSkCedbNah9ei2W2765be8iMVxQUsvgT7zIAT2eIa9fs5+vtg== -pg-connection-string@^2.7.0: - version "2.7.0" - resolved "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.7.0.tgz" - integrity sha512-PI2W9mv53rXJQEOb8xNR8lH7Hr+EKa6oJa38zsK0S/ky2er16ios1wLKhZyxzD7jUReiWokc9WK5nxSnC7W1TA== +pg-connection-string@^2.8.5: + version "2.8.5" + resolved "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-2.8.5.tgz#82cefd0269cb64a09603342d9b69e8392e6eb6cd" + integrity sha512-Ni8FuZ8yAF+sWZzojvtLE2b03cqjO5jNULcHFfM9ZZ0/JXrgom5pBREbtnAw7oxsxJqHw9Nz/XWORUEL3/IFow== pg-int8@1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz#943bd463bf5b71b4170115f80f8efc9a0c0eb78c" integrity sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw== -pg-pool@^3.7.1: - version "3.7.1" - resolved "https://registry.npmjs.org/pg-pool/-/pg-pool-3.7.1.tgz" - integrity sha512-xIOsFoh7Vdhojas6q3596mXFsR8nwBQBXX5JiV7p9buEVAGqYL4yFzclON5P9vFrpu1u7Zwl2oriyDa89n0wbw== +pg-pool@^3.9.6: + version "3.9.6" + resolved "https://registry.yarnpkg.com/pg-pool/-/pg-pool-3.9.6.tgz#c6fde89dee615d6c262724e68a3a37e9593157fc" + integrity sha512-rFen0G7adh1YmgvrmE5IPIqbb+IgEzENUm+tzm6MLLDSlPRoZVhzU1WdML9PV2W5GOdRA9qBKURlbt1OsXOsPw== -pg-protocol@^1.7.1: - version "1.7.1" - resolved "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.7.1.tgz" - integrity sha512-gjTHWGYWsEgy9MsY0Gp6ZJxV24IjDqdpTW7Eh0x+WfJLFsm/TJx1MzL6T0D88mBvkpxotCQ6TwW6N+Kko7lhgQ== +pg-protocol@^1.9.5: + version "1.9.5" + resolved "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.9.5.tgz#e544eff37d6ab79c26281d7c0b59ac9be4862686" + integrity sha512-DYTWtWpfd5FOro3UnAfwvhD8jh59r2ig8bPtc9H8Ds7MscE/9NYruUQWFAOuraRl29jwcT2kyMFQ3MxeaVjUhg== pg-types@^2.1.0: version "2.2.0" - resolved "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz" + resolved "https://registry.yarnpkg.com/pg-types/-/pg-types-2.2.0.tgz#2d0250d636454f7cfa3b6ae0382fdfa8063254a3" integrity sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA== dependencies: pg-int8 "1.0.1" @@ -1745,44 +2234,49 @@ pg-types@^2.1.0: postgres-date "~1.0.4" postgres-interval "^1.1.0" -pg@^8.12.0, pg@>=8.0: - version "8.13.3" - resolved "https://registry.npmjs.org/pg/-/pg-8.13.3.tgz" - integrity sha512-P6tPt9jXbL9HVu/SSRERNYaYG++MjnscnegFh9pPHihfoBSujsrka0hyuymMzeJKFWrcG8wvCKy8rCe8e5nDUQ== +pg@^8.12.0: + version "8.15.6" + resolved "https://registry.yarnpkg.com/pg/-/pg-8.15.6.tgz#2a28e98fb6cab18b886ce58b2c184d712a94880a" + integrity sha512-yvao7YI3GdmmrslNVsZgx9PfntfWrnXwtR+K/DjI0I/sTKif4Z623um+sjVZ1hk5670B+ODjvHDAckKdjmPTsg== dependencies: - pg-connection-string "^2.7.0" - pg-pool "^3.7.1" - pg-protocol "^1.7.1" + pg-connection-string "^2.8.5" + pg-pool "^3.9.6" + pg-protocol "^1.9.5" pg-types "^2.1.0" pgpass "1.x" optionalDependencies: - pg-cloudflare "^1.1.1" + pg-cloudflare "^1.2.5" pgpass@1.x: version "1.0.5" - resolved "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz" + resolved "https://registry.yarnpkg.com/pgpass/-/pgpass-1.0.5.tgz#9b873e4a564bb10fa7a7dbd55312728d422a223d" integrity sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug== dependencies: split2 "^4.1.0" picocolors@^1.0.0, picocolors@^1.1.1: version "1.1.1" - resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== picomatch@^2.3.1: version "2.3.1" - resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== picomatch@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.2.tgz#77c742931e8f3b8820946c76cd0c1f13730d1dab" integrity sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg== -postcss-html@^1.0.0, postcss-html@^1.8.0: +pkce-challenge@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/pkce-challenge/-/pkce-challenge-5.0.0.tgz#c3a405cb49e272094a38e890a2b51da0228c4d97" + integrity sha512-ueGLflrrnvwB3xuo/uGob5pd5FN7l0MsLf0Z87o/UQmRtwjvfylfc9MurIxRAWywCYTgrvpXBcqjV4OfCYGCIQ== + +postcss-html@^1.8.0: version "1.8.0" - resolved "https://registry.npmjs.org/postcss-html/-/postcss-html-1.8.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-html/-/postcss-html-1.8.0.tgz#2ea1e9d6c53f04ea994135219d3bd8a9e380e13b" integrity sha512-5mMeb1TgLWoRKxZ0Xh9RZDfwUUIqRrcxO2uXO+Ezl1N5lqpCiSU5Gk6+1kZediBfBHFtPCdopr2UZ2SgUsKcgQ== dependencies: htmlparser2 "^8.0.0" @@ -1792,22 +2286,22 @@ postcss-html@^1.0.0, postcss-html@^1.8.0: postcss-media-query-parser@^0.2.3: version "0.2.3" - resolved "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz" + resolved "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244" integrity sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig== postcss-resolve-nested-selector@^0.1.1: version "0.1.6" - resolved "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.6.tgz" + resolved "https://registry.yarnpkg.com/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.6.tgz#3d84dec809f34de020372c41b039956966896686" integrity sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw== postcss-safe-parser@^6.0.0: version "6.0.0" - resolved "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz#bb4c29894171a94bc5c996b9a30317ef402adaa1" integrity sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ== -postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.15: +postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.15: version "6.1.2" - resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz#27ecb41fb0e3b6ba7a1ec84fff347f734c7929de" integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg== dependencies: cssesc "^3.0.0" @@ -1815,12 +2309,12 @@ postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.11, postcss-select postcss-value-parser@^4.2.0: version "4.2.0" - resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@^8.3.3, postcss@^8.4.19, postcss@^8.4.48, postcss@^8.5.0, postcss@^8.5.3: +postcss@^8.4.19, postcss@^8.4.48, postcss@^8.5.0, postcss@^8.5.3: version "8.5.3" - resolved "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.3.tgz#1463b6f1c7fb16fe258736cba29a2de35237eafb" integrity sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A== dependencies: nanoid "^3.3.8" @@ -1829,66 +2323,96 @@ postcss@^8.3.3, postcss@^8.4.19, postcss@^8.4.48, postcss@^8.5.0, postcss@^8.5.3 postgres-array@~2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz#48f8fce054fbc69671999329b8834b772652d82e" integrity sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA== postgres-bytea@~1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-1.0.0.tgz#027b533c0aa890e26d172d47cf9ccecc521acd35" integrity sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w== postgres-date@~1.0.4: version "1.0.7" - resolved "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz" + resolved "https://registry.yarnpkg.com/postgres-date/-/postgres-date-1.0.7.tgz#51bc086006005e5061c591cee727f2531bf641a8" integrity sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q== postgres-interval@^1.1.0: version "1.2.0" - resolved "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/postgres-interval/-/postgres-interval-1.2.0.tgz#b460c82cb1587507788819a06aa0fffdb3544695" integrity sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ== dependencies: xtend "^4.0.0" prelude-ls@^1.2.1: version "1.2.1" - resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== prettier-linter-helpers@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== dependencies: fast-diff "^1.1.2" -prettier@^3.5.3, "prettier@>= 3.0.0", prettier@>=3.0.0: +prettier@^3.5.3: version "3.5.3" - resolved "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.5.3.tgz#4fc2ce0d657e7a02e602549f053b239cb7dfe1b5" integrity sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw== +proxy-addr@^2.0.7: + version "2.0.7" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" + integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== + dependencies: + forwarded "0.2.0" + ipaddr.js "1.9.1" + proxy-from-env@^1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== punycode@^2.1.0: version "2.3.1" - resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== +qs@^6.14.0: + version "6.14.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.14.0.tgz#c63fa40680d2c5c941412a0e899c89af60c0a930" + integrity sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w== + dependencies: + side-channel "^1.1.0" + queue-microtask@^1.2.2: version "1.2.3" - resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== quick-lru@^4.0.1: version "4.0.1" - resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz" + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== +range-parser@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + +raw-body@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-3.0.0.tgz#25b3476f07a51600619dae3fe82ddc28a36e5e0f" + integrity sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g== + dependencies: + bytes "3.1.2" + http-errors "2.0.0" + iconv-lite "0.6.3" + unpipe "1.0.0" + read-pkg-up@^7.0.1: version "7.0.1" - resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== dependencies: find-up "^4.1.0" @@ -1897,7 +2421,7 @@ read-pkg-up@^7.0.1: read-pkg@^5.2.0: version "5.2.0" - resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== dependencies: "@types/normalize-package-data" "^2.4.0" @@ -1907,7 +2431,7 @@ read-pkg@^5.2.0: redent@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== dependencies: indent-string "^4.0.0" @@ -1915,22 +2439,22 @@ redent@^3.0.0: require-from-string@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== resolve-from@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== resolve-from@^5.0.0: version "5.0.0" - resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== resolve@^1.10.0: version "1.22.10" - resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.10.tgz#b663e83ffb09bbf2386944736baae803029b8b39" integrity sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w== dependencies: is-core-module "^2.16.0" @@ -1939,95 +2463,189 @@ resolve@^1.10.0: reusify@^1.0.4: version "1.1.0" - resolved "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.1.0.tgz#0fe13b9522e1473f51b558ee796e08f11f9b489f" integrity sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw== rimraf@^3.0.2: version "3.0.2" - resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== dependencies: glob "^7.1.3" rollup-plugin-polyfill-node@^0.12.0: version "0.12.0" - resolved "https://registry.npmjs.org/rollup-plugin-polyfill-node/-/rollup-plugin-polyfill-node-0.12.0.tgz" + resolved "https://registry.yarnpkg.com/rollup-plugin-polyfill-node/-/rollup-plugin-polyfill-node-0.12.0.tgz#33d421ddb7fcb69c234461e508ca6d2db6193f1d" integrity sha512-PWEVfDxLEKt8JX1nZ0NkUAgXpkZMTb85rO/Ru9AQ69wYW8VUCfDgP4CGRXXWYni5wDF0vIeR1UoF3Jmw/Lt3Ug== dependencies: "@rollup/plugin-inject" "^5.0.1" -"rollup@^1.20.0 || ^2.0.0 || ^3.0.0", rollup@^1.20.0||^2.0.0||^3.0.0||^4.0.0, rollup@^3.29.4: +rollup@^3.29.4: version "3.29.5" - resolved "https://registry.npmjs.org/rollup/-/rollup-3.29.5.tgz" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.29.5.tgz#8a2e477a758b520fb78daf04bca4c522c1da8a54" integrity sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w== optionalDependencies: fsevents "~2.3.2" -rollup@^4.30.1: - version "4.34.9" - resolved "https://registry.npmjs.org/rollup/-/rollup-4.34.9.tgz" - integrity sha512-nF5XYqWWp9hx/LrpC8sZvvvmq0TeTjQgaZHYmAgwysT9nh8sWnZhBnM8ZyVbbJFIQBLwHDNoMqsBZBbUo4U8sQ== +rollup@^4.34.9: + version "4.40.2" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.40.2.tgz#778e88b7a197542682b3e318581f7697f55f0619" + integrity sha512-tfUOg6DTP4rhQ3VjOO6B4wyrJnGOX85requAXvqYTHsOgb2TFJdZ3aWpT8W2kPoypSGP7dZUyzxJ9ee4buM5Fg== dependencies: - "@types/estree" "1.0.6" + "@types/estree" "1.0.7" optionalDependencies: - "@rollup/rollup-android-arm-eabi" "4.34.9" - "@rollup/rollup-android-arm64" "4.34.9" - "@rollup/rollup-darwin-arm64" "4.34.9" - "@rollup/rollup-darwin-x64" "4.34.9" - "@rollup/rollup-freebsd-arm64" "4.34.9" - "@rollup/rollup-freebsd-x64" "4.34.9" - "@rollup/rollup-linux-arm-gnueabihf" "4.34.9" - "@rollup/rollup-linux-arm-musleabihf" "4.34.9" - "@rollup/rollup-linux-arm64-gnu" "4.34.9" - "@rollup/rollup-linux-arm64-musl" "4.34.9" - "@rollup/rollup-linux-loongarch64-gnu" "4.34.9" - "@rollup/rollup-linux-powerpc64le-gnu" "4.34.9" - "@rollup/rollup-linux-riscv64-gnu" "4.34.9" - "@rollup/rollup-linux-s390x-gnu" "4.34.9" - "@rollup/rollup-linux-x64-gnu" "4.34.9" - "@rollup/rollup-linux-x64-musl" "4.34.9" - "@rollup/rollup-win32-arm64-msvc" "4.34.9" - "@rollup/rollup-win32-ia32-msvc" "4.34.9" - "@rollup/rollup-win32-x64-msvc" "4.34.9" + "@rollup/rollup-android-arm-eabi" "4.40.2" + "@rollup/rollup-android-arm64" "4.40.2" + "@rollup/rollup-darwin-arm64" "4.40.2" + "@rollup/rollup-darwin-x64" "4.40.2" + "@rollup/rollup-freebsd-arm64" "4.40.2" + "@rollup/rollup-freebsd-x64" "4.40.2" + "@rollup/rollup-linux-arm-gnueabihf" "4.40.2" + "@rollup/rollup-linux-arm-musleabihf" "4.40.2" + "@rollup/rollup-linux-arm64-gnu" "4.40.2" + "@rollup/rollup-linux-arm64-musl" "4.40.2" + "@rollup/rollup-linux-loongarch64-gnu" "4.40.2" + "@rollup/rollup-linux-powerpc64le-gnu" "4.40.2" + "@rollup/rollup-linux-riscv64-gnu" "4.40.2" + "@rollup/rollup-linux-riscv64-musl" "4.40.2" + "@rollup/rollup-linux-s390x-gnu" "4.40.2" + "@rollup/rollup-linux-x64-gnu" "4.40.2" + "@rollup/rollup-linux-x64-musl" "4.40.2" + "@rollup/rollup-win32-arm64-msvc" "4.40.2" + "@rollup/rollup-win32-ia32-msvc" "4.40.2" + "@rollup/rollup-win32-x64-msvc" "4.40.2" fsevents "~2.3.2" +router@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/router/-/router-2.2.0.tgz#019be620b711c87641167cc79b99090f00b146ef" + integrity sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ== + dependencies: + debug "^4.4.0" + depd "^2.0.0" + is-promise "^4.0.0" + parseurl "^1.3.3" + path-to-regexp "^8.0.0" + run-parallel@^1.1.9: version "1.2.0" - resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== dependencies: queue-microtask "^1.2.2" -semver@^7.3.4, semver@^7.3.5, semver@^7.3.6, semver@^7.6.3: - version "7.7.1" - resolved "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz" - integrity sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA== +safe-buffer@5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +"safer-buffer@>= 2.1.2 < 3.0.0": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== "semver@2 || 3 || 4 || 5": version "5.7.2" - resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== +semver@^7.3.4, semver@^7.3.5, semver@^7.3.6, semver@^7.6.3: + version "7.7.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.1.tgz#abd5098d82b18c6c81f6074ff2647fd3e7220c9f" + integrity sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA== + +send@^1.1.0, send@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/send/-/send-1.2.0.tgz#32a7554fb777b831dfa828370f773a3808d37212" + integrity sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw== + dependencies: + debug "^4.3.5" + encodeurl "^2.0.0" + escape-html "^1.0.3" + etag "^1.8.1" + fresh "^2.0.0" + http-errors "^2.0.0" + mime-types "^3.0.1" + ms "^2.1.3" + on-finished "^2.4.1" + range-parser "^1.2.1" + statuses "^2.0.1" + +serve-static@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-2.2.0.tgz#9c02564ee259bdd2251b82d659a2e7e1938d66f9" + integrity sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ== + dependencies: + encodeurl "^2.0.0" + escape-html "^1.0.3" + parseurl "^1.3.3" + send "^1.2.0" + +setprototypeof@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== + shebang-command@^2.0.0: version "2.0.0" - resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== dependencies: shebang-regex "^3.0.0" shebang-regex@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== +side-channel-list@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz#10cb5984263115d3b7a0e336591e290a830af8ad" + integrity sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA== + dependencies: + es-errors "^1.3.0" + object-inspect "^1.13.3" + +side-channel-map@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz#d6bb6b37902c6fef5174e5f533fab4c732a26f42" + integrity sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + get-intrinsic "^1.2.5" + object-inspect "^1.13.3" + +side-channel-weakmap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz#11dda19d5368e40ce9ec2bdc1fb0ecbc0790ecea" + integrity sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + get-intrinsic "^1.2.5" + object-inspect "^1.13.3" + side-channel-map "^1.0.1" + +side-channel@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz#c3fcff9c4da932784873335ec9765fa94ff66bc9" + integrity sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw== + dependencies: + es-errors "^1.3.0" + object-inspect "^1.13.3" + side-channel-list "^1.0.0" + side-channel-map "^1.0.1" + side-channel-weakmap "^1.0.2" + signal-exit@^3.0.7: version "3.0.7" - resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== siwe@^2.1.4: version "2.3.2" - resolved "https://registry.npmjs.org/siwe/-/siwe-2.3.2.tgz" + resolved "https://registry.yarnpkg.com/siwe/-/siwe-2.3.2.tgz#0794ae25f734f3068de0ab093ddd2f7867bc2d67" integrity sha512-aSf+6+Latyttbj5nMu6GF3doMfv2UYj83hhwZgUF20ky6fTS83uVhkQABdIVnEuS8y1bBdk7p6ltb9SmlhTTlA== dependencies: "@spruceid/siwe-parser" "^2.1.2" @@ -2037,12 +2655,12 @@ siwe@^2.1.4: slash@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== slice-ansi@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== dependencies: ansi-styles "^4.0.0" @@ -2051,17 +2669,17 @@ slice-ansi@^4.0.0: sortablejs@^1.15.6: version "1.15.6" - resolved "https://registry.npmjs.org/sortablejs/-/sortablejs-1.15.6.tgz" + resolved "https://registry.yarnpkg.com/sortablejs/-/sortablejs-1.15.6.tgz#ff93699493f5b8ab8d828f933227b4988df1d393" integrity sha512-aNfiuwMEpfBM/CN6LY0ibyhxPfPbyFeBTYJKCvzkJ2GkUpazIt3H+QIPAMHwqQ7tMKaHz1Qj+rJJCqljnf4p3A== source-map-js@^1.0.2, source-map-js@^1.2.0, source-map-js@^1.2.1: version "1.2.1" - resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== spdx-correct@^3.0.0: version "3.2.0" - resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== dependencies: spdx-expression-parse "^3.0.0" @@ -2069,12 +2687,12 @@ spdx-correct@^3.0.0: spdx-exceptions@^2.1.0: version "2.5.0" - resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz#5d607d27fc806f66d7b64a766650fa890f04ed66" integrity sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w== spdx-expression-parse@^3.0.0: version "3.0.1" - resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== dependencies: spdx-exceptions "^2.1.0" @@ -2082,17 +2700,22 @@ spdx-expression-parse@^3.0.0: spdx-license-ids@^3.0.0: version "3.0.21" - resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.21.tgz" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.21.tgz#6d6e980c9df2b6fc905343a3b2d702a6239536c3" integrity sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg== split2@^4.1.0: version "4.2.0" - resolved "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz" + resolved "https://registry.yarnpkg.com/split2/-/split2-4.2.0.tgz#c9c5920904d148bab0b9f67145f245a86aadbfa4" integrity sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg== +statuses@2.0.1, statuses@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== + string-width@^4.2.3: version "4.2.3" - resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== dependencies: emoji-regex "^8.0.0" @@ -2101,60 +2724,55 @@ string-width@^4.2.3: strip-ansi@^6.0.1: version "6.0.1" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== dependencies: ansi-regex "^5.0.1" strip-indent@^3.0.0: version "3.0.0" - resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== dependencies: min-indent "^1.0.0" strip-json-comments@^3.1.1: version "3.1.1" - resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== style-search@^0.1.0: version "0.1.0" - resolved "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz" + resolved "https://registry.yarnpkg.com/style-search/-/style-search-0.1.0.tgz#7958c793e47e32e07d2b5cafe5c0bf8e12e77902" integrity sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg== stylelint-config-html@>=1.0.0: version "1.1.0" - resolved "https://registry.npmjs.org/stylelint-config-html/-/stylelint-config-html-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/stylelint-config-html/-/stylelint-config-html-1.1.0.tgz#999db19aea713b7ff6dde92ada76e4c1bd812b66" integrity sha512-IZv4IVESjKLumUGi+HWeb7skgO6/g4VMuAYrJdlqQFndgbj6WJAXPhaysvBiXefX79upBdQVumgYcdd17gCpjQ== stylelint-config-prettier@^9.0.5: version "9.0.5" - resolved "https://registry.npmjs.org/stylelint-config-prettier/-/stylelint-config-prettier-9.0.5.tgz" + resolved "https://registry.yarnpkg.com/stylelint-config-prettier/-/stylelint-config-prettier-9.0.5.tgz#9f78bbf31c7307ca2df2dd60f42c7014ee9da56e" integrity sha512-U44lELgLZhbAD/xy/vncZ2Pq8sh2TnpiPvo38Ifg9+zeioR+LAkHu0i6YORIOxFafZoVg0xqQwex6e6F25S5XA== stylelint-config-recommended-vue@>=1.1.0: version "1.6.0" - resolved "https://registry.npmjs.org/stylelint-config-recommended-vue/-/stylelint-config-recommended-vue-1.6.0.tgz" + resolved "https://registry.yarnpkg.com/stylelint-config-recommended-vue/-/stylelint-config-recommended-vue-1.6.0.tgz#e5d34d9f11417922a24dbd21438c6c058843fa20" integrity sha512-syk1adIHvbH2T1OiR/spUK4oQy35PZIDw8Zmc7E0+eVK9Z9SK3tdMpGRT/bgGnAPpMt/WaL9K1u0tlF6xM0sMQ== dependencies: semver "^7.3.5" stylelint-config-html ">=1.0.0" stylelint-config-recommended ">=6.0.0" -stylelint-config-recommended@^16.0.0: +stylelint-config-recommended@>=6.0.0, stylelint-config-recommended@^16.0.0: version "16.0.0" - resolved "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-16.0.0.tgz" - integrity sha512-4RSmPjQegF34wNcK1e1O3Uz91HN8P1aFdFzio90wNK9mjgAI19u5vsU868cVZboKzCaa5XbpvtTzAAGQAxpcXA== - -stylelint-config-recommended@>=6.0.0: - version "16.0.0" - resolved "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-16.0.0.tgz" + resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-16.0.0.tgz#0221f19902816fe7d53d9a01eb0be4cc7b4fe80a" integrity sha512-4RSmPjQegF34wNcK1e1O3Uz91HN8P1aFdFzio90wNK9mjgAI19u5vsU868cVZboKzCaa5XbpvtTzAAGQAxpcXA== stylelint-config-standard-vue@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/stylelint-config-standard-vue/-/stylelint-config-standard-vue-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/stylelint-config-standard-vue/-/stylelint-config-standard-vue-1.0.0.tgz#918c77f5e65ee09bd732afa5af229f1d93788208" integrity sha512-wAzU7p6DSlo04pWfCbOcaMq09Nojt0FEsbdxhCBTdC7IguD9ZVl7FP/bvyA0HAHjZGC4JkW7m6WiQaoVMDSuFw== dependencies: stylelint-config-html ">=1.0.0" @@ -2163,14 +2781,14 @@ stylelint-config-standard-vue@^1.0.0: stylelint-config-standard@>=24.0.0: version "38.0.0" - resolved "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-38.0.0.tgz" + resolved "https://registry.yarnpkg.com/stylelint-config-standard/-/stylelint-config-standard-38.0.0.tgz#9d673ec1f35d7569476ee4b0582e7dd5faebf036" integrity sha512-uj3JIX+dpFseqd/DJx8Gy3PcRAJhlEZ2IrlFOc4LUxBX/PNMEQ198x7LCOE2Q5oT9Vw8nyc4CIL78xSqPr6iag== dependencies: stylelint-config-recommended "^16.0.0" -stylelint@^14.16.1, stylelint@^16.16.0, stylelint@^16.18.0, "stylelint@>= 11.x < 15", stylelint@>=14.0.0: +stylelint@^14.16.1: version "14.16.1" - resolved "https://registry.npmjs.org/stylelint/-/stylelint-14.16.1.tgz" + resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-14.16.1.tgz#b911063530619a1bbe44c2b875fd8181ebdc742d" integrity sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A== dependencies: "@csstools/selector-specificity" "^2.0.2" @@ -2214,14 +2832,14 @@ stylelint@^14.16.1, stylelint@^16.16.0, stylelint@^16.18.0, "stylelint@>= 11.x < supports-color@^7.0.0, supports-color@^7.1.0: version "7.2.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== dependencies: has-flag "^4.0.0" supports-hyperlinks@^2.3.0: version "2.3.0" - resolved "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz" + resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624" integrity sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA== dependencies: has-flag "^4.0.0" @@ -2229,25 +2847,25 @@ supports-hyperlinks@^2.3.0: supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== svg-tags@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764" integrity sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA== -synckit@^0.9.1: - version "0.9.2" - resolved "https://registry.npmjs.org/synckit/-/synckit-0.9.2.tgz" - integrity sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw== +synckit@^0.11.0: + version "0.11.4" + resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.11.4.tgz#48972326b59723fc15b8d159803cf8302b545d59" + integrity sha512-Q/XQKRaJiLiFIBNN+mndW7S/RHxvwzuZS6ZwmRzUBqJBv/5QIKCEwkBC8GBf8EQJKYnaFs0wOZbKTXBPj8L9oQ== dependencies: - "@pkgr/core" "^0.1.0" - tslib "^2.6.2" + "@pkgr/core" "^0.2.3" + tslib "^2.8.1" table@^6.8.1: version "6.9.0" - resolved "https://registry.npmjs.org/table/-/table-6.9.0.tgz" + resolved "https://registry.yarnpkg.com/table/-/table-6.9.0.tgz#50040afa6264141c7566b3b81d4d82c47a8668f5" integrity sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A== dependencies: ajv "^8.0.1" @@ -2256,99 +2874,139 @@ table@^6.8.1: string-width "^4.2.3" strip-ansi "^6.0.1" +tinyglobby@^0.2.13: + version "0.2.13" + resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.13.tgz#a0e46515ce6cbcd65331537e57484af5a7b2ff7e" + integrity sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw== + dependencies: + fdir "^6.4.4" + picomatch "^4.0.2" + to-regex-range@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== dependencies: is-number "^7.0.0" +toidentifier@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== + trim-newlines@^3.0.0: version "3.0.1" - resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== -tslib@^2.6.2, tslib@2.7.0: +tslib@2.7.0: version "2.7.0" - resolved "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.7.0.tgz#d9b40c5c40ab59e8738f297df3087bf1a2690c01" integrity sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA== +tslib@^2.8.1: + version "2.8.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f" + integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== + type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" - resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== dependencies: prelude-ls "^1.2.1" type-fest@^0.18.0: version "0.18.1" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== type-fest@^0.20.2: version "0.20.2" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== type-fest@^0.6.0: version "0.6.0" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== type-fest@^0.8.1: version "0.8.1" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== +type-is@^2.0.0, type-is@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-2.0.1.tgz#64f6cf03f92fce4015c2b224793f6bdd4b068c97" + integrity sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw== + dependencies: + content-type "^1.0.5" + media-typer "^1.1.0" + mime-types "^3.0.0" + undici-types@~6.19.2: version "6.19.8" - resolved "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.19.8.tgz#35111c9d1437ab83a7cdc0abae2f26d88eda0a02" integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw== +unpipe@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== + uri-js@^4.2.2, uri-js@^4.4.1: version "4.4.1" - resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== dependencies: punycode "^2.1.0" util-deprecate@^1.0.2: version "1.0.2" - resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== v8-compile-cache@^2.3.0: version "2.4.0" - resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz#cdada8bec61e15865f05d097c5f4fd30e94dc128" integrity sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw== valid-url@^1.0.9: version "1.0.9" - resolved "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz" + resolved "https://registry.yarnpkg.com/valid-url/-/valid-url-1.0.9.tgz#1c14479b40f1397a75782f115e4086447433a200" integrity sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA== validate-npm-package-license@^3.0.1: version "3.0.4" - resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== dependencies: spdx-correct "^3.0.0" spdx-expression-parse "^3.0.0" -"vite@^5.0.0 || ^6.0.0", vite@^6.2.3: - version "6.2.3" - resolved "https://registry.npmjs.org/vite/-/vite-6.2.3.tgz" - integrity sha512-IzwM54g4y9JA/xAeBPNaDXiBF8Jsgl3VBQ2YQ/wOY6fyW3xMdSoltIV3Bo59DErdqdE6RxUfv8W69DvUorE4Eg== +vary@^1, vary@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== + +vite@^6.2.3: + version "6.3.5" + resolved "https://registry.yarnpkg.com/vite/-/vite-6.3.5.tgz#fec73879013c9c0128c8d284504c6d19410d12a3" + integrity sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ== dependencies: esbuild "^0.25.0" + fdir "^6.4.4" + picomatch "^4.0.2" postcss "^8.5.3" - rollup "^4.30.1" + rollup "^4.34.9" + tinyglobby "^0.2.13" optionalDependencies: fsevents "~2.3.3" vue-eslint-parser@^9.4.3: version "9.4.3" - resolved "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.4.3.tgz" + resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.4.3.tgz#9b04b22c71401f1e8bca9be7c3e3416a4bde76a8" integrity sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg== dependencies: debug "^4.3.4" @@ -2360,24 +3018,24 @@ vue-eslint-parser@^9.4.3: semver "^7.3.6" vue-i18n@^11.1.2: - version "11.1.2" - resolved "https://registry.npmjs.org/vue-i18n/-/vue-i18n-11.1.2.tgz" - integrity sha512-MfdkdKGUHN+jkkaMT5Zbl4FpRmN7kfelJIwKoUpJ32ONIxdFhzxZiLTVaAXkAwvH3y9GmWpoiwjDqbPIkPIMFA== + version "11.1.3" + resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-11.1.3.tgz#831f622ef0a73993e6f08d953e5a3bde9bae3484" + integrity sha512-Pcylh9z9S5+CJAqgbRZ3EKxFIBIrtY5YUppU722GIT65+Nukm0TCqiQegZnNLCZkXGthxe0cpqj0AoM51H+6Gw== dependencies: - "@intlify/core-base" "11.1.2" - "@intlify/shared" "11.1.2" + "@intlify/core-base" "11.1.3" + "@intlify/shared" "11.1.3" "@vue/devtools-api" "^6.5.0" vue-router@^4.1.6: - version "4.5.0" - resolved "https://registry.npmjs.org/vue-router/-/vue-router-4.5.0.tgz" - integrity sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w== + version "4.5.1" + resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.5.1.tgz#47bffe2d3a5479d2886a9a244547a853aa0abf69" + integrity sha512-ogAF3P97NPm8fJsE4by9dwSYtDwXIY1nFY9T6DyQnGHd1E2Da94w9JIolpe42LJGIl0DwOHBi8TcRPlPGwbTtw== dependencies: "@vue/devtools-api" "^6.6.4" -vue@^3.0.0, vue@^3.2.0, vue@^3.2.25, vue@^3.2.47, vue@3.5.13: +vue@^3.2.47: version "3.5.13" - resolved "https://registry.npmjs.org/vue/-/vue-3.5.13.tgz" + resolved "https://registry.yarnpkg.com/vue/-/vue-3.5.13.tgz#9f760a1a982b09c0c04a867903fc339c9f29ec0a" integrity sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ== dependencies: "@vue/compiler-dom" "3.5.13" @@ -2386,33 +3044,40 @@ vue@^3.0.0, vue@^3.2.0, vue@^3.2.25, vue@^3.2.47, vue@3.5.13: "@vue/server-renderer" "3.5.13" "@vue/shared" "3.5.13" +vuex@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/vuex/-/vuex-4.1.0.tgz#aa1b3ea5c7385812b074c86faeeec2217872e36c" + integrity sha512-hmV6UerDrPcgbSy9ORAtNXDr9M4wlNP4pEFKye4ujJF8oqgFFuxDCdOLS3eNoRTtq5O3hoBDh9Doj1bQMYHRbQ== + dependencies: + "@vue/devtools-api" "^6.0.0-beta.11" + which@^1.3.1: version "1.3.1" - resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== dependencies: isexe "^2.0.0" which@^2.0.1: version "2.0.2" - resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== dependencies: isexe "^2.0.0" word-wrap@^1.2.5: version "1.2.5" - resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== wrappy@1: version "1.0.2" - resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== write-file-atomic@^4.0.2: version "4.0.2" - resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== dependencies: imurmurhash "^0.1.4" @@ -2420,40 +3085,45 @@ write-file-atomic@^4.0.2: ws@8.17.1: version "8.17.1" - resolved "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.17.1.tgz#9293da530bb548febc95371d90f9c878727d919b" integrity sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ== xml-name-validator@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== xtend@^4.0.0: version "4.0.2" - resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== yallist@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== yaml@^1.10.0: version "1.10.2" - resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== -yaml@^2.4.2: - version "2.7.1" - resolved "https://registry.npmjs.org/yaml/-/yaml-2.7.1.tgz" - integrity sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ== - yargs-parser@^20.2.3: version "20.2.9" - resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== yocto-queue@^0.1.0: version "0.1.0" - resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +zod-to-json-schema@^3.24.1: + version "3.24.5" + resolved "https://registry.yarnpkg.com/zod-to-json-schema/-/zod-to-json-schema-3.24.5.tgz#d1095440b147fb7c2093812a53c54df8d5df50a3" + integrity sha512-/AuWwMP+YqiPbsJx5D6TfgRTc4kTLjsh5SOcd4bLsfUg2RcEXrFMJl1DGgdHy2aCfsIA/cr/1JM0xcB2GZji8g== + +zod@^3.23.8, zod@^3.24.2: + version "3.24.4" + resolved "https://registry.yarnpkg.com/zod/-/zod-3.24.4.tgz#e2e2cca5faaa012d76e527d0d36622e0a90c315f" + integrity sha512-OdqJE9UDRPwWsrHjLN2F8bPxvwJBK22EHLWtanu0LSYr5YqzsaaW3RMgmjwr8Rypg5k+meEJdSPXJZXE/yqOMg==